diff --git a/stage0/src/Lean/Elab/Attributes.lean b/stage0/src/Lean/Elab/Attributes.lean index aacb24a3b0..b86236048b 100644 --- a/stage0/src/Lean/Elab/Attributes.lean +++ b/stage0/src/Lean/Elab/Attributes.lean @@ -26,14 +26,17 @@ instance : Inhabited Attribute where /- ``` - attrKind := optional («scoped» <|> «local») + attrKind := parser! optional («scoped» <|> «local») ``` -/ def toAttributeKind (attrKindStx : Syntax) : AttributeKind := - if attrKindStx.isNone then AttributeKind.global - else if attrKindStx[0].getKind == `Lean.Parser.Term.scoped then AttributeKind.scoped + if attrKindStx[0].isNone then AttributeKind.global + else if attrKindStx[0][0].getKind == `Lean.Parser.Term.scoped then AttributeKind.scoped else AttributeKind.local +def mkAttrKindGlobal : Syntax := + Syntax.node `Lean.Parser.Term.attrKind #[mkNullNode] + def elabAttr {m} [Monad m] [MonadEnv m] [MonadExceptOf Exception m] [MonadRef m] [AddErrorMessageContext m] (stx : Syntax) : m Attribute := do -- attrKind >> rawIdent >> many attrArg let kind := toAttributeKind stx[0] diff --git a/stage0/src/Lean/Elab/Syntax.lean b/stage0/src/Lean/Elab/Syntax.lean index 75fa57a5de..2fcd5c7efc 100644 --- a/stage0/src/Lean/Elab/Syntax.lean +++ b/stage0/src/Lean/Elab/Syntax.lean @@ -374,7 +374,7 @@ def elabNoKindMacroRulesAux (alts : Array Syntax) : CommandElabM Syntax := do -- TODO: cleanup after we have support for optional syntax at `match_syntax` @[builtinMacro Lean.Parser.Command.mixfix] def expandMixfix : Macro := fun stx => - withAttrKind stx fun stx => + withAttrKindGlobal stx fun stx => match_syntax stx with | `(infix:$prec $op => $f) => `(infixl:$prec $op => $f) | `(infixr:$prec $op => $f) => `(notation:$prec lhs $op:strLit rhs:$prec => $f lhs rhs) @@ -388,10 +388,10 @@ def elabNoKindMacroRulesAux (alts : Array Syntax) : CommandElabM Syntax := do | `(postfix:$prec [$prio] $op => $f) => `(notation:$prec [$prio] arg $op:strLit => $f arg) | _ => Macro.throwUnsupported where - -- Remove `attrKind`, apply `f`, and add `attrKind` to result - withAttrKind stx f := do + -- set "global" `attrKind`, apply `f`, and restore `attrKind` to result + withAttrKindGlobal stx f := do let attrKind := stx[0] - let stx := stx.setArg 0 mkNullNode + let stx := stx.setArg 0 mkAttrKindGlobal let stx ← f stx return stx.setArg 0 attrKind @@ -480,7 +480,7 @@ private def expandNotationAux (ref : Syntax) @[builtinCommandElab «notation»] def expandNotation : CommandElab := adaptExpander fun stx => do let attrKind := toAttributeKind stx[0] - let stx := stx.setArg 0 mkNullNode + let stx := stx.setArg 0 mkAttrKindGlobal let currNamespace ← getCurrNamespace match_syntax stx with | `(notation:$prec $items* => $rhs) => expandNotationAux stx currNamespace attrKind prec 0 items rhs diff --git a/stage0/src/Lean/Parser/Term.lean b/stage0/src/Lean/Parser/Term.lean index 9bd1000e52..ee87b969a0 100644 --- a/stage0/src/Lean/Parser/Term.lean +++ b/stage0/src/Lean/Parser/Term.lean @@ -154,7 +154,7 @@ def attrArg : Parser := ident <|> strLit <|> numLit -- use `rawIdent` because of attribute names such as `instance` def «scoped» := parser! "scoped " def «local» := parser! "local " -def attrKind := (checkOutsideQuot >> optional («scoped» <|> «local»)) <|> (checkInsideQuot >> parser! optional («scoped» <|> «local»)) +def attrKind := parser! optional («scoped» <|> «local») def attrInstance := ppGroup $ parser! attrKind >> rawIdent >> many (ppSpace >> attrArg) def attributes := parser! "@[" >> sepBy1 attrInstance ", " >> "]" @@ -229,6 +229,7 @@ builtin_initialize registerParserAlias! "syntheticHole" Term.syntheticHole registerParserAlias! "matchDiscr" Term.matchDiscr registerParserAlias! "bracketedBinder" Term.bracketedBinder + registerParserAlias! "attrKind" Term.attrKind end Parser end Lean diff --git a/stage0/stdlib/Lean/Elab/Attributes.c b/stage0/stdlib/Lean/Elab/Attributes.c index bc113a0f8e..42791052cd 100644 --- a/stage0/stdlib/Lean/Elab/Attributes.c +++ b/stage0/stdlib/Lean/Elab/Attributes.c @@ -48,6 +48,7 @@ lean_object* l_Lean_Elab_elabAttr(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_elabAttrs___spec__1(lean_object*); size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Elab_elabAttr___rarg___closed__2; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l_Lean_Elab_instInhabitedAttribute___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_elabAttrs___spec__1___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr___rarg___closed__1; @@ -71,17 +72,23 @@ lean_object* l_Lean_Elab_instToFormatAttribute___closed__2; lean_object* l_Lean_Elab_instToFormatAttribute___closed__1; lean_object* l_Lean_Elab_elabAttr___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_mkAttrKindGlobal___closed__1; uint8_t l_Lean_Syntax_isNone(lean_object*); +lean_object* l_Lean_Elab_mkAttrKindGlobal___closed__2; lean_object* l_Lean_Elab_instToFormatAttribute___closed__3; lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_toResult___spec__1(lean_object*); +extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_Lean_Elab_instToFormatAttribute_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__1; lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_mkAttrKindGlobal; lean_object* lean_string_length(lean_object*); lean_object* l_Lean_Elab_toAttributeKind___boxed(lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__16; +lean_object* l_Lean_Elab_mkAttrKindGlobal___closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +extern lean_object* l_Lean_mkOptionalNode___closed__2; uint8_t l_Lean_Elab_toAttributeKind(lean_object*); lean_object* l_Lean_Elab_instToFormatAttribute_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__2; @@ -89,6 +96,7 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_elabAttrs___spec__1___rarg( lean_object* l_Lean_Elab_elabAttr___rarg___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); +lean_object* l_Lean_Elab_mkAttrKindGlobal___closed__4; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Array_findSomeM_x3f___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabDeclAttrs___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -332,37 +340,40 @@ return x_1; uint8_t l_Lean_Elab_toAttributeKind(lean_object* x_1) { _start: { -uint8_t x_2; -x_2 = l_Lean_Syntax_isNone(x_1); -if (x_2 == 0) +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Syntax_getArg(x_1, x_2); +x_4 = l_Lean_Syntax_isNone(x_3); +if (x_4 == 0) { -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Lean_Syntax_getArg(x_1, x_3); -x_5 = l_Lean_Syntax_getKind(x_4); -x_6 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__16; -x_7 = lean_name_eq(x_5, x_6); -lean_dec(x_5); -if (x_7 == 0) -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -else +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = l_Lean_Syntax_getArg(x_3, x_2); +lean_dec(x_3); +x_6 = l_Lean_Syntax_getKind(x_5); +x_7 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__16; +x_8 = lean_name_eq(x_6, x_7); +lean_dec(x_6); +if (x_8 == 0) { uint8_t x_9; -x_9 = 2; +x_9 = 1; return x_9; } -} else { uint8_t x_10; -x_10 = 0; +x_10 = 2; return x_10; } } +else +{ +uint8_t x_11; +lean_dec(x_3); +x_11 = 0; +return x_11; +} +} } lean_object* l_Lean_Elab_toAttributeKind___boxed(lean_object* x_1) { _start: @@ -374,6 +385,54 @@ x_3 = lean_box(x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_mkAttrKindGlobal___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("attrKind"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_mkAttrKindGlobal___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Elab_mkAttrKindGlobal___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_mkAttrKindGlobal___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkOptionalNode___closed__2; +x_2 = l_Lean_mkOptionalNode___closed__1; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_mkAttrKindGlobal___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Lean_Elab_mkAttrKindGlobal___closed__3; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_mkAttrKindGlobal() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__4; +return x_1; +} +} lean_object* l_Lean_Elab_elabAttr_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -990,6 +1049,16 @@ l_Lean_Elab_instInhabitedAttribute___closed__1 = _init_l_Lean_Elab_instInhabited lean_mark_persistent(l_Lean_Elab_instInhabitedAttribute___closed__1); l_Lean_Elab_instInhabitedAttribute = _init_l_Lean_Elab_instInhabitedAttribute(); lean_mark_persistent(l_Lean_Elab_instInhabitedAttribute); +l_Lean_Elab_mkAttrKindGlobal___closed__1 = _init_l_Lean_Elab_mkAttrKindGlobal___closed__1(); +lean_mark_persistent(l_Lean_Elab_mkAttrKindGlobal___closed__1); +l_Lean_Elab_mkAttrKindGlobal___closed__2 = _init_l_Lean_Elab_mkAttrKindGlobal___closed__2(); +lean_mark_persistent(l_Lean_Elab_mkAttrKindGlobal___closed__2); +l_Lean_Elab_mkAttrKindGlobal___closed__3 = _init_l_Lean_Elab_mkAttrKindGlobal___closed__3(); +lean_mark_persistent(l_Lean_Elab_mkAttrKindGlobal___closed__3); +l_Lean_Elab_mkAttrKindGlobal___closed__4 = _init_l_Lean_Elab_mkAttrKindGlobal___closed__4(); +lean_mark_persistent(l_Lean_Elab_mkAttrKindGlobal___closed__4); +l_Lean_Elab_mkAttrKindGlobal = _init_l_Lean_Elab_mkAttrKindGlobal(); +lean_mark_persistent(l_Lean_Elab_mkAttrKindGlobal); l_Lean_Elab_elabAttr___rarg___lambda__3___closed__1 = _init_l_Lean_Elab_elabAttr___rarg___lambda__3___closed__1(); lean_mark_persistent(l_Lean_Elab_elabAttr___rarg___lambda__3___closed__1); l_Lean_Elab_elabAttr___rarg___lambda__3___closed__2 = _init_l_Lean_Elab_elabAttr___rarg___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index dc8b3e4ba5..5b6c920adc 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -26,6 +26,7 @@ size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Elab_expandOptDeclSig(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_expandInitialize___closed__3; lean_object* l_Lean_Elab_Command_expandMutualElement_match__2(lean_object*); +lean_object* l_Lean_Elab_Command_expandInitCmd___closed__24; extern lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__3___closed__2; lean_object* l___regBuiltin_Lean_Elab_Command_expandMutualPreamble___closed__1; lean_object* l_Lean_Elab_Command_expandMutualNamespace_match__4(lean_object*); @@ -100,6 +101,7 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_elabMutualInductive___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMutualNamespace_match__3(lean_object*); +lean_object* l_Lean_Elab_Command_expandInitCmd___closed__22; lean_object* l_List_map___at_Lean_resolveGlobalConst___spec__2(lean_object*); lean_object* l_Lean_Elab_Term_applyAttributesAt(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; @@ -229,6 +231,7 @@ lean_object* l_Lean_Elab_Command_expandDeclNamespace_x3f_match__3(lean_object*); lean_object* l_Lean_Elab_Command_elabAxiom___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabAxiom_match__2(lean_object*); lean_object* l_Lean_Elab_expandDeclIdCore(lean_object*); +lean_object* l_Lean_Elab_Command_expandInitCmd___closed__23; lean_object* l_Lean_Elab_Command_elabAttr___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_isMutualDef(lean_object*); lean_object* l_Lean_Elab_Command_expandMutualNamespace_match__4___rarg(lean_object*, lean_object*); @@ -307,6 +310,7 @@ lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_isMutualDef_ lean_object* l_Lean_Elab_Command_expandInitCmd___closed__15; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Command_expandInitCmd___closed__18; +extern lean_object* l_Lean_Elab_mkAttrKindGlobal___closed__2; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; lean_object* l_Lean_Elab_Modifiers_addAttribute(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -346,6 +350,7 @@ lean_object* l_Lean_Elab_Command_expandDeclNamespace_x3f___closed__5; lean_object* l___regBuiltin_Lean_Elab_Command_expandBuiltinInitialize___closed__3; lean_object* l_Lean_Elab_Command_elabAxiom___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandInitCmd___closed__25; lean_object* l_Lean_Meta_mkForallUsedOnlyImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabDeclaration___closed__5; @@ -7451,9 +7456,9 @@ static lean_object* _init_l_Lean_Elab_Command_expandInitCmd___closed__18() { _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_Command_isDefLike___closed__5; -x_3 = lean_alloc_ctor(2, 2, 0); +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; @@ -7472,21 +7477,65 @@ return x_3; static lean_object* _init_l_Lean_Elab_Command_expandInitCmd___closed__20() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("declSig"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Lean_Elab_Command_isDefLike___closed__5; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_expandInitCmd___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; +x_1 = l_Array_empty___closed__1; x_2 = l_Lean_Elab_Command_expandInitCmd___closed__20; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandInitCmd___closed__22() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("declSig"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandInitCmd___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; +x_2 = l_Lean_Elab_Command_expandInitCmd___closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Command_expandInitCmd___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandInitCmd___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_expandInitCmd___closed__24; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} lean_object* l_Lean_Elab_Command_expandInitCmd(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -7498,25 +7547,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_194; -x_194 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_521____closed__2; -x_10 = x_194; -goto block_193; +lean_object* x_196; +x_196 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_521____closed__2; +x_10 = x_196; +goto block_195; } else { -lean_object* x_195; -x_195 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_538____closed__2; -x_10 = x_195; -goto block_193; +lean_object* x_197; +x_197 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_538____closed__2; +x_10 = x_197; +goto block_195; } -block_193: +block_195: { 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_110; +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; 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); @@ -7614,209 +7663,211 @@ 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_50, 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_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -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_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_80 = lean_array_push(x_79, x_78); -x_81 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_82 = lean_array_push(x_80, x_81); -x_83 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -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_72 = l_Lean_Elab_Command_expandInitCmd___closed__19; +x_73 = lean_array_push(x_72, x_11); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_39); +lean_ctor_set(x_74, 1, x_25); +x_75 = lean_array_push(x_73, x_74); +x_76 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_75); +x_78 = lean_array_push(x_24, x_77); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_39); +lean_ctor_set(x_79, 1, x_78); +x_80 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_81 = lean_array_push(x_80, x_79); +x_82 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_83 = lean_array_push(x_81, x_82); +x_84 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +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_24, x_85); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_39); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_50, x_87); x_89 = lean_array_push(x_88, x_26); x_90 = lean_array_push(x_89, x_26); x_91 = lean_array_push(x_90, x_26); -x_92 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -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__19; -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__21; -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__6; -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; +x_92 = lean_array_push(x_91, x_26); +x_93 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_92); +x_95 = lean_array_push(x_24, x_94); +x_96 = l_Lean_Elab_Command_expandInitCmd___closed__21; +x_97 = lean_array_push(x_96, x_13); +x_98 = lean_array_push(x_44, x_15); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_46); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_array_push(x_50, x_99); +x_101 = l_Lean_Elab_Command_expandInitCmd___closed__23; +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_100); +x_103 = lean_array_push(x_97, x_102); +x_104 = lean_array_push(x_103, x_26); +x_105 = l_Lean_Elab_Command_isDefLike___closed__6; +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_105); +lean_ctor_set(x_106, 1, x_104); +x_107 = lean_array_push(x_95, x_106); +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_69); +lean_ctor_set(x_108, 1, x_107); +x_109 = lean_array_push(x_71, x_108); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_39); +lean_ctor_set(x_110, 1, x_109); +x_111 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_111, 0, x_110); +lean_ctor_set(x_111, 1, x_4); +return x_111; } else { -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_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_dec(x_6); -x_111 = lean_ctor_get(x_3, 2); -lean_inc(x_111); -x_112 = lean_ctor_get(x_3, 1); +x_112 = lean_ctor_get(x_3, 2); lean_inc(x_112); +x_113 = lean_ctor_get(x_3, 1); +lean_inc(x_113); lean_dec(x_3); -x_113 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_114 = lean_array_push(x_113, x_11); -x_115 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_116 = lean_array_push(x_114, x_115); -x_117 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_116); -x_119 = l_Array_empty___closed__1; -x_120 = lean_array_push(x_119, x_118); -x_121 = l_Lean_nullKind___closed__2; -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_120); -x_123 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_124 = lean_array_push(x_123, x_122); -x_125 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_126 = lean_array_push(x_124, x_125); -x_127 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_126); -x_129 = lean_array_push(x_119, x_128); -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_121); -lean_ctor_set(x_130, 1, x_129); -x_131 = lean_array_push(x_113, x_130); -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_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -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_119, x_137); -x_139 = l_Lean_Elab_Command_expandInitCmd___closed__11; -lean_inc(x_111); +x_114 = l_Lean_Elab_Command_expandInitCmd___closed__25; +x_115 = lean_array_push(x_114, x_11); +x_116 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_117 = lean_array_push(x_115, x_116); +x_118 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_117); +x_120 = l_Array_empty___closed__1; +x_121 = lean_array_push(x_120, x_119); +x_122 = l_Lean_nullKind___closed__2; +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_122); +lean_ctor_set(x_123, 1, x_121); +x_124 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_125 = lean_array_push(x_124, x_123); +x_126 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_127 = lean_array_push(x_125, x_126); +x_128 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_127); +x_130 = lean_array_push(x_120, x_129); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_122); +lean_ctor_set(x_131, 1, x_130); +x_132 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_133 = lean_array_push(x_132, x_131); +x_134 = lean_array_push(x_133, x_116); +x_135 = lean_array_push(x_134, x_116); +x_136 = lean_array_push(x_135, x_116); +x_137 = lean_array_push(x_136, x_116); +x_138 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_120, x_139); +x_141 = l_Lean_Elab_Command_expandInitCmd___closed__11; 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__10; -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_119, x_144); -x_146 = lean_array_push(x_145, x_115); -x_147 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -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_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_150 = lean_array_push(x_149, x_148); -x_151 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__5; -lean_inc(x_111); +lean_inc(x_113); +x_142 = l_Lean_addMacroScope(x_113, x_141, x_112); +x_143 = lean_box(0); +x_144 = l_Lean_instInhabitedSourceInfo___closed__1; +x_145 = l_Lean_Elab_Command_expandInitCmd___closed__10; +x_146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_146, 0, x_144); +lean_ctor_set(x_146, 1, x_145); +lean_ctor_set(x_146, 2, x_142); +lean_ctor_set(x_146, 3, x_143); +x_147 = lean_array_push(x_120, x_146); +x_148 = lean_array_push(x_147, x_116); +x_149 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +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 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_152 = lean_array_push(x_151, x_150); +x_153 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__5; lean_inc(x_112); -x_152 = l_Lean_addMacroScope(x_112, x_151, x_111); -x_153 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__11; -x_154 = l_Lean_Elab_Command_expandInitCmd___closed__13; -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_119, x_155); -x_157 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__17; -x_158 = l_Lean_addMacroScope(x_112, x_157, x_111); -x_159 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__16; -x_160 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__19; -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_119, x_161); -x_163 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_163, 0, x_121); -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_11836____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_119, x_170); +lean_inc(x_113); +x_154 = l_Lean_addMacroScope(x_113, x_153, x_112); +x_155 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__11; +x_156 = l_Lean_Elab_Command_expandInitCmd___closed__13; +x_157 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_157, 0, x_144); +lean_ctor_set(x_157, 1, x_155); +lean_ctor_set(x_157, 2, x_154); +lean_ctor_set(x_157, 3, x_156); +x_158 = lean_array_push(x_120, x_157); +x_159 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__17; +x_160 = l_Lean_addMacroScope(x_113, x_159, x_112); +x_161 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__16; +x_162 = l_myMacro____x40_Init_System_IO___hyg_2534____closed__19; +x_163 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_163, 0, x_144); +lean_ctor_set(x_163, 1, x_161); +lean_ctor_set(x_163, 2, x_160); +lean_ctor_set(x_163, 3, x_162); +x_164 = lean_array_push(x_120, x_163); +x_165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_165, 0, x_122); +lean_ctor_set(x_165, 1, x_164); +x_166 = lean_array_push(x_158, x_165); +x_167 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_168 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_168, 0, x_167); +lean_ctor_set(x_168, 1, x_166); +x_169 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_170 = lean_array_push(x_169, x_168); +x_171 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_121); -lean_ctor_set(x_172, 1, x_171); -x_173 = lean_array_push(x_113, x_172); -x_174 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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__17; -x_178 = lean_array_push(x_177, x_8); -x_179 = l_Lean_Elab_Command_expandInitCmd___closed__15; -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_15292____closed__5; -x_182 = lean_array_push(x_181, x_180); -x_183 = lean_array_push(x_182, x_115); -x_184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -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_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -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; +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_170); +x_173 = lean_array_push(x_120, x_172); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_122); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_array_push(x_132, x_174); +x_176 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_176); +lean_ctor_set(x_177, 1, x_175); +x_178 = lean_array_push(x_152, x_177); +x_179 = l_Lean_Elab_Command_expandInitCmd___closed__17; +x_180 = lean_array_push(x_179, x_8); +x_181 = l_Lean_Elab_Command_expandInitCmd___closed__15; +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_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_184 = lean_array_push(x_183, x_182); +x_185 = lean_array_push(x_184, x_116); +x_186 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_185); +x_188 = lean_array_push(x_178, x_187); +x_189 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_188); +x_191 = lean_array_push(x_140, x_190); +x_192 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +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_alloc_ctor(0, 2, 0); +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_4); +return x_194; } } } @@ -8123,6 +8174,14 @@ l_Lean_Elab_Command_expandInitCmd___closed__20 = _init_l_Lean_Elab_Command_expan lean_mark_persistent(l_Lean_Elab_Command_expandInitCmd___closed__20); l_Lean_Elab_Command_expandInitCmd___closed__21 = _init_l_Lean_Elab_Command_expandInitCmd___closed__21(); lean_mark_persistent(l_Lean_Elab_Command_expandInitCmd___closed__21); +l_Lean_Elab_Command_expandInitCmd___closed__22 = _init_l_Lean_Elab_Command_expandInitCmd___closed__22(); +lean_mark_persistent(l_Lean_Elab_Command_expandInitCmd___closed__22); +l_Lean_Elab_Command_expandInitCmd___closed__23 = _init_l_Lean_Elab_Command_expandInitCmd___closed__23(); +lean_mark_persistent(l_Lean_Elab_Command_expandInitCmd___closed__23); +l_Lean_Elab_Command_expandInitCmd___closed__24 = _init_l_Lean_Elab_Command_expandInitCmd___closed__24(); +lean_mark_persistent(l_Lean_Elab_Command_expandInitCmd___closed__24); +l_Lean_Elab_Command_expandInitCmd___closed__25 = _init_l_Lean_Elab_Command_expandInitCmd___closed__25(); +lean_mark_persistent(l_Lean_Elab_Command_expandInitCmd___closed__25); l___regBuiltin_Lean_Elab_Command_expandInitialize___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_expandInitialize___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_expandInitialize___closed__1); l___regBuiltin_Lean_Elab_Command_expandInitialize___closed__2 = _init_l___regBuiltin_Lean_Elab_Command_expandInitialize___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index f2494acab6..2081dded34 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -160,6 +160,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacro___boxed__const__1; +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634____closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__3; extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; @@ -177,6 +178,7 @@ uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__35; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11167____closed__3; +lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__29; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22; extern lean_object* l_instReprBool___closed__1; lean_object* l_Lean_Elab_Command_expandElab___closed__4; @@ -250,7 +252,6 @@ lean_object* l_Lean_Elab_Command_expandMacro___closed__1; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__29; lean_object* l_Lean_Elab_Command_expandElab___closed__17; lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14160____closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__3; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; @@ -288,11 +289,11 @@ lean_object* lean_string_utf8_next(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___closed__1; lean_object* l_Lean_Elab_Command_expandElab___closed__3; -lean_object* l_Lean_Elab_Command_expandMixfix_withAttrKind(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_mkNameFromParserSyntax_visit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptPrecedence___boxed(lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__15; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__21; +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39; lean_object* l___regBuiltin_Lean_Elab_Command_elabElab___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__13; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; @@ -305,6 +306,7 @@ lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacroRulesAux___spec__3___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; lean_object* l___regBuiltin_Lean_Elab_Command_elabElab___closed__1; +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__16; lean_object* l_Lean_Elab_Command_elabMacro___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -339,6 +341,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote___lambd lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__24; lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntaxAbbrev(lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__33; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_Command_expandElab___closed__33; @@ -351,6 +354,7 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__22; lean_object* l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___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*); extern lean_object* l_stx___x3c_x7c_x3e_____closed__3; +lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser___boxed(lean_object*); extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__22; @@ -391,7 +395,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l_Lean_Elab_Term_toParserDescrAux_match__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_String_capitalize(lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14160_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634_(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__4; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__9; @@ -487,6 +491,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote_match__ lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__16; uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_filterAux___at_Lean_resolveGlobalConst___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withExpectedType___closed__2; @@ -582,6 +587,7 @@ lean_object* l_Lean_Elab_Term_elabBinders___rarg___boxed(lean_object*, lean_obje lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__4(lean_object*); extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; +lean_object* l_Lean_Elab_Command_expandMixfix_withAttrKindGlobal(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacro(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__47; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(lean_object*); @@ -615,6 +621,7 @@ extern lean_object* l_Lean_Syntax_mkApp___closed__1; lean_object* l_Lean_Elab_Command_elabElab(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__1; lean_object* l_Lean_Elab_Command_elabElab___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); @@ -717,6 +724,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__4(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8; lean_object* l_Lean_Elab_Command_expandNotationItemIntoPattern___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__35; @@ -729,6 +737,7 @@ lean_object* l_Lean_Elab_Command_elabSyntax_match__3(lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__51; +extern lean_object* l_Lean_Elab_mkAttrKindGlobal___closed__2; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__8; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -737,6 +746,7 @@ extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28; lean_object* l_Lean_Macro_expandMacro_x3fImp(lean_object*, lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -753,6 +763,7 @@ lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___sp lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote___boxed(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__30; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__18; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14; @@ -763,6 +774,7 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__40; lean_object* l_Lean_Elab_Command_expandElab(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__14; lean_object* l_Lean_Elab_Command_expandElab___closed__40; +extern lean_object* l_Lean_Elab_mkAttrKindGlobal; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__4(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__27; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__45; @@ -9671,19 +9683,41 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5() { +_start: +{ lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3664____closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3664____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9691,7 +9725,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7() { _start: { lean_object* x_1; @@ -9699,22 +9733,22 @@ x_1 = lean_mk_string("Lean.ParserDescr"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9722,7 +9756,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9734,19 +9768,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12() { _start: { lean_object* x_1; @@ -9754,22 +9788,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.node"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9777,7 +9811,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9787,31 +9821,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -9820,18 +9854,18 @@ x_2 = l_Nat_repr(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_numLitKind; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; x_3 = l_Lean_instInhabitedSourceInfo___closed__1; x_4 = l_Lean_Syntax_mkLit(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20() { _start: { lean_object* x_1; @@ -9839,22 +9873,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.binary"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9862,7 +9896,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9874,19 +9908,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25() { _start: { lean_object* x_1; @@ -9894,22 +9928,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.symbol"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9917,7 +9951,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9929,19 +9963,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30() { _start: { lean_object* x_1; @@ -9949,22 +9983,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.cat"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9972,7 +10006,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9984,19 +10018,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__32() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35() { _start: { lean_object* x_1; @@ -10004,35 +10038,13 @@ x_1 = lean_mk_string("\")\""); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33; -x_3 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_strLitKind___closed__2; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; @@ -10052,7 +10064,7 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_nullKind___closed__2; +x_1 = l_Lean_strLitKind___closed__2; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__37; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -10060,10 +10072,32 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} lean_object* l___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_171; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; x_5 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix(x_1); x_6 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__1; x_7 = lean_string_append(x_6, x_5); @@ -10090,13 +10124,13 @@ lean_inc(x_16); x_19 = l_Lean_addMacroScope(x_16, x_18, x_13); x_20 = lean_box(0); x_21 = l_Lean_instInhabitedSourceInfo___closed__1; -x_22 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_22 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); lean_ctor_set(x_23, 2, x_19); lean_ctor_set(x_23, 3, x_20); -x_24 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_24 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; x_25 = lean_array_push(x_24, x_23); x_26 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_27 = lean_array_push(x_25, x_26); @@ -10122,225 +10156,226 @@ x_40 = lean_array_push(x_30, x_39); x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_32); lean_ctor_set(x_41, 1, x_40); -x_42 = lean_array_push(x_24, x_41); -x_43 = lean_array_push(x_42, x_26); +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_43 = lean_array_push(x_42, x_41); x_44 = lean_array_push(x_43, x_26); x_45 = lean_array_push(x_44, x_26); x_46 = lean_array_push(x_45, x_26); -x_47 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_48 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_46); -x_49 = lean_array_push(x_30, x_48); +x_47 = lean_array_push(x_46, x_26); +x_48 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_30, x_49); lean_inc(x_11); -x_50 = lean_mk_syntax_ident(x_11); -x_51 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_52 = lean_array_push(x_51, x_50); -x_53 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; +x_51 = lean_mk_syntax_ident(x_11); +x_52 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_53 = lean_array_push(x_52, x_51); +x_54 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; lean_inc(x_13); lean_inc(x_16); -x_54 = l_Lean_addMacroScope(x_16, x_53, x_13); -x_55 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; +x_55 = l_Lean_addMacroScope(x_16, x_54, x_13); x_56 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; -x_57 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_57, 0, x_21); -lean_ctor_set(x_57, 1, x_55); -lean_ctor_set(x_57, 2, x_54); -lean_ctor_set(x_57, 3, x_56); -x_58 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_59 = lean_array_push(x_58, x_57); -x_60 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_array_push(x_30, x_61); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_32); -lean_ctor_set(x_63, 1, x_62); -x_64 = lean_array_push(x_24, x_63); -x_65 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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 = lean_array_push(x_52, x_66); -x_68 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13; +x_57 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11; +x_58 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_58, 0, x_21); +lean_ctor_set(x_58, 1, x_56); +lean_ctor_set(x_58, 2, x_55); +lean_ctor_set(x_58, 3, x_57); +x_59 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_60 = lean_array_push(x_59, x_58); +x_61 = l_Lean_expandExplicitBindersAux_loop___closed__8; +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_30, x_62); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_32); +lean_ctor_set(x_64, 1, x_63); +x_65 = lean_array_push(x_42, x_64); +x_66 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_65); +x_68 = lean_array_push(x_53, x_67); +x_69 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; lean_inc(x_13); lean_inc(x_16); -x_69 = l_Lean_addMacroScope(x_16, x_68, x_13); -x_70 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_71 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; -x_72 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_72, 0, x_21); -lean_ctor_set(x_72, 1, x_70); -lean_ctor_set(x_72, 2, x_69); -lean_ctor_set(x_72, 3, x_71); -x_73 = lean_array_push(x_30, x_72); -x_74 = l___private_Init_Meta_0__Lean_quoteName(x_11); -x_75 = lean_array_push(x_30, x_74); -x_76 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; -x_77 = lean_array_push(x_75, x_76); -x_78 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__7; +x_70 = l_Lean_addMacroScope(x_16, x_69, x_13); +x_71 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14; +x_72 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_73 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_73, 0, x_21); +lean_ctor_set(x_73, 1, x_71); +lean_ctor_set(x_73, 2, x_70); +lean_ctor_set(x_73, 3, x_72); +x_74 = lean_array_push(x_30, x_73); +x_75 = l___private_Init_Meta_0__Lean_quoteName(x_11); +x_76 = lean_array_push(x_30, x_75); +x_77 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; +x_78 = lean_array_push(x_76, x_77); +x_79 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__7; lean_inc(x_13); lean_inc(x_16); -x_79 = l_Lean_addMacroScope(x_16, x_78, x_13); -x_80 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_80 = l_Lean_addMacroScope(x_16, x_79, x_13); x_81 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22; -x_82 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_82, 0, x_21); -lean_ctor_set(x_82, 1, x_80); -lean_ctor_set(x_82, 2, x_79); -lean_ctor_set(x_82, 3, x_81); -x_83 = lean_array_push(x_30, x_82); -x_84 = l_Lean_Elab_Term_toParserDescrAux___closed__24; +x_82 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24; +x_83 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_83, 0, x_21); +lean_ctor_set(x_83, 1, x_81); +lean_ctor_set(x_83, 2, x_80); +lean_ctor_set(x_83, 3, x_82); +x_84 = lean_array_push(x_30, x_83); +x_85 = l_Lean_Elab_Term_toParserDescrAux___closed__24; lean_inc(x_13); lean_inc(x_16); -x_85 = l_Lean_addMacroScope(x_16, x_84, x_13); -x_86 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25; +x_86 = l_Lean_addMacroScope(x_16, x_85, x_13); x_87 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_88 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_88, 0, x_21); -lean_ctor_set(x_88, 1, x_86); -lean_ctor_set(x_88, 2, x_85); -lean_ctor_set(x_88, 3, x_87); -x_89 = lean_array_push(x_30, x_88); -x_90 = l_Lean_Syntax_mkStrLit(x_9, x_21); +x_88 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; +x_89 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_89, 0, x_21); +lean_ctor_set(x_89, 1, x_87); +lean_ctor_set(x_89, 2, x_86); +lean_ctor_set(x_89, 3, x_88); +x_90 = lean_array_push(x_30, x_89); +x_91 = l_Lean_Syntax_mkStrLit(x_9, x_21); lean_dec(x_9); -x_91 = lean_array_push(x_30, x_90); -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_32); -lean_ctor_set(x_92, 1, x_91); -lean_inc(x_89); -x_93 = lean_array_push(x_89, x_92); -x_94 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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 = lean_array_push(x_30, x_95); -x_97 = lean_array_push(x_96, x_26); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_32); -lean_ctor_set(x_98, 1, x_97); -x_99 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_100 = lean_array_push(x_99, x_98); -x_101 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_102 = lean_array_push(x_100, x_101); -x_103 = l_myMacro____x40_Init_Notation___hyg_9707____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 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__16; -x_106 = lean_array_push(x_105, x_104); -x_107 = l_Lean_Elab_Term_toParserDescrAux___closed__31; -x_108 = l_Lean_addMacroScope(x_16, x_107, x_13); -x_109 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; +x_92 = lean_array_push(x_30, x_91); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_32); +lean_ctor_set(x_93, 1, x_92); +lean_inc(x_90); +x_94 = lean_array_push(x_90, x_93); +x_95 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_94); +x_97 = lean_array_push(x_30, x_96); +x_98 = lean_array_push(x_97, x_26); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_32); +lean_ctor_set(x_99, 1, x_98); +x_100 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_101 = lean_array_push(x_100, x_99); +x_102 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_103 = lean_array_push(x_101, x_102); +x_104 = l_myMacro____x40_Init_Notation___hyg_9707____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 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__16; +x_107 = lean_array_push(x_106, x_105); +x_108 = l_Lean_Elab_Term_toParserDescrAux___closed__31; +x_109 = l_Lean_addMacroScope(x_16, x_108, x_13); x_110 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__32; -x_111 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_111, 0, x_21); -lean_ctor_set(x_111, 1, x_109); -lean_ctor_set(x_111, 2, x_108); -lean_ctor_set(x_111, 3, x_110); -x_112 = lean_array_push(x_30, x_111); -x_113 = l___private_Init_Meta_0__Lean_quoteName(x_1); -x_114 = lean_array_push(x_30, x_113); -x_115 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_769____closed__4; -x_116 = lean_array_push(x_114, x_115); -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_32); -lean_ctor_set(x_117, 1, x_116); -x_118 = lean_array_push(x_112, x_117); -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_94); -lean_ctor_set(x_119, 1, x_118); -x_120 = lean_array_push(x_30, x_119); -x_121 = lean_array_push(x_120, x_26); -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_32); -lean_ctor_set(x_122, 1, x_121); -x_123 = lean_array_push(x_99, x_122); -x_124 = lean_array_push(x_123, x_101); -x_125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_125, 0, x_103); -lean_ctor_set(x_125, 1, x_124); -x_126 = lean_array_push(x_105, x_125); -x_127 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38; -x_128 = lean_array_push(x_89, x_127); -x_129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_129, 0, x_94); -lean_ctor_set(x_129, 1, x_128); -x_130 = lean_array_push(x_30, x_129); -x_131 = lean_array_push(x_130, x_26); -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_32); -lean_ctor_set(x_132, 1, x_131); -x_133 = lean_array_push(x_99, x_132); -x_134 = lean_array_push(x_133, x_101); -x_135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_135, 0, x_103); -lean_ctor_set(x_135, 1, x_134); -x_136 = lean_array_push(x_126, x_135); -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_32); -lean_ctor_set(x_137, 1, x_136); -lean_inc(x_83); -x_138 = lean_array_push(x_83, x_137); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_94); -lean_ctor_set(x_139, 1, x_138); -x_140 = lean_array_push(x_30, x_139); -x_141 = lean_array_push(x_140, x_26); -x_142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_142, 0, x_32); -lean_ctor_set(x_142, 1, x_141); -x_143 = lean_array_push(x_99, x_142); -x_144 = lean_array_push(x_143, x_101); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_103); -lean_ctor_set(x_145, 1, x_144); -x_146 = lean_array_push(x_106, x_145); -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_32); -lean_ctor_set(x_147, 1, x_146); -x_148 = lean_array_push(x_83, x_147); -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_94); -lean_ctor_set(x_149, 1, x_148); -x_150 = lean_array_push(x_30, x_149); -x_151 = lean_array_push(x_150, x_26); -x_152 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_152, 0, x_32); -lean_ctor_set(x_152, 1, x_151); -x_153 = lean_array_push(x_99, x_152); -x_154 = lean_array_push(x_153, x_101); -x_155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_155, 0, x_103); -lean_ctor_set(x_155, 1, x_154); -x_156 = lean_array_push(x_77, x_155); -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_32); -lean_ctor_set(x_157, 1, x_156); -x_158 = lean_array_push(x_73, x_157); -x_159 = lean_alloc_ctor(1, 2, 0); -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_15292____closed__5; -x_161 = lean_array_push(x_160, x_159); -x_162 = lean_array_push(x_161, x_26); -x_163 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____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; +x_111 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34; +x_112 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_112, 0, x_21); +lean_ctor_set(x_112, 1, x_110); +lean_ctor_set(x_112, 2, x_109); +lean_ctor_set(x_112, 3, x_111); +x_113 = lean_array_push(x_30, x_112); +x_114 = l___private_Init_Meta_0__Lean_quoteName(x_1); +x_115 = lean_array_push(x_30, x_114); +x_116 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_769____closed__4; +x_117 = lean_array_push(x_115, x_116); +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_32); +lean_ctor_set(x_118, 1, x_117); +x_119 = lean_array_push(x_113, x_118); +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_95); +lean_ctor_set(x_120, 1, x_119); +x_121 = lean_array_push(x_30, x_120); +x_122 = lean_array_push(x_121, x_26); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_32); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_array_push(x_100, x_123); +x_125 = lean_array_push(x_124, x_102); +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_104); +lean_ctor_set(x_126, 1, x_125); +x_127 = lean_array_push(x_106, x_126); +x_128 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40; +x_129 = lean_array_push(x_90, x_128); +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_95); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_array_push(x_30, x_130); +x_132 = lean_array_push(x_131, x_26); +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_32); +lean_ctor_set(x_133, 1, x_132); +x_134 = lean_array_push(x_100, x_133); +x_135 = lean_array_push(x_134, x_102); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_104); +lean_ctor_set(x_136, 1, x_135); +x_137 = lean_array_push(x_127, x_136); +x_138 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_138, 0, x_32); +lean_ctor_set(x_138, 1, x_137); +lean_inc(x_84); +x_139 = lean_array_push(x_84, x_138); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_95); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_array_push(x_30, x_140); +x_142 = lean_array_push(x_141, x_26); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_32); +lean_ctor_set(x_143, 1, x_142); +x_144 = lean_array_push(x_100, x_143); +x_145 = lean_array_push(x_144, x_102); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_104); +lean_ctor_set(x_146, 1, x_145); +x_147 = lean_array_push(x_107, x_146); +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_32); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_array_push(x_84, x_148); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_95); +lean_ctor_set(x_150, 1, x_149); +x_151 = lean_array_push(x_30, x_150); +x_152 = lean_array_push(x_151, x_26); +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_32); +lean_ctor_set(x_153, 1, x_152); +x_154 = lean_array_push(x_100, x_153); +x_155 = lean_array_push(x_154, x_102); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_104); +lean_ctor_set(x_156, 1, x_155); +x_157 = lean_array_push(x_78, x_156); +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_32); +lean_ctor_set(x_158, 1, x_157); +x_159 = lean_array_push(x_74, x_158); +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_95); +lean_ctor_set(x_160, 1, x_159); +x_161 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_162 = lean_array_push(x_161, x_160); +x_163 = lean_array_push(x_162, x_26); +x_164 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +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 = lean_array_push(x_68, x_165); +x_167 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_168 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_168, 0, x_167); +lean_ctor_set(x_168, 1, x_166); +x_169 = lean_array_push(x_50, x_168); +x_170 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_171 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_169); +x_172 = l_Lean_Elab_Command_elabCommand(x_171, x_2, x_3, x_17); +return x_172; } } 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) { @@ -12046,27 +12081,71 @@ return x_3; static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__14() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("Lean.TrailingParserDescr"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__14; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__14; +x_3 = lean_array_push(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__22; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lean.TrailingParserDescr"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__18; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__14; +x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__18; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; +x_3 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12074,7 +12153,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -12084,31 +12163,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__18() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__18; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__22; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24() { _start: { lean_object* x_1; @@ -12116,22 +12195,22 @@ x_1 = lean_mk_string("ParserDescr.trailingNode"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20; +x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__22() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20; +x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21; +x_3 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__25; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12139,7 +12218,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__23() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27() { _start: { lean_object* x_1; @@ -12147,44 +12226,44 @@ x_1 = lean_mk_string("trailingNode"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__4; -x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__23; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__25() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; -x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__23; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__25; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__29; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27() { +static lean_object* _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__30; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -12256,7 +12335,7 @@ if (x_36 == 0) switch (x_4) { case 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_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; x_37 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); @@ -12269,7 +12348,7 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_40, 1); lean_inc(x_42); lean_dec(x_40); -x_43 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_43 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; x_44 = lean_array_push(x_43, x_18); x_45 = l_Nat_repr(x_5); x_46 = l_Lean_numLitKind; @@ -12302,355 +12381,356 @@ x_64 = lean_array_push(x_49, x_63); x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_51); lean_ctor_set(x_65, 1, x_64); -x_66 = lean_array_push(x_43, x_65); -x_67 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_68 = lean_array_push(x_66, x_67); -x_69 = lean_array_push(x_68, x_67); -x_70 = lean_array_push(x_69, x_67); -x_71 = lean_array_push(x_70, x_67); -x_72 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_71); -x_74 = lean_array_push(x_49, x_73); -x_75 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_76 = lean_array_push(x_75, x_35); -x_77 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; +x_66 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_67 = lean_array_push(x_66, x_65); +x_68 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_69 = lean_array_push(x_67, x_68); +x_70 = lean_array_push(x_69, x_68); +x_71 = lean_array_push(x_70, x_68); +x_72 = lean_array_push(x_71, x_68); +x_73 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_49, x_74); +x_76 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_77 = lean_array_push(x_76, x_35); +x_78 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; lean_inc(x_38); lean_inc(x_41); -x_78 = l_Lean_addMacroScope(x_41, x_77, x_38); -x_79 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; -x_80 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; -x_81 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_81, 0, x_47); -lean_ctor_set(x_81, 1, x_79); -lean_ctor_set(x_81, 2, x_78); -lean_ctor_set(x_81, 3, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_83 = lean_array_push(x_82, x_81); -x_84 = l_Lean_expandExplicitBindersAux_loop___closed__8; -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_49, x_85); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_51); -lean_ctor_set(x_87, 1, x_86); -x_88 = lean_array_push(x_43, x_87); -x_89 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_90 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_88); -x_91 = lean_array_push(x_76, x_90); -x_92 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; -x_93 = l_Lean_addMacroScope(x_41, x_92, x_38); -x_94 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; -x_95 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; -x_96 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_96, 0, x_47); -lean_ctor_set(x_96, 1, x_94); -lean_ctor_set(x_96, 2, x_93); -lean_ctor_set(x_96, 3, x_95); -x_97 = lean_array_push(x_49, x_96); -x_98 = l___private_Init_Meta_0__Lean_quoteName(x_15); -x_99 = lean_array_push(x_49, x_98); -x_100 = l_Nat_repr(x_6); -x_101 = l_Lean_Syntax_mkLit(x_46, x_100, x_47); -x_102 = lean_array_push(x_99, x_101); -x_103 = lean_array_push(x_102, x_33); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_51); -lean_ctor_set(x_104, 1, x_103); -x_105 = lean_array_push(x_97, x_104); -x_106 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_105); -x_108 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_109 = lean_array_push(x_108, x_107); -x_110 = lean_array_push(x_109, x_67); -x_111 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_112, 0, x_111); -lean_ctor_set(x_112, 1, x_110); -x_113 = lean_array_push(x_91, x_112); -x_114 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_74, x_115); -x_117 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_116); -x_119 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_118, x_8, x_9, x_42); -return x_119; +x_79 = l_Lean_addMacroScope(x_41, x_78, x_38); +x_80 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; +x_81 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; +x_82 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_82, 0, x_47); +lean_ctor_set(x_82, 1, x_80); +lean_ctor_set(x_82, 2, x_79); +lean_ctor_set(x_82, 3, x_81); +x_83 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_84 = lean_array_push(x_83, x_82); +x_85 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_84); +x_87 = lean_array_push(x_49, x_86); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_51); +lean_ctor_set(x_88, 1, x_87); +x_89 = lean_array_push(x_66, x_88); +x_90 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_90); +lean_ctor_set(x_91, 1, x_89); +x_92 = lean_array_push(x_77, x_91); +x_93 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; +x_94 = l_Lean_addMacroScope(x_41, x_93, x_38); +x_95 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; +x_96 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_97 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_97, 0, x_47); +lean_ctor_set(x_97, 1, x_95); +lean_ctor_set(x_97, 2, x_94); +lean_ctor_set(x_97, 3, x_96); +x_98 = lean_array_push(x_49, x_97); +x_99 = l___private_Init_Meta_0__Lean_quoteName(x_15); +x_100 = lean_array_push(x_49, x_99); +x_101 = l_Nat_repr(x_6); +x_102 = l_Lean_Syntax_mkLit(x_46, x_101, x_47); +x_103 = lean_array_push(x_100, x_102); +x_104 = lean_array_push(x_103, x_33); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_51); +lean_ctor_set(x_105, 1, x_104); +x_106 = lean_array_push(x_98, x_105); +x_107 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_106); +x_109 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_110 = lean_array_push(x_109, x_108); +x_111 = lean_array_push(x_110, x_68); +x_112 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_112); +lean_ctor_set(x_113, 1, x_111); +x_114 = lean_array_push(x_92, x_113); +x_115 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_115); +lean_ctor_set(x_116, 1, x_114); +x_117 = lean_array_push(x_75, x_116); +x_118 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_117); +x_120 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_119, x_8, x_9, x_42); +return x_120; } case 1: { -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; -x_120 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); -x_121 = lean_ctor_get(x_120, 0); -lean_inc(x_121); -x_122 = lean_ctor_get(x_120, 1); +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; +x_121 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); +x_122 = lean_ctor_get(x_121, 0); lean_inc(x_122); -lean_dec(x_120); -x_123 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_122); -x_124 = lean_ctor_get(x_123, 0); -lean_inc(x_124); -x_125 = lean_ctor_get(x_123, 1); +x_123 = lean_ctor_get(x_121, 1); +lean_inc(x_123); +lean_dec(x_121); +x_124 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_123); +x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); -lean_dec(x_123); -x_126 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__13; -x_127 = lean_array_push(x_126, x_18); -x_128 = l_Nat_repr(x_5); -x_129 = l_Lean_numLitKind; -x_130 = l_Lean_instInhabitedSourceInfo___closed__1; -x_131 = l_Lean_Syntax_mkLit(x_129, x_128, x_130); -x_132 = l_Array_empty___closed__1; -x_133 = lean_array_push(x_132, x_131); -x_134 = l_Lean_nullKind___closed__2; -x_135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_135, 0, x_134); -lean_ctor_set(x_135, 1, x_133); -x_136 = lean_array_push(x_127, x_135); -x_137 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -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_132, x_138); -x_140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_140, 0, x_134); -lean_ctor_set(x_140, 1, x_139); -x_141 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_142 = lean_array_push(x_141, x_140); -x_143 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_144 = lean_array_push(x_142, x_143); -x_145 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_145); -lean_ctor_set(x_146, 1, x_144); -x_147 = lean_array_push(x_132, x_146); -x_148 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_148, 0, x_134); -lean_ctor_set(x_148, 1, x_147); -x_149 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_150 = lean_array_push(x_149, x_148); -x_151 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_152 = lean_array_push(x_150, x_151); -x_153 = lean_array_push(x_152, x_151); -x_154 = lean_array_push(x_153, x_151); -x_155 = lean_array_push(x_154, x_151); -x_156 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_156); -lean_ctor_set(x_157, 1, x_155); -x_158 = lean_array_push(x_132, x_157); -x_159 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_160 = lean_array_push(x_159, x_35); -x_161 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; -lean_inc(x_121); -lean_inc(x_124); -x_162 = l_Lean_addMacroScope(x_124, x_161, x_121); -x_163 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; -x_164 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; -x_165 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_165, 0, x_130); -lean_ctor_set(x_165, 1, x_163); -lean_ctor_set(x_165, 2, x_162); -lean_ctor_set(x_165, 3, x_164); -x_166 = l_myMacro____x40_Init_Notation___hyg_11836____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_132, x_169); -x_171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_171, 0, x_134); -lean_ctor_set(x_171, 1, x_170); -x_172 = lean_array_push(x_149, x_171); -x_173 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_160, x_174); -x_176 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; -x_177 = l_Lean_addMacroScope(x_124, x_176, x_121); -x_178 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; -x_179 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; -x_180 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_180, 0, x_130); -lean_ctor_set(x_180, 1, x_178); -lean_ctor_set(x_180, 2, x_177); -lean_ctor_set(x_180, 3, x_179); -x_181 = lean_array_push(x_132, x_180); -x_182 = l___private_Init_Meta_0__Lean_quoteName(x_15); -x_183 = lean_array_push(x_132, x_182); -x_184 = l_Nat_repr(x_6); -x_185 = l_Lean_Syntax_mkLit(x_129, x_184, x_130); -x_186 = lean_array_push(x_183, x_185); -x_187 = lean_array_push(x_186, x_33); -x_188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_188, 0, x_134); -lean_ctor_set(x_188, 1, x_187); -x_189 = lean_array_push(x_181, x_188); -x_190 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_193 = lean_array_push(x_192, x_191); -x_194 = lean_array_push(x_193, x_151); -x_195 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -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 = lean_array_push(x_175, x_196); -x_198 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_158, x_199); -x_201 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -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 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_202, x_8, x_9, x_125); -return x_203; +x_126 = lean_ctor_get(x_124, 1); +lean_inc(x_126); +lean_dec(x_124); +x_127 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; +x_128 = lean_array_push(x_127, x_18); +x_129 = l_Nat_repr(x_5); +x_130 = l_Lean_numLitKind; +x_131 = l_Lean_instInhabitedSourceInfo___closed__1; +x_132 = l_Lean_Syntax_mkLit(x_130, x_129, x_131); +x_133 = l_Array_empty___closed__1; +x_134 = lean_array_push(x_133, x_132); +x_135 = l_Lean_nullKind___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_128, x_136); +x_138 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +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_133, x_139); +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_135); +lean_ctor_set(x_141, 1, x_140); +x_142 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_143 = lean_array_push(x_142, x_141); +x_144 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_145 = lean_array_push(x_143, x_144); +x_146 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_145); +x_148 = lean_array_push(x_133, x_147); +x_149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_149, 0, x_135); +lean_ctor_set(x_149, 1, x_148); +x_150 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_151 = lean_array_push(x_150, x_149); +x_152 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_153 = lean_array_push(x_151, x_152); +x_154 = lean_array_push(x_153, x_152); +x_155 = lean_array_push(x_154, x_152); +x_156 = lean_array_push(x_155, x_152); +x_157 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_157); +lean_ctor_set(x_158, 1, x_156); +x_159 = lean_array_push(x_133, x_158); +x_160 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_161 = lean_array_push(x_160, x_35); +x_162 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; +lean_inc(x_122); +lean_inc(x_125); +x_163 = l_Lean_addMacroScope(x_125, x_162, x_122); +x_164 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; +x_165 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; +x_166 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_166, 0, x_131); +lean_ctor_set(x_166, 1, x_164); +lean_ctor_set(x_166, 2, x_163); +lean_ctor_set(x_166, 3, x_165); +x_167 = l_myMacro____x40_Init_Notation___hyg_11836____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_133, x_170); +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_135); +lean_ctor_set(x_172, 1, x_171); +x_173 = lean_array_push(x_150, x_172); +x_174 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +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_161, x_175); +x_177 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; +x_178 = l_Lean_addMacroScope(x_125, x_177, x_122); +x_179 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; +x_180 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_181 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_181, 0, x_131); +lean_ctor_set(x_181, 1, x_179); +lean_ctor_set(x_181, 2, x_178); +lean_ctor_set(x_181, 3, x_180); +x_182 = lean_array_push(x_133, x_181); +x_183 = l___private_Init_Meta_0__Lean_quoteName(x_15); +x_184 = lean_array_push(x_133, x_183); +x_185 = l_Nat_repr(x_6); +x_186 = l_Lean_Syntax_mkLit(x_130, x_185, x_131); +x_187 = lean_array_push(x_184, x_186); +x_188 = lean_array_push(x_187, x_33); +x_189 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_189, 0, x_135); +lean_ctor_set(x_189, 1, x_188); +x_190 = lean_array_push(x_182, x_189); +x_191 = l_myMacro____x40_Init_Notation___hyg_38____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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_194 = lean_array_push(x_193, x_192); +x_195 = lean_array_push(x_194, x_152); +x_196 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +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_176, x_197); +x_199 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_200, 0, x_199); +lean_ctor_set(x_200, 1, x_198); +x_201 = lean_array_push(x_159, x_200); +x_202 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set(x_203, 1, x_201); +x_204 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_203, x_8, x_9, x_126); +return x_204; } default: { -lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; -x_204 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); -x_205 = lean_ctor_get(x_204, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_204, 1); +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_205 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); +x_206 = lean_ctor_get(x_205, 0); lean_inc(x_206); -lean_dec(x_204); -x_207 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_206); -x_208 = lean_ctor_get(x_207, 0); -lean_inc(x_208); -x_209 = lean_ctor_get(x_207, 1); +x_207 = lean_ctor_get(x_205, 1); +lean_inc(x_207); +lean_dec(x_205); +x_208 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_207); +x_209 = lean_ctor_get(x_208, 0); lean_inc(x_209); -lean_dec(x_207); -x_210 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__22; -x_211 = lean_array_push(x_210, x_18); -x_212 = l_Nat_repr(x_5); -x_213 = l_Lean_numLitKind; -x_214 = l_Lean_instInhabitedSourceInfo___closed__1; -x_215 = l_Lean_Syntax_mkLit(x_213, x_212, x_214); -x_216 = l_Array_empty___closed__1; -x_217 = lean_array_push(x_216, x_215); -x_218 = l_Lean_nullKind___closed__2; -x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_218); -lean_ctor_set(x_219, 1, x_217); -x_220 = lean_array_push(x_211, x_219); -x_221 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_222, 0, x_221); -lean_ctor_set(x_222, 1, x_220); -x_223 = lean_array_push(x_216, x_222); -x_224 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_224, 0, x_218); -lean_ctor_set(x_224, 1, x_223); -x_225 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_226 = lean_array_push(x_225, x_224); -x_227 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_228 = lean_array_push(x_226, x_227); -x_229 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -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 = lean_array_push(x_216, x_230); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_218); -lean_ctor_set(x_232, 1, x_231); -x_233 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_234 = lean_array_push(x_233, x_232); -x_235 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_236 = lean_array_push(x_234, x_235); -x_237 = lean_array_push(x_236, x_235); -x_238 = lean_array_push(x_237, x_235); -x_239 = lean_array_push(x_238, x_235); -x_240 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____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 = lean_array_push(x_216, x_241); -x_243 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_244 = lean_array_push(x_243, x_35); -x_245 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; -lean_inc(x_205); -lean_inc(x_208); -x_246 = l_Lean_addMacroScope(x_208, x_245, x_205); -x_247 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; -x_248 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; -x_249 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_249, 0, x_214); -lean_ctor_set(x_249, 1, x_247); -lean_ctor_set(x_249, 2, x_246); -lean_ctor_set(x_249, 3, x_248); -x_250 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_251 = lean_array_push(x_250, x_249); -x_252 = l_Lean_expandExplicitBindersAux_loop___closed__8; -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_216, x_253); -x_255 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_255, 0, x_218); -lean_ctor_set(x_255, 1, x_254); -x_256 = lean_array_push(x_233, x_255); -x_257 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_244, x_258); -x_260 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; -x_261 = l_Lean_addMacroScope(x_208, x_260, x_205); -x_262 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; -x_263 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; -x_264 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_264, 0, x_214); -lean_ctor_set(x_264, 1, x_262); -lean_ctor_set(x_264, 2, x_261); -lean_ctor_set(x_264, 3, x_263); -x_265 = lean_array_push(x_216, x_264); -x_266 = l___private_Init_Meta_0__Lean_quoteName(x_15); -x_267 = lean_array_push(x_216, x_266); -x_268 = l_Nat_repr(x_6); -x_269 = l_Lean_Syntax_mkLit(x_213, x_268, x_214); -x_270 = lean_array_push(x_267, x_269); -x_271 = lean_array_push(x_270, x_33); -x_272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_272, 0, x_218); -lean_ctor_set(x_272, 1, x_271); -x_273 = lean_array_push(x_265, x_272); -x_274 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_275 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_275, 0, x_274); -lean_ctor_set(x_275, 1, x_273); -x_276 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_277 = lean_array_push(x_276, x_275); -x_278 = lean_array_push(x_277, x_235); -x_279 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_280 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_280, 0, x_279); -lean_ctor_set(x_280, 1, x_278); -x_281 = lean_array_push(x_259, x_280); -x_282 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_242, x_283); -x_285 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_286, 0, x_285); -lean_ctor_set(x_286, 1, x_284); -x_287 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_286, x_8, x_9, x_209); -return x_287; +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); +lean_dec(x_208); +x_211 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; +x_212 = lean_array_push(x_211, x_18); +x_213 = l_Nat_repr(x_5); +x_214 = l_Lean_numLitKind; +x_215 = l_Lean_instInhabitedSourceInfo___closed__1; +x_216 = l_Lean_Syntax_mkLit(x_214, x_213, x_215); +x_217 = l_Array_empty___closed__1; +x_218 = lean_array_push(x_217, x_216); +x_219 = l_Lean_nullKind___closed__2; +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_212, x_220); +x_222 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_223, 0, x_222); +lean_ctor_set(x_223, 1, x_221); +x_224 = lean_array_push(x_217, x_223); +x_225 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_225, 0, x_219); +lean_ctor_set(x_225, 1, x_224); +x_226 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_227 = lean_array_push(x_226, x_225); +x_228 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_229 = lean_array_push(x_227, x_228); +x_230 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +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 = lean_array_push(x_217, x_231); +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_219); +lean_ctor_set(x_233, 1, x_232); +x_234 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_235 = lean_array_push(x_234, x_233); +x_236 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_237 = lean_array_push(x_235, x_236); +x_238 = lean_array_push(x_237, x_236); +x_239 = lean_array_push(x_238, x_236); +x_240 = lean_array_push(x_239, x_236); +x_241 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_217, x_242); +x_244 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_245 = lean_array_push(x_244, x_35); +x_246 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; +lean_inc(x_206); +lean_inc(x_209); +x_247 = l_Lean_addMacroScope(x_209, x_246, x_206); +x_248 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; +x_249 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; +x_250 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_250, 0, x_215); +lean_ctor_set(x_250, 1, x_248); +lean_ctor_set(x_250, 2, x_247); +lean_ctor_set(x_250, 3, x_249); +x_251 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_252 = lean_array_push(x_251, x_250); +x_253 = l_Lean_expandExplicitBindersAux_loop___closed__8; +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_217, x_254); +x_256 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_256, 0, x_219); +lean_ctor_set(x_256, 1, x_255); +x_257 = lean_array_push(x_234, x_256); +x_258 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +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_array_push(x_245, x_259); +x_261 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; +x_262 = l_Lean_addMacroScope(x_209, x_261, x_206); +x_263 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; +x_264 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_265 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_265, 0, x_215); +lean_ctor_set(x_265, 1, x_263); +lean_ctor_set(x_265, 2, x_262); +lean_ctor_set(x_265, 3, x_264); +x_266 = lean_array_push(x_217, x_265); +x_267 = l___private_Init_Meta_0__Lean_quoteName(x_15); +x_268 = lean_array_push(x_217, x_267); +x_269 = l_Nat_repr(x_6); +x_270 = l_Lean_Syntax_mkLit(x_214, x_269, x_215); +x_271 = lean_array_push(x_268, x_270); +x_272 = lean_array_push(x_271, x_33); +x_273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_273, 0, x_219); +lean_ctor_set(x_273, 1, x_272); +x_274 = lean_array_push(x_266, x_273); +x_275 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_276, 0, x_275); +lean_ctor_set(x_276, 1, x_274); +x_277 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_278 = lean_array_push(x_277, x_276); +x_279 = lean_array_push(x_278, x_236); +x_280 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_281 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_281, 0, x_280); +lean_ctor_set(x_281, 1, x_279); +x_282 = lean_array_push(x_260, x_281); +x_283 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +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_243, x_284); +x_286 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_287 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_287, 0, x_286); +lean_ctor_set(x_287, 1, x_285); +x_288 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_287, x_8, x_9, x_210); +return x_288; } } } @@ -12659,408 +12739,409 @@ else switch (x_4) { case 0: { -lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; -x_288 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); -x_289 = lean_ctor_get(x_288, 0); -lean_inc(x_289); -x_290 = lean_ctor_get(x_288, 1); +lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; 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; +x_289 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); +x_290 = lean_ctor_get(x_289, 0); lean_inc(x_290); -lean_dec(x_288); -x_291 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_290); -x_292 = lean_ctor_get(x_291, 0); -lean_inc(x_292); -x_293 = lean_ctor_get(x_291, 1); +x_291 = lean_ctor_get(x_289, 1); +lean_inc(x_291); +lean_dec(x_289); +x_292 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_291); +x_293 = lean_ctor_get(x_292, 0); lean_inc(x_293); -lean_dec(x_291); -x_294 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_295 = lean_array_push(x_294, x_18); -x_296 = l_Nat_repr(x_5); -x_297 = l_Lean_numLitKind; -x_298 = l_Lean_instInhabitedSourceInfo___closed__1; -x_299 = l_Lean_Syntax_mkLit(x_297, x_296, x_298); -x_300 = l_Array_empty___closed__1; -x_301 = lean_array_push(x_300, x_299); -x_302 = l_Lean_nullKind___closed__2; -x_303 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_303, 0, x_302); -lean_ctor_set(x_303, 1, x_301); -x_304 = lean_array_push(x_295, x_303); -x_305 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_306, 0, x_305); -lean_ctor_set(x_306, 1, x_304); -x_307 = lean_array_push(x_300, x_306); -x_308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_308, 0, x_302); -lean_ctor_set(x_308, 1, x_307); -x_309 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_310 = lean_array_push(x_309, x_308); -x_311 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_312 = lean_array_push(x_310, x_311); -x_313 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_314, 0, x_313); -lean_ctor_set(x_314, 1, x_312); -x_315 = lean_array_push(x_300, x_314); -x_316 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_316, 0, x_302); -lean_ctor_set(x_316, 1, x_315); -x_317 = lean_array_push(x_294, x_316); -x_318 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_319 = lean_array_push(x_317, x_318); -x_320 = lean_array_push(x_319, x_318); -x_321 = lean_array_push(x_320, x_318); -x_322 = lean_array_push(x_321, x_318); -x_323 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_324 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_324, 0, x_323); -lean_ctor_set(x_324, 1, x_322); -x_325 = lean_array_push(x_300, x_324); -x_326 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_327 = lean_array_push(x_326, x_35); -x_328 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; -lean_inc(x_289); -lean_inc(x_292); -x_329 = l_Lean_addMacroScope(x_292, x_328, x_289); -x_330 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16; -x_331 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; -x_332 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_332, 0, x_298); -lean_ctor_set(x_332, 1, x_330); -lean_ctor_set(x_332, 2, x_329); -lean_ctor_set(x_332, 3, x_331); -x_333 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_334 = lean_array_push(x_333, x_332); -x_335 = l_Lean_expandExplicitBindersAux_loop___closed__8; -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_300, x_336); +x_294 = lean_ctor_get(x_292, 1); +lean_inc(x_294); +lean_dec(x_292); +x_295 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_296 = lean_array_push(x_295, x_18); +x_297 = l_Nat_repr(x_5); +x_298 = l_Lean_numLitKind; +x_299 = l_Lean_instInhabitedSourceInfo___closed__1; +x_300 = l_Lean_Syntax_mkLit(x_298, x_297, x_299); +x_301 = l_Array_empty___closed__1; +x_302 = lean_array_push(x_301, x_300); +x_303 = l_Lean_nullKind___closed__2; +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_296, x_304); +x_306 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_307, 0, x_306); +lean_ctor_set(x_307, 1, x_305); +x_308 = lean_array_push(x_301, x_307); +x_309 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_309, 0, x_303); +lean_ctor_set(x_309, 1, x_308); +x_310 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_311 = lean_array_push(x_310, x_309); +x_312 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_313 = lean_array_push(x_311, x_312); +x_314 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_315, 0, x_314); +lean_ctor_set(x_315, 1, x_313); +x_316 = lean_array_push(x_301, x_315); +x_317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_317, 0, x_303); +lean_ctor_set(x_317, 1, x_316); +x_318 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_319 = lean_array_push(x_318, x_317); +x_320 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_321 = lean_array_push(x_319, x_320); +x_322 = lean_array_push(x_321, x_320); +x_323 = lean_array_push(x_322, x_320); +x_324 = lean_array_push(x_323, x_320); +x_325 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_326 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_326, 0, x_325); +lean_ctor_set(x_326, 1, x_324); +x_327 = lean_array_push(x_301, x_326); +x_328 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_329 = lean_array_push(x_328, x_35); +x_330 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21; +lean_inc(x_290); +lean_inc(x_293); +x_331 = l_Lean_addMacroScope(x_293, x_330, x_290); +x_332 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20; +x_333 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__23; +x_334 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_334, 0, x_299); +lean_ctor_set(x_334, 1, x_332); +lean_ctor_set(x_334, 2, x_331); +lean_ctor_set(x_334, 3, x_333); +x_335 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_336 = lean_array_push(x_335, x_334); +x_337 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_338 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_338, 0, x_302); -lean_ctor_set(x_338, 1, x_337); -x_339 = lean_array_push(x_294, x_338); -x_340 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_341 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_341, 0, x_340); -lean_ctor_set(x_341, 1, x_339); -x_342 = lean_array_push(x_327, x_341); -x_343 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24; -x_344 = l_Lean_addMacroScope(x_292, x_343, x_289); -x_345 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__22; -x_346 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27; -x_347 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_347, 0, x_298); -lean_ctor_set(x_347, 1, x_345); -lean_ctor_set(x_347, 2, x_344); -lean_ctor_set(x_347, 3, x_346); -x_348 = lean_array_push(x_300, x_347); -x_349 = l___private_Init_Meta_0__Lean_quoteName(x_15); -x_350 = lean_array_push(x_300, x_349); -x_351 = l_Nat_repr(x_6); -x_352 = l_Lean_Syntax_mkLit(x_297, x_351, x_298); -x_353 = lean_array_push(x_350, x_352); -x_354 = lean_array_push(x_353, x_33); -x_355 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_355, 0, x_302); -lean_ctor_set(x_355, 1, x_354); -x_356 = lean_array_push(x_348, x_355); -x_357 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_360 = lean_array_push(x_359, x_358); -x_361 = lean_array_push(x_360, x_318); -x_362 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -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 = lean_array_push(x_342, x_363); -x_365 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_325, x_366); -x_368 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_369 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_369, 0, x_368); -lean_ctor_set(x_369, 1, x_367); -x_370 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_369, x_8, x_9, x_293); -return x_370; +lean_ctor_set(x_338, 0, x_337); +lean_ctor_set(x_338, 1, x_336); +x_339 = lean_array_push(x_301, x_338); +x_340 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_340, 0, x_303); +lean_ctor_set(x_340, 1, x_339); +x_341 = lean_array_push(x_318, x_340); +x_342 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_343 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_343, 0, x_342); +lean_ctor_set(x_343, 1, x_341); +x_344 = lean_array_push(x_329, x_343); +x_345 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28; +x_346 = l_Lean_addMacroScope(x_293, x_345, x_290); +x_347 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26; +x_348 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31; +x_349 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_349, 0, x_299); +lean_ctor_set(x_349, 1, x_347); +lean_ctor_set(x_349, 2, x_346); +lean_ctor_set(x_349, 3, x_348); +x_350 = lean_array_push(x_301, x_349); +x_351 = l___private_Init_Meta_0__Lean_quoteName(x_15); +x_352 = lean_array_push(x_301, x_351); +x_353 = l_Nat_repr(x_6); +x_354 = l_Lean_Syntax_mkLit(x_298, x_353, x_299); +x_355 = lean_array_push(x_352, x_354); +x_356 = lean_array_push(x_355, x_33); +x_357 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_357, 0, x_303); +lean_ctor_set(x_357, 1, x_356); +x_358 = lean_array_push(x_350, x_357); +x_359 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_360 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_360, 0, x_359); +lean_ctor_set(x_360, 1, x_358); +x_361 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_362 = lean_array_push(x_361, x_360); +x_363 = lean_array_push(x_362, x_320); +x_364 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_365, 0, x_364); +lean_ctor_set(x_365, 1, x_363); +x_366 = lean_array_push(x_344, x_365); +x_367 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +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_327, x_368); +x_370 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_371, 0, x_370); +lean_ctor_set(x_371, 1, x_369); +x_372 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_371, x_8, x_9, x_294); +return x_372; } case 1: { -lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; -x_371 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); -x_372 = lean_ctor_get(x_371, 0); -lean_inc(x_372); -x_373 = lean_ctor_get(x_371, 1); -lean_inc(x_373); -lean_dec(x_371); -x_374 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_373); -x_375 = lean_ctor_get(x_374, 0); +lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; +x_373 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); +x_374 = lean_ctor_get(x_373, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_373, 1); lean_inc(x_375); -x_376 = lean_ctor_get(x_374, 1); -lean_inc(x_376); -lean_dec(x_374); -x_377 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__13; -x_378 = lean_array_push(x_377, x_18); -x_379 = l_Nat_repr(x_5); -x_380 = l_Lean_numLitKind; -x_381 = l_Lean_instInhabitedSourceInfo___closed__1; -x_382 = l_Lean_Syntax_mkLit(x_380, x_379, x_381); -x_383 = l_Array_empty___closed__1; -x_384 = lean_array_push(x_383, x_382); -x_385 = l_Lean_nullKind___closed__2; -x_386 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_386, 0, x_385); -lean_ctor_set(x_386, 1, x_384); -x_387 = lean_array_push(x_378, x_386); -x_388 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_389, 0, x_388); -lean_ctor_set(x_389, 1, x_387); -x_390 = lean_array_push(x_383, x_389); +lean_dec(x_373); +x_376 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_375); +x_377 = lean_ctor_get(x_376, 0); +lean_inc(x_377); +x_378 = lean_ctor_get(x_376, 1); +lean_inc(x_378); +lean_dec(x_376); +x_379 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; +x_380 = lean_array_push(x_379, x_18); +x_381 = l_Nat_repr(x_5); +x_382 = l_Lean_numLitKind; +x_383 = l_Lean_instInhabitedSourceInfo___closed__1; +x_384 = l_Lean_Syntax_mkLit(x_382, x_381, x_383); +x_385 = l_Array_empty___closed__1; +x_386 = lean_array_push(x_385, x_384); +x_387 = l_Lean_nullKind___closed__2; +x_388 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_388, 0, x_387); +lean_ctor_set(x_388, 1, x_386); +x_389 = lean_array_push(x_380, x_388); +x_390 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; x_391 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_391, 0, x_385); -lean_ctor_set(x_391, 1, x_390); -x_392 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_393 = lean_array_push(x_392, x_391); -x_394 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_395 = lean_array_push(x_393, x_394); -x_396 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_397 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_397, 0, x_396); -lean_ctor_set(x_397, 1, x_395); -x_398 = lean_array_push(x_383, x_397); +lean_ctor_set(x_391, 0, x_390); +lean_ctor_set(x_391, 1, x_389); +x_392 = lean_array_push(x_385, x_391); +x_393 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_393, 0, x_387); +lean_ctor_set(x_393, 1, x_392); +x_394 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_395 = lean_array_push(x_394, x_393); +x_396 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_397 = lean_array_push(x_395, x_396); +x_398 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; x_399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_399, 0, x_385); -lean_ctor_set(x_399, 1, x_398); -x_400 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_401 = lean_array_push(x_400, x_399); -x_402 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_403 = lean_array_push(x_401, x_402); -x_404 = lean_array_push(x_403, x_402); -x_405 = lean_array_push(x_404, x_402); -x_406 = lean_array_push(x_405, x_402); -x_407 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -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_383, x_408); -x_410 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_411 = lean_array_push(x_410, x_35); -x_412 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; -lean_inc(x_372); -lean_inc(x_375); -x_413 = l_Lean_addMacroScope(x_375, x_412, x_372); -x_414 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16; -x_415 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; -x_416 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_416, 0, x_381); -lean_ctor_set(x_416, 1, x_414); -lean_ctor_set(x_416, 2, x_413); -lean_ctor_set(x_416, 3, x_415); -x_417 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_418 = lean_array_push(x_417, x_416); -x_419 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_420 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_420, 0, x_419); -lean_ctor_set(x_420, 1, x_418); -x_421 = lean_array_push(x_383, x_420); +lean_ctor_set(x_399, 0, x_398); +lean_ctor_set(x_399, 1, x_397); +x_400 = lean_array_push(x_385, x_399); +x_401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_401, 0, x_387); +lean_ctor_set(x_401, 1, x_400); +x_402 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_403 = lean_array_push(x_402, x_401); +x_404 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_405 = lean_array_push(x_403, x_404); +x_406 = lean_array_push(x_405, x_404); +x_407 = lean_array_push(x_406, x_404); +x_408 = lean_array_push(x_407, x_404); +x_409 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_410, 0, x_409); +lean_ctor_set(x_410, 1, x_408); +x_411 = lean_array_push(x_385, x_410); +x_412 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_413 = lean_array_push(x_412, x_35); +x_414 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21; +lean_inc(x_374); +lean_inc(x_377); +x_415 = l_Lean_addMacroScope(x_377, x_414, x_374); +x_416 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20; +x_417 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__23; +x_418 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_418, 0, x_383); +lean_ctor_set(x_418, 1, x_416); +lean_ctor_set(x_418, 2, x_415); +lean_ctor_set(x_418, 3, x_417); +x_419 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_420 = lean_array_push(x_419, x_418); +x_421 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_422 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_422, 0, x_385); -lean_ctor_set(x_422, 1, x_421); -x_423 = lean_array_push(x_400, x_422); -x_424 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_425 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_425, 0, x_424); -lean_ctor_set(x_425, 1, x_423); -x_426 = lean_array_push(x_411, x_425); -x_427 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24; -x_428 = l_Lean_addMacroScope(x_375, x_427, x_372); -x_429 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__22; -x_430 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27; -x_431 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_431, 0, x_381); -lean_ctor_set(x_431, 1, x_429); -lean_ctor_set(x_431, 2, x_428); -lean_ctor_set(x_431, 3, x_430); -x_432 = lean_array_push(x_383, x_431); -x_433 = l___private_Init_Meta_0__Lean_quoteName(x_15); -x_434 = lean_array_push(x_383, x_433); -x_435 = l_Nat_repr(x_6); -x_436 = l_Lean_Syntax_mkLit(x_380, x_435, x_381); -x_437 = lean_array_push(x_434, x_436); -x_438 = lean_array_push(x_437, x_33); -x_439 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_439, 0, x_385); -lean_ctor_set(x_439, 1, x_438); -x_440 = lean_array_push(x_432, x_439); -x_441 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_442 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_442, 0, x_441); -lean_ctor_set(x_442, 1, x_440); -x_443 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_444 = lean_array_push(x_443, x_442); -x_445 = lean_array_push(x_444, x_402); -x_446 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_447, 0, x_446); -lean_ctor_set(x_447, 1, x_445); -x_448 = lean_array_push(x_426, x_447); -x_449 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_450 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_450, 0, x_449); -lean_ctor_set(x_450, 1, x_448); -x_451 = lean_array_push(x_409, x_450); -x_452 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_453 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_453, 0, x_452); -lean_ctor_set(x_453, 1, x_451); -x_454 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_453, x_8, x_9, x_376); -return x_454; +lean_ctor_set(x_422, 0, x_421); +lean_ctor_set(x_422, 1, x_420); +x_423 = lean_array_push(x_385, x_422); +x_424 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_424, 0, x_387); +lean_ctor_set(x_424, 1, x_423); +x_425 = lean_array_push(x_402, x_424); +x_426 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_427 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_427, 0, x_426); +lean_ctor_set(x_427, 1, x_425); +x_428 = lean_array_push(x_413, x_427); +x_429 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28; +x_430 = l_Lean_addMacroScope(x_377, x_429, x_374); +x_431 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26; +x_432 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31; +x_433 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_433, 0, x_383); +lean_ctor_set(x_433, 1, x_431); +lean_ctor_set(x_433, 2, x_430); +lean_ctor_set(x_433, 3, x_432); +x_434 = lean_array_push(x_385, x_433); +x_435 = l___private_Init_Meta_0__Lean_quoteName(x_15); +x_436 = lean_array_push(x_385, x_435); +x_437 = l_Nat_repr(x_6); +x_438 = l_Lean_Syntax_mkLit(x_382, x_437, x_383); +x_439 = lean_array_push(x_436, x_438); +x_440 = lean_array_push(x_439, x_33); +x_441 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_441, 0, x_387); +lean_ctor_set(x_441, 1, x_440); +x_442 = lean_array_push(x_434, x_441); +x_443 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_446 = lean_array_push(x_445, x_444); +x_447 = lean_array_push(x_446, x_404); +x_448 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_449 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_449, 0, x_448); +lean_ctor_set(x_449, 1, x_447); +x_450 = lean_array_push(x_428, x_449); +x_451 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_452 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_452, 0, x_451); +lean_ctor_set(x_452, 1, x_450); +x_453 = lean_array_push(x_411, x_452); +x_454 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +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 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_455, x_8, x_9, x_378); +return x_456; } default: { -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_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; -x_455 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); -x_456 = lean_ctor_get(x_455, 0); -lean_inc(x_456); -x_457 = lean_ctor_get(x_455, 1); -lean_inc(x_457); -lean_dec(x_455); -x_458 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_457); -x_459 = lean_ctor_get(x_458, 0); +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_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; +x_457 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_32); +x_458 = lean_ctor_get(x_457, 0); +lean_inc(x_458); +x_459 = lean_ctor_get(x_457, 1); lean_inc(x_459); -x_460 = lean_ctor_get(x_458, 1); -lean_inc(x_460); -lean_dec(x_458); -x_461 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__22; -x_462 = lean_array_push(x_461, x_18); -x_463 = l_Nat_repr(x_5); -x_464 = l_Lean_numLitKind; -x_465 = l_Lean_instInhabitedSourceInfo___closed__1; -x_466 = l_Lean_Syntax_mkLit(x_464, x_463, x_465); -x_467 = l_Array_empty___closed__1; -x_468 = lean_array_push(x_467, x_466); -x_469 = l_Lean_nullKind___closed__2; -x_470 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_470, 0, x_469); -lean_ctor_set(x_470, 1, x_468); -x_471 = lean_array_push(x_462, x_470); -x_472 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_473 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_473, 0, x_472); -lean_ctor_set(x_473, 1, x_471); -x_474 = lean_array_push(x_467, x_473); +lean_dec(x_457); +x_460 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_459); +x_461 = lean_ctor_get(x_460, 0); +lean_inc(x_461); +x_462 = lean_ctor_get(x_460, 1); +lean_inc(x_462); +lean_dec(x_460); +x_463 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; +x_464 = lean_array_push(x_463, x_18); +x_465 = l_Nat_repr(x_5); +x_466 = l_Lean_numLitKind; +x_467 = l_Lean_instInhabitedSourceInfo___closed__1; +x_468 = l_Lean_Syntax_mkLit(x_466, x_465, x_467); +x_469 = l_Array_empty___closed__1; +x_470 = lean_array_push(x_469, x_468); +x_471 = l_Lean_nullKind___closed__2; +x_472 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_472, 0, x_471); +lean_ctor_set(x_472, 1, x_470); +x_473 = lean_array_push(x_464, x_472); +x_474 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; x_475 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_475, 0, x_469); -lean_ctor_set(x_475, 1, x_474); -x_476 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_477 = lean_array_push(x_476, x_475); -x_478 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_479 = lean_array_push(x_477, x_478); -x_480 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_481 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_481, 0, x_480); -lean_ctor_set(x_481, 1, x_479); -x_482 = lean_array_push(x_467, x_481); +lean_ctor_set(x_475, 0, x_474); +lean_ctor_set(x_475, 1, x_473); +x_476 = lean_array_push(x_469, x_475); +x_477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_477, 0, x_471); +lean_ctor_set(x_477, 1, x_476); +x_478 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_479 = lean_array_push(x_478, x_477); +x_480 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_481 = lean_array_push(x_479, x_480); +x_482 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; x_483 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_483, 0, x_469); -lean_ctor_set(x_483, 1, x_482); -x_484 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_485 = lean_array_push(x_484, x_483); -x_486 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_487 = lean_array_push(x_485, x_486); -x_488 = lean_array_push(x_487, x_486); -x_489 = lean_array_push(x_488, x_486); -x_490 = lean_array_push(x_489, x_486); -x_491 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_492 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_492, 0, x_491); -lean_ctor_set(x_492, 1, x_490); -x_493 = lean_array_push(x_467, x_492); -x_494 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_495 = lean_array_push(x_494, x_35); -x_496 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; -lean_inc(x_456); -lean_inc(x_459); -x_497 = l_Lean_addMacroScope(x_459, x_496, x_456); -x_498 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16; -x_499 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; -x_500 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_500, 0, x_465); -lean_ctor_set(x_500, 1, x_498); -lean_ctor_set(x_500, 2, x_497); -lean_ctor_set(x_500, 3, x_499); -x_501 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_502 = lean_array_push(x_501, x_500); -x_503 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_504 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_504, 0, x_503); -lean_ctor_set(x_504, 1, x_502); -x_505 = lean_array_push(x_467, x_504); +lean_ctor_set(x_483, 0, x_482); +lean_ctor_set(x_483, 1, x_481); +x_484 = lean_array_push(x_469, x_483); +x_485 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_485, 0, x_471); +lean_ctor_set(x_485, 1, x_484); +x_486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_487 = lean_array_push(x_486, x_485); +x_488 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_489 = lean_array_push(x_487, x_488); +x_490 = lean_array_push(x_489, x_488); +x_491 = lean_array_push(x_490, x_488); +x_492 = lean_array_push(x_491, x_488); +x_493 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_494 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_494, 0, x_493); +lean_ctor_set(x_494, 1, x_492); +x_495 = lean_array_push(x_469, x_494); +x_496 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_497 = lean_array_push(x_496, x_35); +x_498 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21; +lean_inc(x_458); +lean_inc(x_461); +x_499 = l_Lean_addMacroScope(x_461, x_498, x_458); +x_500 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20; +x_501 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__23; +x_502 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_502, 0, x_467); +lean_ctor_set(x_502, 1, x_500); +lean_ctor_set(x_502, 2, x_499); +lean_ctor_set(x_502, 3, x_501); +x_503 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_504 = lean_array_push(x_503, x_502); +x_505 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_506 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_506, 0, x_469); -lean_ctor_set(x_506, 1, x_505); -x_507 = lean_array_push(x_484, x_506); -x_508 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_495, x_509); -x_511 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24; -x_512 = l_Lean_addMacroScope(x_459, x_511, x_456); -x_513 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__22; -x_514 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27; -x_515 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_515, 0, x_465); -lean_ctor_set(x_515, 1, x_513); -lean_ctor_set(x_515, 2, x_512); -lean_ctor_set(x_515, 3, x_514); -x_516 = lean_array_push(x_467, x_515); -x_517 = l___private_Init_Meta_0__Lean_quoteName(x_15); -x_518 = lean_array_push(x_467, x_517); -x_519 = l_Nat_repr(x_6); -x_520 = l_Lean_Syntax_mkLit(x_464, x_519, x_465); -x_521 = lean_array_push(x_518, x_520); -x_522 = lean_array_push(x_521, x_33); -x_523 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_523, 0, x_469); -lean_ctor_set(x_523, 1, x_522); -x_524 = lean_array_push(x_516, x_523); -x_525 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_528 = lean_array_push(x_527, x_526); -x_529 = lean_array_push(x_528, x_486); -x_530 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_531 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_531, 0, x_530); -lean_ctor_set(x_531, 1, x_529); -x_532 = lean_array_push(x_510, x_531); -x_533 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_534, 0, x_533); -lean_ctor_set(x_534, 1, x_532); -x_535 = lean_array_push(x_493, x_534); -x_536 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_537 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_537, 0, x_536); -lean_ctor_set(x_537, 1, x_535); -x_538 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_537, x_8, x_9, x_460); -return x_538; +lean_ctor_set(x_506, 0, x_505); +lean_ctor_set(x_506, 1, x_504); +x_507 = lean_array_push(x_469, x_506); +x_508 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_508, 0, x_471); +lean_ctor_set(x_508, 1, x_507); +x_509 = lean_array_push(x_486, x_508); +x_510 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +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_497, x_511); +x_513 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28; +x_514 = l_Lean_addMacroScope(x_461, x_513, x_458); +x_515 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26; +x_516 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31; +x_517 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_517, 0, x_467); +lean_ctor_set(x_517, 1, x_515); +lean_ctor_set(x_517, 2, x_514); +lean_ctor_set(x_517, 3, x_516); +x_518 = lean_array_push(x_469, x_517); +x_519 = l___private_Init_Meta_0__Lean_quoteName(x_15); +x_520 = lean_array_push(x_469, x_519); +x_521 = l_Nat_repr(x_6); +x_522 = l_Lean_Syntax_mkLit(x_466, x_521, x_467); +x_523 = lean_array_push(x_520, x_522); +x_524 = lean_array_push(x_523, x_33); +x_525 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_525, 0, x_471); +lean_ctor_set(x_525, 1, x_524); +x_526 = lean_array_push(x_518, x_525); +x_527 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_528 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_528, 0, x_527); +lean_ctor_set(x_528, 1, x_526); +x_529 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_530 = lean_array_push(x_529, x_528); +x_531 = lean_array_push(x_530, x_488); +x_532 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_533 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_533, 0, x_532); +lean_ctor_set(x_533, 1, x_531); +x_534 = lean_array_push(x_512, x_533); +x_535 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_536, 0, x_535); +lean_ctor_set(x_536, 1, x_534); +x_537 = lean_array_push(x_495, x_536); +x_538 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_539 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_539, 0, x_538); +lean_ctor_set(x_539, 1, x_537); +x_540 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_2, x_539, x_8, x_9, x_462); +return x_540; } } } } else { -uint8_t x_539; +uint8_t x_541; lean_dec(x_18); lean_dec(x_15); lean_dec(x_9); @@ -13069,23 +13150,23 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_2); -x_539 = !lean_is_exclusive(x_30); -if (x_539 == 0) +x_541 = !lean_is_exclusive(x_30); +if (x_541 == 0) { return x_30; } else { -lean_object* x_540; lean_object* x_541; lean_object* x_542; -x_540 = lean_ctor_get(x_30, 0); -x_541 = lean_ctor_get(x_30, 1); -lean_inc(x_541); -lean_inc(x_540); +lean_object* x_542; lean_object* x_543; lean_object* x_544; +x_542 = lean_ctor_get(x_30, 0); +x_543 = lean_ctor_get(x_30, 1); +lean_inc(x_543); +lean_inc(x_542); lean_dec(x_30); -x_542 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_542, 0, x_540); -lean_ctor_set(x_542, 1, x_541); -return x_542; +x_544 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_544, 0, x_542); +lean_ctor_set(x_544, 1, x_543); +return x_544; } } } @@ -13800,7 +13881,7 @@ lean_inc(x_29); lean_inc(x_32); x_37 = l_Lean_addMacroScope(x_32, x_36, x_29); x_38 = l_Lean_instInhabitedSourceInfo___closed__1; -x_39 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; +x_39 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; x_40 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_38); @@ -14826,7 +14907,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_137; +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; x_15 = lean_ctor_get(x_13, 0); x_16 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; lean_inc(x_11); @@ -14840,7 +14921,7 @@ lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); lean_ctor_set(x_21, 2, x_17); lean_ctor_set(x_21, 3, x_18); -x_22 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_22 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; x_23 = lean_array_push(x_22, x_21); x_24 = lean_mk_syntax_ident(x_1); x_25 = l_Array_empty___closed__1; @@ -14870,408 +14951,410 @@ x_40 = lean_array_push(x_25, x_39); x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_27); lean_ctor_set(x_41, 1, x_40); -x_42 = lean_array_push(x_22, x_41); -x_43 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_44 = lean_array_push(x_42, x_43); -x_45 = lean_array_push(x_44, x_43); -x_46 = lean_array_push(x_45, x_43); -x_47 = lean_array_push(x_46, x_43); -x_48 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -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_25, x_49); -x_51 = l_Lean_Elab_Command_elabMacroRulesAux___closed__6; +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_43 = lean_array_push(x_42, x_41); +x_44 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_45 = lean_array_push(x_43, x_44); +x_46 = lean_array_push(x_45, x_44); +x_47 = lean_array_push(x_46, x_44); +x_48 = lean_array_push(x_47, x_44); +x_49 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +x_51 = lean_array_push(x_25, x_50); +x_52 = l_Lean_Elab_Command_elabMacroRulesAux___closed__6; lean_inc(x_11); lean_inc(x_15); -x_52 = l_Lean_addMacroScope(x_15, x_51, x_11); -x_53 = l_Lean_Elab_Command_elabMacroRulesAux___closed__5; -x_54 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_54, 0, x_19); -lean_ctor_set(x_54, 1, x_53); -lean_ctor_set(x_54, 2, x_52); -lean_ctor_set(x_54, 3, x_18); -x_55 = lean_array_push(x_25, x_54); -x_56 = lean_array_push(x_55, x_43); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_56); -x_59 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_60 = lean_array_push(x_59, x_58); -x_61 = l_Lean_Elab_Command_elabMacroRulesAux___closed__9; +x_53 = l_Lean_addMacroScope(x_15, x_52, x_11); +x_54 = l_Lean_Elab_Command_elabMacroRulesAux___closed__5; +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_19); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_18); +x_56 = lean_array_push(x_25, x_55); +x_57 = lean_array_push(x_56, x_44); +x_58 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_57); +x_60 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_61 = lean_array_push(x_60, x_59); +x_62 = l_Lean_Elab_Command_elabMacroRulesAux___closed__9; lean_inc(x_11); lean_inc(x_15); -x_62 = l_Lean_addMacroScope(x_15, x_61, x_11); -x_63 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; -x_64 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; -x_65 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_65, 0, x_19); -lean_ctor_set(x_65, 1, x_63); -lean_ctor_set(x_65, 2, x_62); -lean_ctor_set(x_65, 3, x_64); -x_66 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_67 = lean_array_push(x_66, x_65); -x_68 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_67); -x_70 = lean_array_push(x_25, x_69); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_27); -lean_ctor_set(x_71, 1, x_70); -x_72 = lean_array_push(x_22, x_71); -x_73 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_60, x_74); -x_76 = l_stx___x3c_x7c_x3e_____closed__4; +x_63 = l_Lean_addMacroScope(x_15, x_62, x_11); +x_64 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; +x_65 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; +x_66 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_66, 0, x_19); +lean_ctor_set(x_66, 1, x_64); +lean_ctor_set(x_66, 2, x_63); +lean_ctor_set(x_66, 3, x_65); +x_67 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_68 = lean_array_push(x_67, x_66); +x_69 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_68); +x_71 = lean_array_push(x_25, x_70); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_27); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_42, x_72); +x_74 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +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_61, x_75); +x_77 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_11); lean_inc(x_15); -x_77 = l_Lean_addMacroScope(x_15, x_76, x_11); -x_78 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_79 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_79, 0, x_19); -lean_ctor_set(x_79, 1, x_78); -lean_ctor_set(x_79, 2, x_77); -lean_ctor_set(x_79, 3, x_18); -lean_inc(x_79); -x_80 = lean_array_push(x_25, x_79); -x_81 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_81, 0, x_27); -lean_ctor_set(x_81, 1, x_80); -x_82 = lean_array_push(x_25, x_81); -x_83 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_84 = lean_array_push(x_82, x_83); -x_85 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_86 = lean_array_push(x_85, x_79); -x_87 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_88 = lean_array_push(x_86, x_87); -x_89 = l_Array_appendCore___rarg(x_25, x_8); +x_78 = l_Lean_addMacroScope(x_15, x_77, x_11); +x_79 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_80 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_80, 0, x_19); +lean_ctor_set(x_80, 1, x_79); +lean_ctor_set(x_80, 2, x_78); +lean_ctor_set(x_80, 3, x_18); +lean_inc(x_80); +x_81 = lean_array_push(x_25, x_80); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_27); +lean_ctor_set(x_82, 1, x_81); +x_83 = lean_array_push(x_25, x_82); +x_84 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_85 = lean_array_push(x_83, x_84); +x_86 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_87 = lean_array_push(x_86, x_80); +x_88 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_89 = lean_array_push(x_87, x_88); +x_90 = l_Array_appendCore___rarg(x_25, x_8); lean_dec(x_8); -x_90 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_91 = lean_array_push(x_89, x_90); -x_92 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_91 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_92 = lean_array_push(x_90, x_91); +x_93 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; lean_inc(x_11); lean_inc(x_15); -x_93 = l_Lean_addMacroScope(x_15, x_92, x_11); -x_94 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_95 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_96 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_96, 0, x_19); -lean_ctor_set(x_96, 1, x_94); -lean_ctor_set(x_96, 2, x_93); -lean_ctor_set(x_96, 3, x_95); -x_97 = lean_array_push(x_25, x_96); -x_98 = l_Lean_Elab_Command_elabMacroRulesAux___closed__31; -x_99 = l_Lean_addMacroScope(x_15, x_98, x_11); -x_100 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; -x_101 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; -x_102 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_102, 0, x_19); -lean_ctor_set(x_102, 1, x_100); -lean_ctor_set(x_102, 2, x_99); -lean_ctor_set(x_102, 3, x_101); -x_103 = lean_array_push(x_25, x_102); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_27); -lean_ctor_set(x_104, 1, x_103); -x_105 = lean_array_push(x_97, x_104); -x_106 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_105); -x_108 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_109 = lean_array_push(x_108, x_107); -x_110 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_110); -lean_ctor_set(x_111, 1, x_109); -x_112 = lean_array_push(x_91, x_111); -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_27); -lean_ctor_set(x_113, 1, x_112); -x_114 = lean_array_push(x_22, x_113); -x_115 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_114); -x_117 = lean_array_push(x_88, x_116); -x_118 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_118); -lean_ctor_set(x_119, 1, x_117); -x_120 = lean_array_push(x_84, x_119); -x_121 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_120); -x_123 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_124 = lean_array_push(x_123, x_122); -x_125 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_128 = lean_array_push(x_127, x_126); -x_129 = lean_array_push(x_128, x_43); -x_130 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____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); +x_94 = l_Lean_addMacroScope(x_15, x_93, x_11); +x_95 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_96 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_97 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_97, 0, x_19); +lean_ctor_set(x_97, 1, x_95); +lean_ctor_set(x_97, 2, x_94); +lean_ctor_set(x_97, 3, x_96); +x_98 = lean_array_push(x_25, x_97); +x_99 = l_Lean_Elab_Command_elabMacroRulesAux___closed__31; +x_100 = l_Lean_addMacroScope(x_15, x_99, x_11); +x_101 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; +x_102 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; +x_103 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_103, 0, x_19); +lean_ctor_set(x_103, 1, x_101); +lean_ctor_set(x_103, 2, x_100); +lean_ctor_set(x_103, 3, x_102); +x_104 = lean_array_push(x_25, x_103); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_27); +lean_ctor_set(x_105, 1, x_104); +x_106 = lean_array_push(x_98, x_105); +x_107 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_106); +x_109 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_110 = lean_array_push(x_109, x_108); +x_111 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_110); +x_113 = lean_array_push(x_92, x_112); +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_27); +lean_ctor_set(x_114, 1, x_113); +x_115 = lean_array_push(x_42, x_114); +x_116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_116); +lean_ctor_set(x_117, 1, x_115); +x_118 = lean_array_push(x_89, x_117); +x_119 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_119); +lean_ctor_set(x_120, 1, x_118); +x_121 = lean_array_push(x_85, x_120); +x_122 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_122); +lean_ctor_set(x_123, 1, x_121); +x_124 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_125 = lean_array_push(x_124, x_123); +x_126 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_129 = lean_array_push(x_128, x_127); +x_130 = lean_array_push(x_129, x_44); +x_131 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_132, 1, x_130); +x_133 = lean_array_push(x_76, x_132); +x_134 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_135 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_133); +x_136 = lean_array_push(x_51, x_135); +x_137 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_138 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set(x_138, 1, x_136); +lean_ctor_set(x_13, 0, x_138); return x_13; } 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; 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_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; lean_object* x_263; lean_object* x_264; +x_139 = lean_ctor_get(x_13, 0); +x_140 = lean_ctor_get(x_13, 1); +lean_inc(x_140); lean_inc(x_139); -lean_inc(x_138); lean_dec(x_13); -x_140 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; +x_141 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; lean_inc(x_11); -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_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_147 = lean_array_push(x_146, x_145); -x_148 = lean_mk_syntax_ident(x_1); -x_149 = l_Array_empty___closed__1; -x_150 = lean_array_push(x_149, x_148); -x_151 = l_Lean_nullKind___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); -x_153 = lean_array_push(x_147, x_152); -x_154 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_155, 0, x_154); -lean_ctor_set(x_155, 1, x_153); -x_156 = lean_array_push(x_149, x_155); -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_151); -lean_ctor_set(x_157, 1, x_156); -x_158 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_159 = lean_array_push(x_158, x_157); -x_160 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_161 = lean_array_push(x_159, x_160); -x_162 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -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_149, x_163); -x_165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_165, 0, x_151); -lean_ctor_set(x_165, 1, x_164); -x_166 = lean_array_push(x_146, x_165); -x_167 = l_myMacro____x40_Init_Notation___hyg_9707____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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____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_149, x_173); -x_175 = l_Lean_Elab_Command_elabMacroRulesAux___closed__6; +lean_inc(x_139); +x_142 = l_Lean_addMacroScope(x_139, x_141, x_11); +x_143 = lean_box(0); +x_144 = l_Lean_instInhabitedSourceInfo___closed__1; +x_145 = l_Lean_Elab_Command_elabMacroRulesAux___closed__2; +x_146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_146, 0, x_144); +lean_ctor_set(x_146, 1, x_145); +lean_ctor_set(x_146, 2, x_142); +lean_ctor_set(x_146, 3, x_143); +x_147 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_148 = lean_array_push(x_147, x_146); +x_149 = lean_mk_syntax_ident(x_1); +x_150 = l_Array_empty___closed__1; +x_151 = lean_array_push(x_150, x_149); +x_152 = l_Lean_nullKind___closed__2; +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_151); +x_154 = lean_array_push(x_148, x_153); +x_155 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_154); +x_157 = lean_array_push(x_150, x_156); +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_152); +lean_ctor_set(x_158, 1, x_157); +x_159 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_160 = lean_array_push(x_159, x_158); +x_161 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_162 = lean_array_push(x_160, x_161); +x_163 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +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_150, x_164); +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_152); +lean_ctor_set(x_166, 1, x_165); +x_167 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_168 = lean_array_push(x_167, x_166); +x_169 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_170 = lean_array_push(x_168, x_169); +x_171 = lean_array_push(x_170, x_169); +x_172 = lean_array_push(x_171, x_169); +x_173 = lean_array_push(x_172, x_169); +x_174 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_elabMacroRulesAux___closed__6; lean_inc(x_11); -lean_inc(x_138); -x_176 = l_Lean_addMacroScope(x_138, x_175, x_11); -x_177 = l_Lean_Elab_Command_elabMacroRulesAux___closed__5; -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_149, x_178); -x_180 = lean_array_push(x_179, x_167); -x_181 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_184 = lean_array_push(x_183, x_182); -x_185 = l_Lean_Elab_Command_elabMacroRulesAux___closed__9; +lean_inc(x_139); +x_178 = l_Lean_addMacroScope(x_139, x_177, x_11); +x_179 = l_Lean_Elab_Command_elabMacroRulesAux___closed__5; +x_180 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_180, 0, x_144); +lean_ctor_set(x_180, 1, x_179); +lean_ctor_set(x_180, 2, x_178); +lean_ctor_set(x_180, 3, x_143); +x_181 = lean_array_push(x_150, x_180); +x_182 = lean_array_push(x_181, x_169); +x_183 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_184, 0, x_183); +lean_ctor_set(x_184, 1, x_182); +x_185 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_186 = lean_array_push(x_185, x_184); +x_187 = l_Lean_Elab_Command_elabMacroRulesAux___closed__9; lean_inc(x_11); -lean_inc(x_138); -x_186 = l_Lean_addMacroScope(x_138, x_185, x_11); -x_187 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; -x_188 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; -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_11836____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_149, x_193); +lean_inc(x_139); +x_188 = l_Lean_addMacroScope(x_139, x_187, x_11); +x_189 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; +x_190 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; +x_191 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_191, 0, x_144); +lean_ctor_set(x_191, 1, x_189); +lean_ctor_set(x_191, 2, x_188); +lean_ctor_set(x_191, 3, x_190); +x_192 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_193 = lean_array_push(x_192, x_191); +x_194 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_195, 0, x_151); -lean_ctor_set(x_195, 1, x_194); -x_196 = lean_array_push(x_146, x_195); -x_197 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_stx___x3c_x7c_x3e_____closed__4; +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_193); +x_196 = lean_array_push(x_150, x_195); +x_197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_197, 0, x_152); +lean_ctor_set(x_197, 1, x_196); +x_198 = lean_array_push(x_167, x_197); +x_199 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_200, 0, x_199); +lean_ctor_set(x_200, 1, x_198); +x_201 = lean_array_push(x_186, x_200); +x_202 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_11); -lean_inc(x_138); -x_201 = l_Lean_addMacroScope(x_138, x_200, x_11); -x_202 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -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_149, x_203); -x_205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_205, 0, x_151); +lean_inc(x_139); +x_203 = l_Lean_addMacroScope(x_139, x_202, x_11); +x_204 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_205 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_205, 0, x_144); lean_ctor_set(x_205, 1, x_204); -x_206 = lean_array_push(x_149, x_205); -x_207 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_208 = lean_array_push(x_206, x_207); -x_209 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_210 = lean_array_push(x_209, x_203); -x_211 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_212 = lean_array_push(x_210, x_211); -x_213 = l_Array_appendCore___rarg(x_149, x_8); +lean_ctor_set(x_205, 2, x_203); +lean_ctor_set(x_205, 3, x_143); +lean_inc(x_205); +x_206 = lean_array_push(x_150, x_205); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_152); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_array_push(x_150, x_207); +x_209 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_210 = lean_array_push(x_208, x_209); +x_211 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_212 = lean_array_push(x_211, x_205); +x_213 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_214 = lean_array_push(x_212, x_213); +x_215 = l_Array_appendCore___rarg(x_150, x_8); lean_dec(x_8); -x_214 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_215 = lean_array_push(x_213, x_214); -x_216 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_216 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_217 = lean_array_push(x_215, x_216); +x_218 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; lean_inc(x_11); -lean_inc(x_138); -x_217 = l_Lean_addMacroScope(x_138, x_216, x_11); -x_218 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_219 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -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_149, x_220); -x_222 = l_Lean_Elab_Command_elabMacroRulesAux___closed__31; -x_223 = l_Lean_addMacroScope(x_138, x_222, x_11); -x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; -x_225 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; -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_149, x_226); -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_151); -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__16; -x_233 = lean_array_push(x_232, x_231); -x_234 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -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); +lean_inc(x_139); +x_219 = l_Lean_addMacroScope(x_139, x_218, x_11); +x_220 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_221 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_222 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_222, 0, x_144); +lean_ctor_set(x_222, 1, x_220); +lean_ctor_set(x_222, 2, x_219); +lean_ctor_set(x_222, 3, x_221); +x_223 = lean_array_push(x_150, x_222); +x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__31; +x_225 = l_Lean_addMacroScope(x_139, x_224, x_11); +x_226 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; +x_227 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; +x_228 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_228, 0, x_144); +lean_ctor_set(x_228, 1, x_226); +lean_ctor_set(x_228, 2, x_225); +lean_ctor_set(x_228, 3, x_227); +x_229 = lean_array_push(x_150, x_228); +x_230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_230, 0, x_152); +lean_ctor_set(x_230, 1, x_229); +x_231 = lean_array_push(x_223, x_230); +x_232 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_232); +lean_ctor_set(x_233, 1, x_231); +x_234 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_235 = lean_array_push(x_234, x_233); +x_236 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; x_237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_237, 0, x_151); -lean_ctor_set(x_237, 1, x_236); -x_238 = lean_array_push(x_146, x_237); -x_239 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -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_9707____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_9707____closed__15; -x_248 = lean_array_push(x_247, x_246); -x_249 = l_myMacro____x40_Init_Notation___hyg_9707____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_15292____closed__5; -x_252 = lean_array_push(x_251, x_250); -x_253 = lean_array_push(x_252, x_167); -x_254 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____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; +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_235); +x_238 = lean_array_push(x_217, x_237); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_152); +lean_ctor_set(x_239, 1, x_238); +x_240 = lean_array_push(x_167, x_239); +x_241 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set(x_242, 1, x_240); +x_243 = lean_array_push(x_214, x_242); +x_244 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set(x_245, 1, x_243); +x_246 = lean_array_push(x_210, x_245); +x_247 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_248, 0, x_247); +lean_ctor_set(x_248, 1, x_246); +x_249 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_250 = lean_array_push(x_249, x_248); +x_251 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_251); +lean_ctor_set(x_252, 1, x_250); +x_253 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_254 = lean_array_push(x_253, x_252); +x_255 = lean_array_push(x_254, x_169); +x_256 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_255); +x_258 = lean_array_push(x_201, x_257); +x_259 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_259); +lean_ctor_set(x_260, 1, x_258); +x_261 = lean_array_push(x_176, x_260); +x_262 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_263, 0, x_262); +lean_ctor_set(x_263, 1, x_261); +x_264 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set(x_264, 1, x_140); +return x_264; } } else { -uint8_t x_263; +uint8_t x_265; lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_263 = !lean_is_exclusive(x_7); -if (x_263 == 0) +x_265 = !lean_is_exclusive(x_7); +if (x_265 == 0) { return x_7; } else { -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_object* x_266; lean_object* x_267; lean_object* x_268; +x_266 = lean_ctor_get(x_7, 0); +x_267 = lean_ctor_get(x_7, 1); +lean_inc(x_267); +lean_inc(x_266); lean_dec(x_7); -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; +x_268 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_268, 0, x_266); +lean_ctor_set(x_268, 1, x_267); +return x_268; } } } @@ -16598,13 +16681,13 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Command_expandMixfix_withAttrKind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Elab_Command_expandMixfix_withAttrKindGlobal(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; x_5 = lean_unsigned_to_nat(0u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); -x_7 = l_Lean_mkOptionalNode___closed__1; +x_7 = l_Lean_Elab_mkAttrKindGlobal; x_8 = l_Lean_Syntax_setArg(x_1, x_5, x_7); x_9 = lean_apply_3(x_2, x_8, x_3, x_4); if (lean_obj_tag(x_9) == 0) @@ -16753,9 +16836,9 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _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_Command_expandMixfix___lambda__1___closed__9; -x_3 = lean_alloc_ctor(2, 2, 0); +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; @@ -16765,7 +16848,7 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_1 = l_Array_empty___closed__1; x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -16774,18 +16857,22 @@ return x_3; static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__13() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("identPrec"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__9; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__13; -x_3 = lean_name_mk_string(x_1, x_2); +x_3 = lean_array_push(x_1, x_2); return x_3; } } @@ -16793,26 +16880,44 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _start: { lean_object* x_1; -x_1 = lean_mk_string("arg"); +x_1 = lean_mk_string("identPrec"); return x_1; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__15; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__15; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("arg"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__19() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__15; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; +x_3 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__18; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -16820,30 +16925,12 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__15; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__19() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("infixr"); -return x_1; -} -} static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__19; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -16852,7 +16939,7 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _start: { lean_object* x_1; -x_1 = lean_mk_string("infixl"); +x_1 = lean_mk_string("infixr"); return x_1; } } @@ -16870,26 +16957,44 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _start: { lean_object* x_1; -x_1 = lean_mk_string("lhs"); +x_1 = lean_mk_string("infixl"); return x_1; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__24() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__23; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__23; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("lhs"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__27() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__23; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__24; +x_3 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -16897,30 +17002,12 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__23; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__27() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("infix"); -return x_1; -} -} static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__27; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -16928,22 +17015,18 @@ return x_3; static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__29() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__21; -x_3 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("infix"); +return x_1; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__2; x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__29; -x_3 = lean_array_push(x_1, x_2); +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -16951,9 +17034,9 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__22; -x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__30; -x_3 = lean_alloc_ctor(1, 2, 0); +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__23; +x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; @@ -16963,12 +17046,34 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_1 = l_Array_empty___closed__1; x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__31; x_3 = lean_array_push(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__24; +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__32; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__33; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -17012,7 +17117,7 @@ else lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; x_14 = lean_unsigned_to_nat(0u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); -x_16 = l_Lean_nullKind___closed__2; +x_16 = l_Lean_Elab_mkAttrKindGlobal___closed__2; lean_inc(x_15); x_17 = l_Lean_Syntax_isOfKind(x_15, x_16); if (x_17 == 0) @@ -17029,105 +17134,107 @@ return x_19; } else { -lean_object* x_20; lean_object* x_21; uint8_t x_22; +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArgs(x_15); -lean_dec(x_15); x_21 = lean_array_get_size(x_20); lean_dec(x_20); -x_22 = lean_nat_dec_eq(x_21, x_14); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_dec_eq(x_21, x_22); lean_dec(x_21); -if (x_22 == 0) +if (x_23 == 0) { -lean_object* x_23; lean_object* x_24; +lean_object* x_24; lean_object* x_25; +lean_dec(x_15); lean_dec(x_2); lean_dec(x_1); -x_23 = lean_box(1); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_3); -return x_24; +x_24 = lean_box(1); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_3); +return x_25; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_298; lean_object* x_621; uint8_t x_622; -x_25 = lean_unsigned_to_nat(1u); -x_26 = l_Lean_Syntax_getArg(x_1, x_25); -x_621 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__28; +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = l_Lean_Syntax_getArg(x_15, x_14); +lean_dec(x_15); +x_27 = l_Lean_nullKind___closed__2; lean_inc(x_26); -x_622 = l_Lean_Syntax_isOfKind(x_26, x_621); -if (x_622 == 0) +x_28 = l_Lean_Syntax_isOfKind(x_26, x_27); +if (x_28 == 0) { -lean_object* x_623; -x_623 = lean_box(0); -x_298 = x_623; -goto block_620; -} -else -{ -lean_object* x_624; lean_object* x_625; uint8_t x_626; -x_624 = l_Lean_Syntax_getArgs(x_26); -x_625 = lean_array_get_size(x_624); -lean_dec(x_624); -x_626 = lean_nat_dec_eq(x_625, x_25); -lean_dec(x_625); -if (x_626 == 0) -{ -lean_object* x_627; -x_627 = lean_box(0); -x_298 = x_627; -goto block_620; -} -else -{ -lean_object* x_628; lean_object* x_629; uint8_t x_630; +lean_object* x_29; lean_object* x_30; lean_dec(x_26); lean_dec(x_2); -x_628 = lean_unsigned_to_nat(2u); -x_629 = l_Lean_Syntax_getArg(x_1, x_628); -lean_inc(x_629); -x_630 = l_Lean_Syntax_isOfKind(x_629, x_16); -if (x_630 == 0) -{ -lean_object* x_631; lean_object* x_632; -lean_dec(x_629); lean_dec(x_1); -x_631 = lean_box(1); -x_632 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_632, 0, x_631); -lean_ctor_set(x_632, 1, x_3); -return x_632; +x_29 = lean_box(1); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_3); +return x_30; } else { -lean_object* x_633; lean_object* x_634; uint8_t x_635; -x_633 = l_Lean_Syntax_getArgs(x_629); -x_634 = lean_array_get_size(x_633); -lean_dec(x_633); -x_635 = lean_nat_dec_eq(x_634, x_25); -lean_dec(x_634); -if (x_635 == 0) +lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_31 = l_Lean_Syntax_getArgs(x_26); +lean_dec(x_26); +x_32 = lean_array_get_size(x_31); +lean_dec(x_31); +x_33 = lean_nat_dec_eq(x_32, x_14); +lean_dec(x_32); +if (x_33 == 0) { -lean_object* x_636; lean_object* x_637; -lean_dec(x_629); +lean_object* x_34; lean_object* x_35; +lean_dec(x_2); lean_dec(x_1); -x_636 = lean_box(1); -x_637 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_637, 0, x_636); -lean_ctor_set(x_637, 1, x_3); -return x_637; +x_34 = lean_box(1); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_3); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_308; lean_object* x_631; uint8_t x_632; +x_36 = l_Lean_Syntax_getArg(x_1, x_22); +x_631 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__30; +lean_inc(x_36); +x_632 = l_Lean_Syntax_isOfKind(x_36, x_631); +if (x_632 == 0) +{ +lean_object* x_633; +x_633 = lean_box(0); +x_308 = x_633; +goto block_630; +} +else +{ +lean_object* x_634; lean_object* x_635; uint8_t x_636; +x_634 = l_Lean_Syntax_getArgs(x_36); +x_635 = lean_array_get_size(x_634); +lean_dec(x_634); +x_636 = lean_nat_dec_eq(x_635, x_22); +lean_dec(x_635); +if (x_636 == 0) +{ +lean_object* x_637; +x_637 = lean_box(0); +x_308 = x_637; +goto block_630; } else { lean_object* x_638; lean_object* x_639; uint8_t x_640; -x_638 = l_Lean_Syntax_getArg(x_629, x_14); -lean_dec(x_629); -x_639 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; -lean_inc(x_638); -x_640 = l_Lean_Syntax_isOfKind(x_638, x_639); +lean_dec(x_36); +lean_dec(x_2); +x_638 = lean_unsigned_to_nat(2u); +x_639 = l_Lean_Syntax_getArg(x_1, x_638); +lean_inc(x_639); +x_640 = l_Lean_Syntax_isOfKind(x_639, x_27); if (x_640 == 0) { lean_object* x_641; lean_object* x_642; -lean_dec(x_638); +lean_dec(x_639); lean_dec(x_1); x_641 = lean_box(1); x_642 = lean_alloc_ctor(1, 2, 0); @@ -17138,15 +17245,15 @@ return x_642; else { lean_object* x_643; lean_object* x_644; uint8_t x_645; -x_643 = l_Lean_Syntax_getArgs(x_638); +x_643 = l_Lean_Syntax_getArgs(x_639); x_644 = lean_array_get_size(x_643); lean_dec(x_643); -x_645 = lean_nat_dec_eq(x_644, x_628); +x_645 = lean_nat_dec_eq(x_644, x_22); lean_dec(x_644); if (x_645 == 0) { lean_object* x_646; lean_object* x_647; -lean_dec(x_638); +lean_dec(x_639); lean_dec(x_1); x_646 = lean_box(1); x_647 = lean_alloc_ctor(1, 2, 0); @@ -17156,150 +17263,188 @@ return x_647; } else { -lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; uint8_t x_686; -x_648 = l_Lean_Syntax_getArg(x_638, x_25); -lean_dec(x_638); -x_649 = lean_unsigned_to_nat(3u); -x_650 = l_Lean_Syntax_getArg(x_1, x_649); -lean_inc(x_650); -x_686 = l_Lean_Syntax_isOfKind(x_650, x_16); -if (x_686 == 0) +lean_object* x_648; lean_object* x_649; uint8_t x_650; +x_648 = l_Lean_Syntax_getArg(x_639, x_14); +lean_dec(x_639); +x_649 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; +lean_inc(x_648); +x_650 = l_Lean_Syntax_isOfKind(x_648, x_649); +if (x_650 == 0) { -lean_object* x_687; -x_687 = lean_box(0); -x_651 = x_687; -goto block_685; -} -else -{ -lean_object* x_688; lean_object* x_689; uint8_t x_690; -x_688 = l_Lean_Syntax_getArgs(x_650); -x_689 = lean_array_get_size(x_688); -lean_dec(x_688); -x_690 = lean_nat_dec_eq(x_689, x_14); -lean_dec(x_689); -if (x_690 == 0) -{ -lean_object* x_691; -x_691 = lean_box(0); -x_651 = x_691; -goto block_685; -} -else -{ -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_dec(x_650); -x_692 = lean_unsigned_to_nat(4u); -x_693 = l_Lean_Syntax_getArg(x_1, x_692); -x_694 = lean_unsigned_to_nat(6u); -x_695 = l_Lean_Syntax_getArg(x_1, x_694); -lean_dec(x_1); -x_696 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_697 = lean_array_push(x_696, x_648); -x_698 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_698, 0, x_639); -lean_ctor_set(x_698, 1, x_697); -x_699 = l_Array_empty___closed__1; -x_700 = lean_array_push(x_699, x_698); -x_701 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_701, 0, x_16); -lean_ctor_set(x_701, 1, x_700); -x_702 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__32; -x_703 = lean_array_push(x_702, x_701); -x_704 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_705 = lean_array_push(x_703, x_704); -x_706 = lean_array_push(x_705, x_693); -x_707 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_708 = lean_array_push(x_706, x_707); -x_709 = lean_array_push(x_708, x_695); -x_710 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_710, 0, x_4); -lean_ctor_set(x_710, 1, x_709); -x_711 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_711, 0, x_710); -lean_ctor_set(x_711, 1, x_3); -return x_711; -} -} -block_685: -{ -uint8_t x_652; -lean_dec(x_651); -lean_inc(x_650); -x_652 = l_Lean_Syntax_isOfKind(x_650, x_16); -if (x_652 == 0) -{ -lean_object* x_653; lean_object* x_654; -lean_dec(x_650); +lean_object* x_651; lean_object* x_652; lean_dec(x_648); lean_dec(x_1); -x_653 = lean_box(1); -x_654 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_654, 0, x_653); -lean_ctor_set(x_654, 1, x_3); -return x_654; +x_651 = lean_box(1); +x_652 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_652, 0, x_651); +lean_ctor_set(x_652, 1, x_3); +return x_652; } else { -lean_object* x_655; lean_object* x_656; uint8_t x_657; -x_655 = l_Lean_Syntax_getArgs(x_650); -x_656 = lean_array_get_size(x_655); -lean_dec(x_655); -x_657 = lean_nat_dec_eq(x_656, x_649); -lean_dec(x_656); -if (x_657 == 0) +lean_object* x_653; lean_object* x_654; uint8_t x_655; +x_653 = l_Lean_Syntax_getArgs(x_648); +x_654 = lean_array_get_size(x_653); +lean_dec(x_653); +x_655 = lean_nat_dec_eq(x_654, x_638); +lean_dec(x_654); +if (x_655 == 0) { -lean_object* x_658; lean_object* x_659; -lean_dec(x_650); +lean_object* x_656; lean_object* x_657; lean_dec(x_648); lean_dec(x_1); -x_658 = lean_box(1); -x_659 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_659, 0, x_658); -lean_ctor_set(x_659, 1, x_3); -return x_659; +x_656 = lean_box(1); +x_657 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_657, 0, x_656); +lean_ctor_set(x_657, 1, x_3); +return x_657; } else { -lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; -x_660 = l_Lean_Syntax_getArg(x_650, x_25); -lean_dec(x_650); -x_661 = lean_unsigned_to_nat(4u); -x_662 = l_Lean_Syntax_getArg(x_1, x_661); -x_663 = lean_unsigned_to_nat(6u); -x_664 = l_Lean_Syntax_getArg(x_1, x_663); +lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; uint8_t x_696; +x_658 = l_Lean_Syntax_getArg(x_648, x_22); +lean_dec(x_648); +x_659 = lean_unsigned_to_nat(3u); +x_660 = l_Lean_Syntax_getArg(x_1, x_659); +lean_inc(x_660); +x_696 = l_Lean_Syntax_isOfKind(x_660, x_27); +if (x_696 == 0) +{ +lean_object* x_697; +x_697 = lean_box(0); +x_661 = x_697; +goto block_695; +} +else +{ +lean_object* x_698; lean_object* x_699; uint8_t x_700; +x_698 = l_Lean_Syntax_getArgs(x_660); +x_699 = lean_array_get_size(x_698); +lean_dec(x_698); +x_700 = lean_nat_dec_eq(x_699, x_14); +lean_dec(x_699); +if (x_700 == 0) +{ +lean_object* x_701; +x_701 = lean_box(0); +x_661 = x_701; +goto block_695; +} +else +{ +lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; +lean_dec(x_660); +x_702 = lean_unsigned_to_nat(4u); +x_703 = l_Lean_Syntax_getArg(x_1, x_702); +x_704 = lean_unsigned_to_nat(6u); +x_705 = l_Lean_Syntax_getArg(x_1, x_704); lean_dec(x_1); -x_665 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_666 = lean_array_push(x_665, x_648); -x_667 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_667, 0, x_639); -lean_ctor_set(x_667, 1, x_666); -x_668 = l_Array_empty___closed__1; -x_669 = lean_array_push(x_668, x_667); -x_670 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_670, 0, x_16); -lean_ctor_set(x_670, 1, x_669); -x_671 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__32; -x_672 = lean_array_push(x_671, x_670); -x_673 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_674 = lean_array_push(x_673, x_660); -x_675 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_676 = lean_array_push(x_674, x_675); +x_706 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_707 = lean_array_push(x_706, x_658); +x_708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_708, 0, x_649); +lean_ctor_set(x_708, 1, x_707); +x_709 = l_Array_empty___closed__1; +x_710 = lean_array_push(x_709, x_708); +x_711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_711, 0, x_27); +lean_ctor_set(x_711, 1, x_710); +x_712 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34; +x_713 = lean_array_push(x_712, x_711); +x_714 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_715 = lean_array_push(x_713, x_714); +x_716 = lean_array_push(x_715, x_703); +x_717 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_718 = lean_array_push(x_716, x_717); +x_719 = lean_array_push(x_718, x_705); +x_720 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_720, 0, x_4); +lean_ctor_set(x_720, 1, x_719); +x_721 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_721, 0, x_720); +lean_ctor_set(x_721, 1, x_3); +return x_721; +} +} +block_695: +{ +uint8_t x_662; +lean_dec(x_661); +lean_inc(x_660); +x_662 = l_Lean_Syntax_isOfKind(x_660, x_27); +if (x_662 == 0) +{ +lean_object* x_663; lean_object* x_664; +lean_dec(x_660); +lean_dec(x_658); +lean_dec(x_1); +x_663 = lean_box(1); +x_664 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_664, 0, x_663); +lean_ctor_set(x_664, 1, x_3); +return x_664; +} +else +{ +lean_object* x_665; lean_object* x_666; uint8_t x_667; +x_665 = l_Lean_Syntax_getArgs(x_660); +x_666 = lean_array_get_size(x_665); +lean_dec(x_665); +x_667 = lean_nat_dec_eq(x_666, x_659); +lean_dec(x_666); +if (x_667 == 0) +{ +lean_object* x_668; lean_object* x_669; +lean_dec(x_660); +lean_dec(x_658); +lean_dec(x_1); +x_668 = lean_box(1); +x_669 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_669, 0, x_668); +lean_ctor_set(x_669, 1, x_3); +return x_669; +} +else +{ +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; +x_670 = l_Lean_Syntax_getArg(x_660, x_22); +lean_dec(x_660); +x_671 = lean_unsigned_to_nat(4u); +x_672 = l_Lean_Syntax_getArg(x_1, x_671); +x_673 = lean_unsigned_to_nat(6u); +x_674 = l_Lean_Syntax_getArg(x_1, x_673); +lean_dec(x_1); +x_675 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_676 = lean_array_push(x_675, x_658); x_677 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_677, 0, x_16); +lean_ctor_set(x_677, 0, x_649); lean_ctor_set(x_677, 1, x_676); -x_678 = lean_array_push(x_672, x_677); -x_679 = lean_array_push(x_678, x_662); -x_680 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_681 = lean_array_push(x_679, x_680); -x_682 = lean_array_push(x_681, x_664); -x_683 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_683, 0, x_4); -lean_ctor_set(x_683, 1, x_682); -x_684 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_684, 0, x_683); -lean_ctor_set(x_684, 1, x_3); -return x_684; +x_678 = l_Array_empty___closed__1; +x_679 = lean_array_push(x_678, x_677); +x_680 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_680, 0, x_27); +lean_ctor_set(x_680, 1, x_679); +x_681 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34; +x_682 = lean_array_push(x_681, x_680); +x_683 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_684 = lean_array_push(x_683, x_670); +x_685 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_686 = lean_array_push(x_684, x_685); +x_687 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_687, 0, x_27); +lean_ctor_set(x_687, 1, x_686); +x_688 = lean_array_push(x_682, x_687); +x_689 = lean_array_push(x_688, x_672); +x_690 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_691 = lean_array_push(x_689, x_690); +x_692 = lean_array_push(x_691, x_674); +x_693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_693, 0, x_4); +lean_ctor_set(x_693, 1, x_692); +x_694 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_694, 0, x_693); +lean_ctor_set(x_694, 1, x_3); +return x_694; } } } @@ -17309,62 +17454,23 @@ return x_684; } } } -block_297: +block_307: { -lean_object* x_28; uint8_t x_29; -lean_dec(x_27); -x_28 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__4; -lean_inc(x_26); -x_29 = l_Lean_Syntax_isOfKind(x_26, x_28); -if (x_29 == 0) +lean_object* x_38; uint8_t x_39; +lean_dec(x_37); +x_38 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__4; +lean_inc(x_36); +x_39 = l_Lean_Syntax_isOfKind(x_36, x_38); +if (x_39 == 0) { -lean_object* x_30; uint8_t x_31; -x_30 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__6; -lean_inc(x_26); -x_31 = l_Lean_Syntax_isOfKind(x_26, x_30); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; -lean_dec(x_26); -lean_dec(x_2); -lean_dec(x_1); -x_32 = lean_box(1); -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_33, 1, x_3); -return x_33; -} -else -{ -lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_34 = l_Lean_Syntax_getArgs(x_26); -lean_dec(x_26); -x_35 = lean_array_get_size(x_34); -lean_dec(x_34); -x_36 = lean_nat_dec_eq(x_35, x_25); -lean_dec(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; -lean_dec(x_2); -lean_dec(x_1); -x_37 = lean_box(1); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_3); -return x_38; -} -else -{ -lean_object* x_39; lean_object* x_40; uint8_t x_41; -x_39 = lean_unsigned_to_nat(2u); -x_40 = l_Lean_Syntax_getArg(x_1, x_39); -lean_inc(x_40); -x_41 = l_Lean_Syntax_isOfKind(x_40, x_16); +lean_object* x_40; uint8_t x_41; +x_40 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__6; +lean_inc(x_36); +x_41 = l_Lean_Syntax_isOfKind(x_36, x_40); if (x_41 == 0) { lean_object* x_42; lean_object* x_43; -lean_dec(x_40); +lean_dec(x_36); lean_dec(x_2); lean_dec(x_1); x_42 = lean_box(1); @@ -17376,15 +17482,15 @@ return x_43; else { lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_44 = l_Lean_Syntax_getArgs(x_40); +x_44 = l_Lean_Syntax_getArgs(x_36); +lean_dec(x_36); x_45 = lean_array_get_size(x_44); lean_dec(x_44); -x_46 = lean_nat_dec_eq(x_45, x_25); +x_46 = lean_nat_dec_eq(x_45, x_22); lean_dec(x_45); if (x_46 == 0) { lean_object* x_47; lean_object* x_48; -lean_dec(x_40); lean_dec(x_2); lean_dec(x_1); x_47 = lean_box(1); @@ -17396,15 +17502,14 @@ return x_48; else { lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_49 = l_Lean_Syntax_getArg(x_40, x_14); -lean_dec(x_40); -x_50 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; -lean_inc(x_49); -x_51 = l_Lean_Syntax_isOfKind(x_49, x_50); +x_49 = lean_unsigned_to_nat(2u); +x_50 = l_Lean_Syntax_getArg(x_1, x_49); +lean_inc(x_50); +x_51 = l_Lean_Syntax_isOfKind(x_50, x_27); if (x_51 == 0) { lean_object* x_52; lean_object* x_53; -lean_dec(x_49); +lean_dec(x_50); lean_dec(x_2); lean_dec(x_1); x_52 = lean_box(1); @@ -17416,15 +17521,15 @@ return x_53; else { lean_object* x_54; lean_object* x_55; uint8_t x_56; -x_54 = l_Lean_Syntax_getArgs(x_49); +x_54 = l_Lean_Syntax_getArgs(x_50); x_55 = lean_array_get_size(x_54); lean_dec(x_54); -x_56 = lean_nat_dec_eq(x_55, x_39); +x_56 = lean_nat_dec_eq(x_55, x_22); lean_dec(x_55); if (x_56 == 0) { lean_object* x_57; lean_object* x_58; -lean_dec(x_49); +lean_dec(x_50); lean_dec(x_2); lean_dec(x_1); x_57 = lean_box(1); @@ -17435,288 +17540,289 @@ return x_58; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_119; -x_59 = l_Lean_Syntax_getArg(x_49, x_25); -lean_dec(x_49); -x_60 = lean_unsigned_to_nat(3u); -x_61 = l_Lean_Syntax_getArg(x_1, x_60); -lean_inc(x_61); -x_119 = l_Lean_Syntax_isOfKind(x_61, x_16); -if (x_119 == 0) +lean_object* x_59; lean_object* x_60; uint8_t x_61; +x_59 = l_Lean_Syntax_getArg(x_50, x_14); +lean_dec(x_50); +x_60 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; +lean_inc(x_59); +x_61 = l_Lean_Syntax_isOfKind(x_59, x_60); +if (x_61 == 0) { -lean_object* x_120; -x_120 = lean_box(0); -x_62 = x_120; -goto block_118; -} -else -{ -lean_object* x_121; lean_object* x_122; uint8_t x_123; -x_121 = l_Lean_Syntax_getArgs(x_61); -x_122 = lean_array_get_size(x_121); -lean_dec(x_121); -x_123 = lean_nat_dec_eq(x_122, x_14); -lean_dec(x_122); -if (x_123 == 0) -{ -lean_object* x_124; -x_124 = lean_box(0); -x_62 = x_124; -goto block_118; -} -else -{ -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_dec(x_61); -x_125 = lean_unsigned_to_nat(4u); -x_126 = l_Lean_Syntax_getArg(x_1, x_125); -x_127 = lean_unsigned_to_nat(6u); -x_128 = l_Lean_Syntax_getArg(x_1, x_127); -lean_dec(x_1); -x_129 = lean_ctor_get(x_2, 2); -lean_inc(x_129); -x_130 = lean_ctor_get(x_2, 1); -lean_inc(x_130); +lean_object* x_62; lean_object* x_63; +lean_dec(x_59); lean_dec(x_2); -x_131 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_132 = lean_array_push(x_131, x_59); -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_50); -lean_ctor_set(x_133, 1, x_132); -x_134 = l_Array_empty___closed__1; -x_135 = lean_array_push(x_134, x_133); -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_16); -lean_ctor_set(x_136, 1, x_135); -x_137 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -x_138 = lean_array_push(x_137, x_136); -x_139 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_140 = lean_array_push(x_138, x_139); -x_141 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__18; -x_142 = l_Lean_addMacroScope(x_130, x_141, x_129); -x_143 = lean_box(0); -x_144 = l_Lean_instInhabitedSourceInfo___closed__1; -x_145 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17; -x_146 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_146, 0, x_144); +lean_dec(x_1); +x_62 = lean_box(1); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_3); +return x_63; +} +else +{ +lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_64 = l_Lean_Syntax_getArgs(x_59); +x_65 = lean_array_get_size(x_64); +lean_dec(x_64); +x_66 = lean_nat_dec_eq(x_65, x_49); +lean_dec(x_65); +if (x_66 == 0) +{ +lean_object* x_67; lean_object* x_68; +lean_dec(x_59); +lean_dec(x_2); +lean_dec(x_1); +x_67 = lean_box(1); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_3); +return x_68; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_129; +x_69 = l_Lean_Syntax_getArg(x_59, x_22); +lean_dec(x_59); +x_70 = lean_unsigned_to_nat(3u); +x_71 = l_Lean_Syntax_getArg(x_1, x_70); +lean_inc(x_71); +x_129 = l_Lean_Syntax_isOfKind(x_71, x_27); +if (x_129 == 0) +{ +lean_object* x_130; +x_130 = lean_box(0); +x_72 = x_130; +goto block_128; +} +else +{ +lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_131 = l_Lean_Syntax_getArgs(x_71); +x_132 = lean_array_get_size(x_131); +lean_dec(x_131); +x_133 = lean_nat_dec_eq(x_132, x_14); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; +x_134 = lean_box(0); +x_72 = x_134; +goto block_128; +} +else +{ +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_dec(x_71); +x_135 = lean_unsigned_to_nat(4u); +x_136 = l_Lean_Syntax_getArg(x_1, x_135); +x_137 = lean_unsigned_to_nat(6u); +x_138 = l_Lean_Syntax_getArg(x_1, x_137); +lean_dec(x_1); +x_139 = lean_ctor_get(x_2, 2); +lean_inc(x_139); +x_140 = lean_ctor_get(x_2, 1); +lean_inc(x_140); +lean_dec(x_2); +x_141 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_142 = lean_array_push(x_141, x_69); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_60); +lean_ctor_set(x_143, 1, x_142); +x_144 = l_Array_empty___closed__1; +x_145 = lean_array_push(x_144, x_143); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_27); lean_ctor_set(x_146, 1, x_145); -lean_ctor_set(x_146, 2, x_142); -lean_ctor_set(x_146, 3, x_143); -x_147 = lean_array_push(x_134, x_146); -lean_inc(x_147); -x_148 = lean_array_push(x_147, x_139); -x_149 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -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_134, x_150); -x_152 = lean_array_push(x_151, x_126); -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_16); -lean_ctor_set(x_153, 1, x_152); -x_154 = lean_array_push(x_140, x_153); -x_155 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_156 = lean_array_push(x_154, x_155); -x_157 = lean_array_push(x_134, x_128); -x_158 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_158, 0, x_16); -lean_ctor_set(x_158, 1, x_147); -x_159 = lean_array_push(x_157, x_158); -x_160 = l_myMacro____x40_Init_Notation___hyg_38____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_156, x_161); -x_163 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -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_alloc_ctor(0, 2, 0); -lean_ctor_set(x_165, 0, x_164); -lean_ctor_set(x_165, 1, x_3); -return x_165; -} -} -block_118: -{ -uint8_t x_63; -lean_dec(x_62); -lean_inc(x_61); -x_63 = l_Lean_Syntax_isOfKind(x_61, x_16); -if (x_63 == 0) -{ -lean_object* x_64; lean_object* x_65; -lean_dec(x_61); -lean_dec(x_59); -lean_dec(x_2); -lean_dec(x_1); -x_64 = lean_box(1); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_3); -return x_65; -} -else -{ -lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_66 = l_Lean_Syntax_getArgs(x_61); -x_67 = lean_array_get_size(x_66); -lean_dec(x_66); -x_68 = lean_nat_dec_eq(x_67, x_60); -lean_dec(x_67); -if (x_68 == 0) -{ -lean_object* x_69; lean_object* x_70; -lean_dec(x_61); -lean_dec(x_59); -lean_dec(x_2); -lean_dec(x_1); -x_69 = lean_box(1); -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_3); -return x_70; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; 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; -x_71 = l_Lean_Syntax_getArg(x_61, x_25); -lean_dec(x_61); -x_72 = lean_unsigned_to_nat(4u); -x_73 = l_Lean_Syntax_getArg(x_1, x_72); -x_74 = lean_unsigned_to_nat(6u); -x_75 = l_Lean_Syntax_getArg(x_1, x_74); -lean_dec(x_1); -x_76 = lean_ctor_get(x_2, 2); -lean_inc(x_76); -x_77 = lean_ctor_get(x_2, 1); -lean_inc(x_77); -lean_dec(x_2); -x_78 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_79 = lean_array_push(x_78, x_59); -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_50); -lean_ctor_set(x_80, 1, x_79); -x_81 = l_Array_empty___closed__1; -x_82 = lean_array_push(x_81, x_80); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_16); -lean_ctor_set(x_83, 1, x_82); -x_84 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -x_85 = lean_array_push(x_84, x_83); -x_86 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_87 = lean_array_push(x_86, x_71); -x_88 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_89 = lean_array_push(x_87, x_88); -x_90 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_90, 0, x_16); -lean_ctor_set(x_90, 1, x_89); -x_91 = lean_array_push(x_85, x_90); -x_92 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__18; -x_93 = l_Lean_addMacroScope(x_77, x_92, x_76); -x_94 = lean_box(0); -x_95 = l_Lean_instInhabitedSourceInfo___closed__1; -x_96 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17; -x_97 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_97, 0, x_95); -lean_ctor_set(x_97, 1, x_96); -lean_ctor_set(x_97, 2, x_93); -lean_ctor_set(x_97, 3, x_94); -x_98 = lean_array_push(x_81, x_97); -x_99 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_98); -x_100 = lean_array_push(x_98, x_99); -x_101 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_101); -lean_ctor_set(x_102, 1, x_100); -x_103 = lean_array_push(x_81, x_102); -x_104 = lean_array_push(x_103, x_73); -x_105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_105, 0, x_16); -lean_ctor_set(x_105, 1, x_104); -x_106 = lean_array_push(x_91, x_105); -x_107 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_108 = lean_array_push(x_106, x_107); -x_109 = lean_array_push(x_81, x_75); -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_16); -lean_ctor_set(x_110, 1, x_98); -x_111 = lean_array_push(x_109, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_112); -lean_ctor_set(x_113, 1, x_111); -x_114 = lean_array_push(x_108, x_113); -x_115 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -x_116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_114); -x_117 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set(x_117, 1, x_3); -return x_117; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_166; lean_object* x_167; uint8_t x_168; -x_166 = l_Lean_Syntax_getArgs(x_26); -lean_dec(x_26); -x_167 = lean_array_get_size(x_166); -lean_dec(x_166); -x_168 = lean_nat_dec_eq(x_167, x_25); -lean_dec(x_167); -if (x_168 == 0) -{ -lean_object* x_169; lean_object* x_170; -lean_dec(x_2); -lean_dec(x_1); -x_169 = lean_box(1); -x_170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_3); -return x_170; -} -else -{ -lean_object* x_171; lean_object* x_172; uint8_t x_173; -x_171 = lean_unsigned_to_nat(2u); -x_172 = l_Lean_Syntax_getArg(x_1, x_171); -lean_inc(x_172); -x_173 = l_Lean_Syntax_isOfKind(x_172, x_16); -if (x_173 == 0) -{ -lean_object* x_174; lean_object* x_175; -lean_dec(x_172); -lean_dec(x_2); -lean_dec(x_1); -x_174 = lean_box(1); -x_175 = lean_alloc_ctor(1, 2, 0); +x_147 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +x_148 = lean_array_push(x_147, x_146); +x_149 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_150 = lean_array_push(x_148, x_149); +x_151 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__20; +x_152 = l_Lean_addMacroScope(x_140, x_151, x_139); +x_153 = lean_box(0); +x_154 = l_Lean_instInhabitedSourceInfo___closed__1; +x_155 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__19; +x_156 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_156, 1, x_155); +lean_ctor_set(x_156, 2, x_152); +lean_ctor_set(x_156, 3, x_153); +x_157 = lean_array_push(x_144, x_156); +lean_inc(x_157); +x_158 = lean_array_push(x_157, x_149); +x_159 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; +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_144, x_160); +x_162 = lean_array_push(x_161, x_136); +x_163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_163, 0, x_27); +lean_ctor_set(x_163, 1, x_162); +x_164 = lean_array_push(x_150, x_163); +x_165 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_166 = lean_array_push(x_164, x_165); +x_167 = lean_array_push(x_144, x_138); +x_168 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_168, 0, x_27); +lean_ctor_set(x_168, 1, x_157); +x_169 = lean_array_push(x_167, x_168); +x_170 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_171 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_169); +x_172 = lean_array_push(x_166, x_171); +x_173 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; +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_alloc_ctor(0, 2, 0); lean_ctor_set(x_175, 0, x_174); lean_ctor_set(x_175, 1, x_3); return x_175; } +} +block_128: +{ +uint8_t x_73; +lean_dec(x_72); +lean_inc(x_71); +x_73 = l_Lean_Syntax_isOfKind(x_71, x_27); +if (x_73 == 0) +{ +lean_object* x_74; lean_object* x_75; +lean_dec(x_71); +lean_dec(x_69); +lean_dec(x_2); +lean_dec(x_1); +x_74 = lean_box(1); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_3); +return x_75; +} +else +{ +lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_76 = l_Lean_Syntax_getArgs(x_71); +x_77 = lean_array_get_size(x_76); +lean_dec(x_76); +x_78 = lean_nat_dec_eq(x_77, x_70); +lean_dec(x_77); +if (x_78 == 0) +{ +lean_object* x_79; lean_object* x_80; +lean_dec(x_71); +lean_dec(x_69); +lean_dec(x_2); +lean_dec(x_1); +x_79 = lean_box(1); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_3); +return x_80; +} +else +{ +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; +x_81 = l_Lean_Syntax_getArg(x_71, x_22); +lean_dec(x_71); +x_82 = lean_unsigned_to_nat(4u); +x_83 = l_Lean_Syntax_getArg(x_1, x_82); +x_84 = lean_unsigned_to_nat(6u); +x_85 = l_Lean_Syntax_getArg(x_1, x_84); +lean_dec(x_1); +x_86 = lean_ctor_get(x_2, 2); +lean_inc(x_86); +x_87 = lean_ctor_get(x_2, 1); +lean_inc(x_87); +lean_dec(x_2); +x_88 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_89 = lean_array_push(x_88, x_69); +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_60); +lean_ctor_set(x_90, 1, x_89); +x_91 = l_Array_empty___closed__1; +x_92 = lean_array_push(x_91, x_90); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_27); +lean_ctor_set(x_93, 1, x_92); +x_94 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +x_95 = lean_array_push(x_94, x_93); +x_96 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_97 = lean_array_push(x_96, x_81); +x_98 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_99 = lean_array_push(x_97, x_98); +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_27); +lean_ctor_set(x_100, 1, x_99); +x_101 = lean_array_push(x_95, x_100); +x_102 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__20; +x_103 = l_Lean_addMacroScope(x_87, x_102, x_86); +x_104 = lean_box(0); +x_105 = l_Lean_instInhabitedSourceInfo___closed__1; +x_106 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__19; +x_107 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +lean_ctor_set(x_107, 2, x_103); +lean_ctor_set(x_107, 3, x_104); +x_108 = lean_array_push(x_91, x_107); +x_109 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +lean_inc(x_108); +x_110 = lean_array_push(x_108, x_109); +x_111 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_110); +x_113 = lean_array_push(x_91, x_112); +x_114 = lean_array_push(x_113, x_83); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_27); +lean_ctor_set(x_115, 1, x_114); +x_116 = lean_array_push(x_101, x_115); +x_117 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_118 = lean_array_push(x_116, x_117); +x_119 = lean_array_push(x_91, x_85); +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_27); +lean_ctor_set(x_120, 1, x_108); +x_121 = lean_array_push(x_119, x_120); +x_122 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_122); +lean_ctor_set(x_123, 1, x_121); +x_124 = lean_array_push(x_118, x_123); +x_125 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; +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_alloc_ctor(0, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_3); +return x_127; +} +} +} +} +} +} +} +} +} +} else { lean_object* x_176; lean_object* x_177; uint8_t x_178; -x_176 = l_Lean_Syntax_getArgs(x_172); +x_176 = l_Lean_Syntax_getArgs(x_36); +lean_dec(x_36); x_177 = lean_array_get_size(x_176); lean_dec(x_176); -x_178 = lean_nat_dec_eq(x_177, x_25); +x_178 = lean_nat_dec_eq(x_177, x_22); lean_dec(x_177); if (x_178 == 0) { lean_object* x_179; lean_object* x_180; -lean_dec(x_172); lean_dec(x_2); lean_dec(x_1); x_179 = lean_box(1); @@ -17728,15 +17834,14 @@ return x_180; else { lean_object* x_181; lean_object* x_182; uint8_t x_183; -x_181 = l_Lean_Syntax_getArg(x_172, x_14); -lean_dec(x_172); -x_182 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; -lean_inc(x_181); -x_183 = l_Lean_Syntax_isOfKind(x_181, x_182); +x_181 = lean_unsigned_to_nat(2u); +x_182 = l_Lean_Syntax_getArg(x_1, x_181); +lean_inc(x_182); +x_183 = l_Lean_Syntax_isOfKind(x_182, x_27); if (x_183 == 0) { lean_object* x_184; lean_object* x_185; -lean_dec(x_181); +lean_dec(x_182); lean_dec(x_2); lean_dec(x_1); x_184 = lean_box(1); @@ -17748,15 +17853,15 @@ return x_185; else { lean_object* x_186; lean_object* x_187; uint8_t x_188; -x_186 = l_Lean_Syntax_getArgs(x_181); +x_186 = l_Lean_Syntax_getArgs(x_182); x_187 = lean_array_get_size(x_186); lean_dec(x_186); -x_188 = lean_nat_dec_eq(x_187, x_171); +x_188 = lean_nat_dec_eq(x_187, x_22); lean_dec(x_187); if (x_188 == 0) { lean_object* x_189; lean_object* x_190; -lean_dec(x_181); +lean_dec(x_182); lean_dec(x_2); lean_dec(x_1); x_189 = lean_box(1); @@ -17767,228 +17872,268 @@ return x_190; } else { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_250; -x_191 = l_Lean_Syntax_getArg(x_181, x_25); -lean_dec(x_181); -x_192 = lean_unsigned_to_nat(3u); -x_193 = l_Lean_Syntax_getArg(x_1, x_192); -lean_inc(x_193); -x_250 = l_Lean_Syntax_isOfKind(x_193, x_16); -if (x_250 == 0) +lean_object* x_191; lean_object* x_192; uint8_t x_193; +x_191 = l_Lean_Syntax_getArg(x_182, x_14); +lean_dec(x_182); +x_192 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; +lean_inc(x_191); +x_193 = l_Lean_Syntax_isOfKind(x_191, x_192); +if (x_193 == 0) { -lean_object* x_251; -x_251 = lean_box(0); -x_194 = x_251; -goto block_249; -} -else -{ -lean_object* x_252; lean_object* x_253; uint8_t x_254; -x_252 = l_Lean_Syntax_getArgs(x_193); -x_253 = lean_array_get_size(x_252); -lean_dec(x_252); -x_254 = lean_nat_dec_eq(x_253, x_14); -lean_dec(x_253); -if (x_254 == 0) -{ -lean_object* x_255; -x_255 = lean_box(0); -x_194 = x_255; -goto block_249; -} -else -{ -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_dec(x_193); -x_256 = lean_unsigned_to_nat(4u); -x_257 = l_Lean_Syntax_getArg(x_1, x_256); -x_258 = lean_unsigned_to_nat(6u); -x_259 = l_Lean_Syntax_getArg(x_1, x_258); -lean_dec(x_1); -x_260 = lean_ctor_get(x_2, 2); -lean_inc(x_260); -x_261 = lean_ctor_get(x_2, 1); -lean_inc(x_261); +lean_object* x_194; lean_object* x_195; +lean_dec(x_191); lean_dec(x_2); -x_262 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_263 = lean_array_push(x_262, x_191); -x_264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_264, 0, x_182); -lean_ctor_set(x_264, 1, x_263); -x_265 = l_Array_empty___closed__1; -x_266 = lean_array_push(x_265, x_264); -x_267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_267, 0, x_16); -lean_ctor_set(x_267, 1, x_266); -x_268 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -lean_inc(x_267); -x_269 = lean_array_push(x_268, x_267); -x_270 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_271 = lean_array_push(x_269, x_270); -x_272 = lean_array_push(x_265, x_257); -x_273 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__18; -x_274 = l_Lean_addMacroScope(x_261, x_273, x_260); -x_275 = lean_box(0); -x_276 = l_Lean_instInhabitedSourceInfo___closed__1; -x_277 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17; -x_278 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_278, 0, x_276); -lean_ctor_set(x_278, 1, x_277); -lean_ctor_set(x_278, 2, x_274); -lean_ctor_set(x_278, 3, x_275); -x_279 = lean_array_push(x_265, x_278); -lean_inc(x_279); -x_280 = lean_array_push(x_279, x_267); -x_281 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set(x_282, 1, x_280); -x_283 = lean_array_push(x_272, x_282); -x_284 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_284, 0, x_16); -lean_ctor_set(x_284, 1, x_283); -x_285 = lean_array_push(x_271, x_284); -x_286 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_287 = lean_array_push(x_285, x_286); -x_288 = lean_array_push(x_265, x_259); -x_289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_289, 0, x_16); -lean_ctor_set(x_289, 1, x_279); -x_290 = lean_array_push(x_288, x_289); -x_291 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +lean_dec(x_1); +x_194 = lean_box(1); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_3); +return x_195; +} +else +{ +lean_object* x_196; lean_object* x_197; uint8_t x_198; +x_196 = l_Lean_Syntax_getArgs(x_191); +x_197 = lean_array_get_size(x_196); +lean_dec(x_196); +x_198 = lean_nat_dec_eq(x_197, x_181); +lean_dec(x_197); +if (x_198 == 0) +{ +lean_object* x_199; lean_object* x_200; +lean_dec(x_191); +lean_dec(x_2); +lean_dec(x_1); +x_199 = lean_box(1); +x_200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_200, 0, x_199); +lean_ctor_set(x_200, 1, x_3); +return x_200; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_260; +x_201 = l_Lean_Syntax_getArg(x_191, x_22); +lean_dec(x_191); +x_202 = lean_unsigned_to_nat(3u); +x_203 = l_Lean_Syntax_getArg(x_1, x_202); +lean_inc(x_203); +x_260 = l_Lean_Syntax_isOfKind(x_203, x_27); +if (x_260 == 0) +{ +lean_object* x_261; +x_261 = lean_box(0); +x_204 = x_261; +goto block_259; +} +else +{ +lean_object* x_262; lean_object* x_263; uint8_t x_264; +x_262 = l_Lean_Syntax_getArgs(x_203); +x_263 = lean_array_get_size(x_262); +lean_dec(x_262); +x_264 = lean_nat_dec_eq(x_263, x_14); +lean_dec(x_263); +if (x_264 == 0) +{ +lean_object* x_265; +x_265 = lean_box(0); +x_204 = x_265; +goto block_259; +} +else +{ +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_dec(x_203); +x_266 = lean_unsigned_to_nat(4u); +x_267 = l_Lean_Syntax_getArg(x_1, x_266); +x_268 = lean_unsigned_to_nat(6u); +x_269 = l_Lean_Syntax_getArg(x_1, x_268); +lean_dec(x_1); +x_270 = lean_ctor_get(x_2, 2); +lean_inc(x_270); +x_271 = lean_ctor_get(x_2, 1); +lean_inc(x_271); +lean_dec(x_2); +x_272 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_273 = lean_array_push(x_272, x_201); +x_274 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_274, 0, x_192); +lean_ctor_set(x_274, 1, x_273); +x_275 = l_Array_empty___closed__1; +x_276 = lean_array_push(x_275, x_274); +x_277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_277, 0, x_27); +lean_ctor_set(x_277, 1, x_276); +x_278 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +lean_inc(x_277); +x_279 = lean_array_push(x_278, x_277); +x_280 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_281 = lean_array_push(x_279, x_280); +x_282 = lean_array_push(x_275, x_267); +x_283 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__20; +x_284 = l_Lean_addMacroScope(x_271, x_283, x_270); +x_285 = lean_box(0); +x_286 = l_Lean_instInhabitedSourceInfo___closed__1; +x_287 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__19; +x_288 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_288, 0, x_286); +lean_ctor_set(x_288, 1, x_287); +lean_ctor_set(x_288, 2, x_284); +lean_ctor_set(x_288, 3, x_285); +x_289 = lean_array_push(x_275, x_288); +lean_inc(x_289); +x_290 = lean_array_push(x_289, x_277); +x_291 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; x_292 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_292, 0, x_291); lean_ctor_set(x_292, 1, x_290); -x_293 = lean_array_push(x_287, x_292); -x_294 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -x_295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_295, 0, x_294); -lean_ctor_set(x_295, 1, x_293); -x_296 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_296, 0, x_295); -lean_ctor_set(x_296, 1, x_3); -return x_296; +x_293 = lean_array_push(x_282, x_292); +x_294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_294, 0, x_27); +lean_ctor_set(x_294, 1, x_293); +x_295 = lean_array_push(x_281, x_294); +x_296 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_297 = lean_array_push(x_295, x_296); +x_298 = lean_array_push(x_275, x_269); +x_299 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_299, 0, x_27); +lean_ctor_set(x_299, 1, x_289); +x_300 = lean_array_push(x_298, x_299); +x_301 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_302, 0, x_301); +lean_ctor_set(x_302, 1, x_300); +x_303 = lean_array_push(x_297, x_302); +x_304 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; +x_305 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_305, 0, x_304); +lean_ctor_set(x_305, 1, x_303); +x_306 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_306, 0, x_305); +lean_ctor_set(x_306, 1, x_3); +return x_306; } } -block_249: +block_259: { -uint8_t x_195; -lean_dec(x_194); -lean_inc(x_193); -x_195 = l_Lean_Syntax_isOfKind(x_193, x_16); -if (x_195 == 0) +uint8_t x_205; +lean_dec(x_204); +lean_inc(x_203); +x_205 = l_Lean_Syntax_isOfKind(x_203, x_27); +if (x_205 == 0) { -lean_object* x_196; lean_object* x_197; -lean_dec(x_193); -lean_dec(x_191); +lean_object* x_206; lean_object* x_207; +lean_dec(x_203); +lean_dec(x_201); lean_dec(x_2); lean_dec(x_1); -x_196 = lean_box(1); -x_197 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_197, 0, x_196); -lean_ctor_set(x_197, 1, x_3); -return x_197; +x_206 = lean_box(1); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_3); +return x_207; } else { -lean_object* x_198; lean_object* x_199; uint8_t x_200; -x_198 = l_Lean_Syntax_getArgs(x_193); -x_199 = lean_array_get_size(x_198); -lean_dec(x_198); -x_200 = lean_nat_dec_eq(x_199, x_192); -lean_dec(x_199); -if (x_200 == 0) +lean_object* x_208; lean_object* x_209; uint8_t x_210; +x_208 = l_Lean_Syntax_getArgs(x_203); +x_209 = lean_array_get_size(x_208); +lean_dec(x_208); +x_210 = lean_nat_dec_eq(x_209, x_202); +lean_dec(x_209); +if (x_210 == 0) { -lean_object* x_201; lean_object* x_202; -lean_dec(x_193); -lean_dec(x_191); +lean_object* x_211; lean_object* x_212; +lean_dec(x_203); +lean_dec(x_201); lean_dec(x_2); lean_dec(x_1); -x_201 = lean_box(1); -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_201); -lean_ctor_set(x_202, 1, x_3); -return x_202; -} -else -{ -lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_203 = l_Lean_Syntax_getArg(x_193, x_25); -lean_dec(x_193); -x_204 = lean_unsigned_to_nat(4u); -x_205 = l_Lean_Syntax_getArg(x_1, x_204); -x_206 = lean_unsigned_to_nat(6u); -x_207 = l_Lean_Syntax_getArg(x_1, x_206); -lean_dec(x_1); -x_208 = lean_ctor_get(x_2, 2); -lean_inc(x_208); -x_209 = lean_ctor_get(x_2, 1); -lean_inc(x_209); -lean_dec(x_2); -x_210 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_211 = lean_array_push(x_210, x_191); +x_211 = lean_box(1); x_212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_212, 0, x_182); -lean_ctor_set(x_212, 1, x_211); -x_213 = l_Array_empty___closed__1; -x_214 = lean_array_push(x_213, x_212); -x_215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_215, 0, x_16); -lean_ctor_set(x_215, 1, x_214); -x_216 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -lean_inc(x_215); -x_217 = lean_array_push(x_216, x_215); -x_218 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_219 = lean_array_push(x_218, x_203); -x_220 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_221 = lean_array_push(x_219, x_220); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_3); +return x_212; +} +else +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_213 = l_Lean_Syntax_getArg(x_203, x_22); +lean_dec(x_203); +x_214 = lean_unsigned_to_nat(4u); +x_215 = l_Lean_Syntax_getArg(x_1, x_214); +x_216 = lean_unsigned_to_nat(6u); +x_217 = l_Lean_Syntax_getArg(x_1, x_216); +lean_dec(x_1); +x_218 = lean_ctor_get(x_2, 2); +lean_inc(x_218); +x_219 = lean_ctor_get(x_2, 1); +lean_inc(x_219); +lean_dec(x_2); +x_220 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_221 = lean_array_push(x_220, x_201); x_222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_222, 0, x_16); +lean_ctor_set(x_222, 0, x_192); lean_ctor_set(x_222, 1, x_221); -x_223 = lean_array_push(x_217, x_222); -x_224 = lean_array_push(x_213, x_205); -x_225 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__18; -x_226 = l_Lean_addMacroScope(x_209, x_225, x_208); -x_227 = lean_box(0); -x_228 = l_Lean_instInhabitedSourceInfo___closed__1; -x_229 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__17; -x_230 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_230, 0, x_228); -lean_ctor_set(x_230, 1, x_229); -lean_ctor_set(x_230, 2, x_226); -lean_ctor_set(x_230, 3, x_227); -x_231 = lean_array_push(x_213, x_230); -lean_inc(x_231); -x_232 = lean_array_push(x_231, x_215); -x_233 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -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_224, x_234); -x_236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_236, 0, x_16); -lean_ctor_set(x_236, 1, x_235); -x_237 = lean_array_push(x_223, x_236); -x_238 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_239 = lean_array_push(x_237, x_238); -x_240 = lean_array_push(x_213, x_207); -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_16); -lean_ctor_set(x_241, 1, x_231); -x_242 = lean_array_push(x_240, x_241); -x_243 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_223 = l_Array_empty___closed__1; +x_224 = lean_array_push(x_223, x_222); +x_225 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_225, 0, x_27); +lean_ctor_set(x_225, 1, x_224); +x_226 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +lean_inc(x_225); +x_227 = lean_array_push(x_226, x_225); +x_228 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_229 = lean_array_push(x_228, x_213); +x_230 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_231 = lean_array_push(x_229, x_230); +x_232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_232, 0, x_27); +lean_ctor_set(x_232, 1, x_231); +x_233 = lean_array_push(x_227, x_232); +x_234 = lean_array_push(x_223, x_215); +x_235 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__20; +x_236 = l_Lean_addMacroScope(x_219, x_235, x_218); +x_237 = lean_box(0); +x_238 = l_Lean_instInhabitedSourceInfo___closed__1; +x_239 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__19; +x_240 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_240, 0, x_238); +lean_ctor_set(x_240, 1, x_239); +lean_ctor_set(x_240, 2, x_236); +lean_ctor_set(x_240, 3, x_237); +x_241 = lean_array_push(x_223, x_240); +lean_inc(x_241); +x_242 = lean_array_push(x_241, x_225); +x_243 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; x_244 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_244, 0, x_243); lean_ctor_set(x_244, 1, x_242); -x_245 = lean_array_push(x_239, x_244); -x_246 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -x_247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_247, 0, x_246); -lean_ctor_set(x_247, 1, x_245); -x_248 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_248, 0, x_247); -lean_ctor_set(x_248, 1, x_3); -return x_248; +x_245 = lean_array_push(x_234, x_244); +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_27); +lean_ctor_set(x_246, 1, x_245); +x_247 = lean_array_push(x_233, x_246); +x_248 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_249 = lean_array_push(x_247, x_248); +x_250 = lean_array_push(x_223, x_217); +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_27); +lean_ctor_set(x_251, 1, x_241); +x_252 = lean_array_push(x_250, x_251); +x_253 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_249, x_254); +x_256 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; +x_257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_255); +x_258 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_258, 0, x_257); +lean_ctor_set(x_258, 1, x_3); +return x_258; } } } @@ -17999,93 +18144,53 @@ return x_248; } } } -block_620: +block_630: { -lean_object* x_299; uint8_t x_300; -lean_dec(x_298); -x_299 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__20; -lean_inc(x_26); -x_300 = l_Lean_Syntax_isOfKind(x_26, x_299); -if (x_300 == 0) -{ -lean_object* x_301; uint8_t x_302; -x_301 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__22; -lean_inc(x_26); -x_302 = l_Lean_Syntax_isOfKind(x_26, x_301); -if (x_302 == 0) -{ -lean_object* x_303; -x_303 = lean_box(0); -x_27 = x_303; -goto block_297; -} -else -{ -lean_object* x_304; lean_object* x_305; uint8_t x_306; -x_304 = l_Lean_Syntax_getArgs(x_26); -x_305 = lean_array_get_size(x_304); -lean_dec(x_304); -x_306 = lean_nat_dec_eq(x_305, x_25); -lean_dec(x_305); -if (x_306 == 0) -{ -lean_object* x_307; -x_307 = lean_box(0); -x_27 = x_307; -goto block_297; -} -else -{ -lean_object* x_308; lean_object* x_309; uint8_t x_310; -lean_dec(x_26); -x_308 = lean_unsigned_to_nat(2u); -x_309 = l_Lean_Syntax_getArg(x_1, x_308); -lean_inc(x_309); -x_310 = l_Lean_Syntax_isOfKind(x_309, x_16); +lean_object* x_309; uint8_t x_310; +lean_dec(x_308); +x_309 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__22; +lean_inc(x_36); +x_310 = l_Lean_Syntax_isOfKind(x_36, x_309); if (x_310 == 0) { -lean_object* x_311; lean_object* x_312; -lean_dec(x_309); -lean_dec(x_2); -lean_dec(x_1); -x_311 = lean_box(1); -x_312 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_312, 0, x_311); -lean_ctor_set(x_312, 1, x_3); -return x_312; +lean_object* x_311; uint8_t x_312; +x_311 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__24; +lean_inc(x_36); +x_312 = l_Lean_Syntax_isOfKind(x_36, x_311); +if (x_312 == 0) +{ +lean_object* x_313; +x_313 = lean_box(0); +x_37 = x_313; +goto block_307; } else { -lean_object* x_313; lean_object* x_314; uint8_t x_315; -x_313 = l_Lean_Syntax_getArgs(x_309); -x_314 = lean_array_get_size(x_313); -lean_dec(x_313); -x_315 = lean_nat_dec_eq(x_314, x_25); +lean_object* x_314; lean_object* x_315; uint8_t x_316; +x_314 = l_Lean_Syntax_getArgs(x_36); +x_315 = lean_array_get_size(x_314); lean_dec(x_314); -if (x_315 == 0) +x_316 = lean_nat_dec_eq(x_315, x_22); +lean_dec(x_315); +if (x_316 == 0) { -lean_object* x_316; lean_object* x_317; -lean_dec(x_309); -lean_dec(x_2); -lean_dec(x_1); -x_316 = lean_box(1); -x_317 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_317, 0, x_316); -lean_ctor_set(x_317, 1, x_3); -return x_317; +lean_object* x_317; +x_317 = lean_box(0); +x_37 = x_317; +goto block_307; } else { lean_object* x_318; lean_object* x_319; uint8_t x_320; -x_318 = l_Lean_Syntax_getArg(x_309, x_14); -lean_dec(x_309); -x_319 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; -lean_inc(x_318); -x_320 = l_Lean_Syntax_isOfKind(x_318, x_319); +lean_dec(x_36); +x_318 = lean_unsigned_to_nat(2u); +x_319 = l_Lean_Syntax_getArg(x_1, x_318); +lean_inc(x_319); +x_320 = l_Lean_Syntax_isOfKind(x_319, x_27); if (x_320 == 0) { lean_object* x_321; lean_object* x_322; -lean_dec(x_318); +lean_dec(x_319); lean_dec(x_2); lean_dec(x_1); x_321 = lean_box(1); @@ -18097,15 +18202,15 @@ return x_322; else { lean_object* x_323; lean_object* x_324; uint8_t x_325; -x_323 = l_Lean_Syntax_getArgs(x_318); +x_323 = l_Lean_Syntax_getArgs(x_319); x_324 = lean_array_get_size(x_323); lean_dec(x_323); -x_325 = lean_nat_dec_eq(x_324, x_308); +x_325 = lean_nat_dec_eq(x_324, x_22); lean_dec(x_324); if (x_325 == 0) { lean_object* x_326; lean_object* x_327; -lean_dec(x_318); +lean_dec(x_319); lean_dec(x_2); lean_dec(x_1); x_326 = lean_box(1); @@ -18116,368 +18221,368 @@ return x_327; } else { -lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; uint8_t x_406; -x_328 = l_Lean_Syntax_getArg(x_318, x_25); -lean_dec(x_318); -x_329 = lean_unsigned_to_nat(3u); -x_330 = l_Lean_Syntax_getArg(x_1, x_329); -lean_inc(x_330); -x_406 = l_Lean_Syntax_isOfKind(x_330, x_16); -if (x_406 == 0) +lean_object* x_328; lean_object* x_329; uint8_t x_330; +x_328 = l_Lean_Syntax_getArg(x_319, x_14); +lean_dec(x_319); +x_329 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; +lean_inc(x_328); +x_330 = l_Lean_Syntax_isOfKind(x_328, x_329); +if (x_330 == 0) { -lean_object* x_407; -x_407 = lean_box(0); -x_331 = x_407; -goto block_405; -} -else -{ -lean_object* x_408; lean_object* x_409; uint8_t x_410; -x_408 = l_Lean_Syntax_getArgs(x_330); -x_409 = lean_array_get_size(x_408); -lean_dec(x_408); -x_410 = lean_nat_dec_eq(x_409, x_14); -lean_dec(x_409); -if (x_410 == 0) -{ -lean_object* x_411; -x_411 = lean_box(0); -x_331 = x_411; -goto block_405; -} -else -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; 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_dec(x_330); -x_412 = lean_unsigned_to_nat(4u); -x_413 = l_Lean_Syntax_getArg(x_1, x_412); -x_414 = lean_unsigned_to_nat(6u); -x_415 = l_Lean_Syntax_getArg(x_1, x_414); -lean_dec(x_1); -x_416 = l_Lean_Syntax_toNat(x_328); -x_417 = lean_nat_add(x_416, x_25); -lean_dec(x_416); -x_418 = l_Nat_repr(x_417); -x_419 = l_Lean_numLitKind; -x_420 = l_Lean_instInhabitedSourceInfo___closed__1; -x_421 = l_Lean_Syntax_mkLit(x_419, x_418, x_420); -x_422 = lean_ctor_get(x_2, 2); -lean_inc(x_422); -x_423 = lean_ctor_get(x_2, 1); -lean_inc(x_423); +lean_object* x_331; lean_object* x_332; +lean_dec(x_328); lean_dec(x_2); -x_424 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_425 = lean_array_push(x_424, x_328); -x_426 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_426, 0, x_319); -lean_ctor_set(x_426, 1, x_425); -x_427 = l_Array_empty___closed__1; -x_428 = lean_array_push(x_427, x_426); -x_429 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_429, 0, x_16); -lean_ctor_set(x_429, 1, x_428); -x_430 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -x_431 = lean_array_push(x_430, x_429); -x_432 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_433 = lean_array_push(x_431, x_432); -x_434 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26; -lean_inc(x_422); -lean_inc(x_423); -x_435 = l_Lean_addMacroScope(x_423, x_434, x_422); -x_436 = lean_box(0); -x_437 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25; -x_438 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_438, 0, x_420); -lean_ctor_set(x_438, 1, x_437); -lean_ctor_set(x_438, 2, x_435); -lean_ctor_set(x_438, 3, x_436); -x_439 = lean_array_push(x_427, x_438); -lean_inc(x_439); -x_440 = lean_array_push(x_439, x_432); -x_441 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -x_442 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_442, 0, x_441); -lean_ctor_set(x_442, 1, x_440); -x_443 = lean_array_push(x_427, x_442); -x_444 = lean_array_push(x_443, x_413); -x_445 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_446 = l_Lean_addMacroScope(x_423, x_445, x_422); -x_447 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +lean_dec(x_1); +x_331 = lean_box(1); +x_332 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_332, 0, x_331); +lean_ctor_set(x_332, 1, x_3); +return x_332; +} +else +{ +lean_object* x_333; lean_object* x_334; uint8_t x_335; +x_333 = l_Lean_Syntax_getArgs(x_328); +x_334 = lean_array_get_size(x_333); +lean_dec(x_333); +x_335 = lean_nat_dec_eq(x_334, x_318); +lean_dec(x_334); +if (x_335 == 0) +{ +lean_object* x_336; lean_object* x_337; +lean_dec(x_328); +lean_dec(x_2); +lean_dec(x_1); +x_336 = lean_box(1); +x_337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_337, 0, x_336); +lean_ctor_set(x_337, 1, x_3); +return x_337; +} +else +{ +lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_416; +x_338 = l_Lean_Syntax_getArg(x_328, x_22); +lean_dec(x_328); +x_339 = lean_unsigned_to_nat(3u); +x_340 = l_Lean_Syntax_getArg(x_1, x_339); +lean_inc(x_340); +x_416 = l_Lean_Syntax_isOfKind(x_340, x_27); +if (x_416 == 0) +{ +lean_object* x_417; +x_417 = lean_box(0); +x_341 = x_417; +goto block_415; +} +else +{ +lean_object* x_418; lean_object* x_419; uint8_t x_420; +x_418 = l_Lean_Syntax_getArgs(x_340); +x_419 = lean_array_get_size(x_418); +lean_dec(x_418); +x_420 = lean_nat_dec_eq(x_419, x_14); +lean_dec(x_419); +if (x_420 == 0) +{ +lean_object* x_421; +x_421 = lean_box(0); +x_341 = x_421; +goto block_415; +} +else +{ +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_dec(x_340); +x_422 = lean_unsigned_to_nat(4u); +x_423 = l_Lean_Syntax_getArg(x_1, x_422); +x_424 = lean_unsigned_to_nat(6u); +x_425 = l_Lean_Syntax_getArg(x_1, x_424); +lean_dec(x_1); +x_426 = l_Lean_Syntax_toNat(x_338); +x_427 = lean_nat_add(x_426, x_22); +lean_dec(x_426); +x_428 = l_Nat_repr(x_427); +x_429 = l_Lean_numLitKind; +x_430 = l_Lean_instInhabitedSourceInfo___closed__1; +x_431 = l_Lean_Syntax_mkLit(x_429, x_428, x_430); +x_432 = lean_ctor_get(x_2, 2); +lean_inc(x_432); +x_433 = lean_ctor_get(x_2, 1); +lean_inc(x_433); +lean_dec(x_2); +x_434 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_435 = lean_array_push(x_434, x_338); +x_436 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_436, 0, x_329); +lean_ctor_set(x_436, 1, x_435); +x_437 = l_Array_empty___closed__1; +x_438 = lean_array_push(x_437, x_436); +x_439 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_439, 0, x_27); +lean_ctor_set(x_439, 1, x_438); +x_440 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +x_441 = lean_array_push(x_440, x_439); +x_442 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_443 = lean_array_push(x_441, x_442); +x_444 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__28; +lean_inc(x_432); +lean_inc(x_433); +x_445 = l_Lean_addMacroScope(x_433, x_444, x_432); +x_446 = lean_box(0); +x_447 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__27; x_448 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_448, 0, x_420); +lean_ctor_set(x_448, 0, x_430); lean_ctor_set(x_448, 1, x_447); -lean_ctor_set(x_448, 2, x_446); -lean_ctor_set(x_448, 3, x_436); -lean_inc(x_448); -x_449 = lean_array_push(x_427, x_448); -x_450 = lean_array_push(x_424, x_421); -x_451 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_451, 0, x_319); -lean_ctor_set(x_451, 1, x_450); -x_452 = lean_array_push(x_427, x_451); -x_453 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_453, 0, x_16); -lean_ctor_set(x_453, 1, x_452); -x_454 = lean_array_push(x_449, x_453); -x_455 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_455, 0, x_441); -lean_ctor_set(x_455, 1, x_454); -x_456 = lean_array_push(x_444, x_455); -x_457 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_457, 0, x_16); -lean_ctor_set(x_457, 1, x_456); -x_458 = lean_array_push(x_433, x_457); -x_459 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_460 = lean_array_push(x_458, x_459); -x_461 = lean_array_push(x_427, x_415); -x_462 = lean_array_push(x_439, x_448); +lean_ctor_set(x_448, 2, x_445); +lean_ctor_set(x_448, 3, x_446); +x_449 = lean_array_push(x_437, x_448); +lean_inc(x_449); +x_450 = lean_array_push(x_449, x_442); +x_451 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; +x_452 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_452, 0, x_451); +lean_ctor_set(x_452, 1, x_450); +x_453 = lean_array_push(x_437, x_452); +x_454 = lean_array_push(x_453, x_423); +x_455 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_456 = l_Lean_addMacroScope(x_433, x_455, x_432); +x_457 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_458 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_458, 0, x_430); +lean_ctor_set(x_458, 1, x_457); +lean_ctor_set(x_458, 2, x_456); +lean_ctor_set(x_458, 3, x_446); +lean_inc(x_458); +x_459 = lean_array_push(x_437, x_458); +x_460 = lean_array_push(x_434, x_431); +x_461 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_461, 0, x_329); +lean_ctor_set(x_461, 1, x_460); +x_462 = lean_array_push(x_437, x_461); x_463 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_463, 0, x_16); +lean_ctor_set(x_463, 0, x_27); lean_ctor_set(x_463, 1, x_462); -x_464 = lean_array_push(x_461, x_463); -x_465 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_466 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_466, 0, x_465); -lean_ctor_set(x_466, 1, x_464); -x_467 = lean_array_push(x_460, x_466); -x_468 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -x_469 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_469, 0, x_468); -lean_ctor_set(x_469, 1, x_467); -x_470 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_470, 0, x_469); -lean_ctor_set(x_470, 1, x_3); -return x_470; -} -} -block_405: -{ -uint8_t x_332; -lean_dec(x_331); -lean_inc(x_330); -x_332 = l_Lean_Syntax_isOfKind(x_330, x_16); -if (x_332 == 0) -{ -lean_object* x_333; lean_object* x_334; -lean_dec(x_330); -lean_dec(x_328); -lean_dec(x_2); -lean_dec(x_1); -x_333 = lean_box(1); -x_334 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_334, 0, x_333); -lean_ctor_set(x_334, 1, x_3); -return x_334; -} -else -{ -lean_object* x_335; lean_object* x_336; uint8_t x_337; -x_335 = l_Lean_Syntax_getArgs(x_330); -x_336 = lean_array_get_size(x_335); -lean_dec(x_335); -x_337 = lean_nat_dec_eq(x_336, x_329); -lean_dec(x_336); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; -lean_dec(x_330); -lean_dec(x_328); -lean_dec(x_2); -lean_dec(x_1); -x_338 = lean_box(1); -x_339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_339, 0, x_338); -lean_ctor_set(x_339, 1, x_3); -return x_339; -} -else -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; 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; -x_340 = l_Lean_Syntax_getArg(x_330, x_25); -lean_dec(x_330); -x_341 = lean_unsigned_to_nat(4u); -x_342 = l_Lean_Syntax_getArg(x_1, x_341); -x_343 = lean_unsigned_to_nat(6u); -x_344 = l_Lean_Syntax_getArg(x_1, x_343); -lean_dec(x_1); -x_345 = l_Lean_Syntax_toNat(x_328); -x_346 = lean_nat_add(x_345, x_25); -lean_dec(x_345); -x_347 = l_Nat_repr(x_346); -x_348 = l_Lean_numLitKind; -x_349 = l_Lean_instInhabitedSourceInfo___closed__1; -x_350 = l_Lean_Syntax_mkLit(x_348, x_347, x_349); -x_351 = lean_ctor_get(x_2, 2); -lean_inc(x_351); -x_352 = lean_ctor_get(x_2, 1); -lean_inc(x_352); -lean_dec(x_2); -x_353 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_354 = lean_array_push(x_353, x_328); -x_355 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_355, 0, x_319); -lean_ctor_set(x_355, 1, x_354); -x_356 = l_Array_empty___closed__1; -x_357 = lean_array_push(x_356, x_355); -x_358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_358, 0, x_16); -lean_ctor_set(x_358, 1, x_357); -x_359 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -x_360 = lean_array_push(x_359, x_358); -x_361 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_362 = lean_array_push(x_361, x_340); -x_363 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_364 = lean_array_push(x_362, x_363); -x_365 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_365, 0, x_16); -lean_ctor_set(x_365, 1, x_364); -x_366 = lean_array_push(x_360, x_365); -x_367 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26; -lean_inc(x_351); -lean_inc(x_352); -x_368 = l_Lean_addMacroScope(x_352, x_367, x_351); -x_369 = lean_box(0); -x_370 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25; -x_371 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_371, 0, x_349); -lean_ctor_set(x_371, 1, x_370); -lean_ctor_set(x_371, 2, x_368); -lean_ctor_set(x_371, 3, x_369); -x_372 = lean_array_push(x_356, x_371); -x_373 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_372); -x_374 = lean_array_push(x_372, x_373); -x_375 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -x_376 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_376, 0, x_375); -lean_ctor_set(x_376, 1, x_374); -x_377 = lean_array_push(x_356, x_376); -x_378 = lean_array_push(x_377, x_342); -x_379 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_380 = l_Lean_addMacroScope(x_352, x_379, x_351); -x_381 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_382 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_382, 0, x_349); -lean_ctor_set(x_382, 1, x_381); -lean_ctor_set(x_382, 2, x_380); -lean_ctor_set(x_382, 3, x_369); -lean_inc(x_382); -x_383 = lean_array_push(x_356, x_382); -x_384 = lean_array_push(x_353, x_350); -x_385 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_385, 0, x_319); -lean_ctor_set(x_385, 1, x_384); -x_386 = lean_array_push(x_356, x_385); -x_387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_387, 0, x_16); -lean_ctor_set(x_387, 1, x_386); -x_388 = lean_array_push(x_383, x_387); -x_389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_389, 0, x_375); -lean_ctor_set(x_389, 1, x_388); -x_390 = lean_array_push(x_378, x_389); -x_391 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_391, 0, x_16); -lean_ctor_set(x_391, 1, x_390); -x_392 = lean_array_push(x_366, x_391); -x_393 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_394 = lean_array_push(x_392, x_393); -x_395 = lean_array_push(x_356, x_344); -x_396 = lean_array_push(x_372, x_382); -x_397 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_397, 0, x_16); -lean_ctor_set(x_397, 1, x_396); -x_398 = lean_array_push(x_395, x_397); -x_399 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_400, 0, x_399); -lean_ctor_set(x_400, 1, x_398); -x_401 = lean_array_push(x_394, x_400); -x_402 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -x_403 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_403, 0, x_402); -lean_ctor_set(x_403, 1, x_401); -x_404 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_404, 0, x_403); -lean_ctor_set(x_404, 1, x_3); -return x_404; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_471; lean_object* x_472; uint8_t x_473; -x_471 = l_Lean_Syntax_getArgs(x_26); -x_472 = lean_array_get_size(x_471); -lean_dec(x_471); -x_473 = lean_nat_dec_eq(x_472, x_25); -lean_dec(x_472); -if (x_473 == 0) -{ -lean_object* x_474; -x_474 = lean_box(0); -x_27 = x_474; -goto block_297; -} -else -{ -lean_object* x_475; lean_object* x_476; uint8_t x_477; -lean_dec(x_26); -x_475 = lean_unsigned_to_nat(2u); -x_476 = l_Lean_Syntax_getArg(x_1, x_475); -lean_inc(x_476); -x_477 = l_Lean_Syntax_isOfKind(x_476, x_16); -if (x_477 == 0) -{ -lean_object* x_478; lean_object* x_479; -lean_dec(x_476); -lean_dec(x_2); -lean_dec(x_1); -x_478 = lean_box(1); +x_464 = lean_array_push(x_459, x_463); +x_465 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_465, 0, x_451); +lean_ctor_set(x_465, 1, x_464); +x_466 = lean_array_push(x_454, x_465); +x_467 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_467, 0, x_27); +lean_ctor_set(x_467, 1, x_466); +x_468 = lean_array_push(x_443, x_467); +x_469 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_470 = lean_array_push(x_468, x_469); +x_471 = lean_array_push(x_437, x_425); +x_472 = lean_array_push(x_449, x_458); +x_473 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_473, 0, x_27); +lean_ctor_set(x_473, 1, x_472); +x_474 = lean_array_push(x_471, x_473); +x_475 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_476 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_476, 0, x_475); +lean_ctor_set(x_476, 1, x_474); +x_477 = lean_array_push(x_470, x_476); +x_478 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; x_479 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_479, 0, x_478); -lean_ctor_set(x_479, 1, x_3); -return x_479; +lean_ctor_set(x_479, 1, x_477); +x_480 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_480, 0, x_479); +lean_ctor_set(x_480, 1, x_3); +return x_480; +} +} +block_415: +{ +uint8_t x_342; +lean_dec(x_341); +lean_inc(x_340); +x_342 = l_Lean_Syntax_isOfKind(x_340, x_27); +if (x_342 == 0) +{ +lean_object* x_343; lean_object* x_344; +lean_dec(x_340); +lean_dec(x_338); +lean_dec(x_2); +lean_dec(x_1); +x_343 = lean_box(1); +x_344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_344, 0, x_343); +lean_ctor_set(x_344, 1, x_3); +return x_344; } else { -lean_object* x_480; lean_object* x_481; uint8_t x_482; -x_480 = l_Lean_Syntax_getArgs(x_476); -x_481 = lean_array_get_size(x_480); -lean_dec(x_480); -x_482 = lean_nat_dec_eq(x_481, x_25); -lean_dec(x_481); -if (x_482 == 0) +lean_object* x_345; lean_object* x_346; uint8_t x_347; +x_345 = l_Lean_Syntax_getArgs(x_340); +x_346 = lean_array_get_size(x_345); +lean_dec(x_345); +x_347 = lean_nat_dec_eq(x_346, x_339); +lean_dec(x_346); +if (x_347 == 0) { -lean_object* x_483; lean_object* x_484; -lean_dec(x_476); +lean_object* x_348; lean_object* x_349; +lean_dec(x_340); +lean_dec(x_338); lean_dec(x_2); lean_dec(x_1); -x_483 = lean_box(1); -x_484 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_484, 0, x_483); -lean_ctor_set(x_484, 1, x_3); -return x_484; +x_348 = lean_box(1); +x_349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_349, 0, x_348); +lean_ctor_set(x_349, 1, x_3); +return x_349; +} +else +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; 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; +x_350 = l_Lean_Syntax_getArg(x_340, x_22); +lean_dec(x_340); +x_351 = lean_unsigned_to_nat(4u); +x_352 = l_Lean_Syntax_getArg(x_1, x_351); +x_353 = lean_unsigned_to_nat(6u); +x_354 = l_Lean_Syntax_getArg(x_1, x_353); +lean_dec(x_1); +x_355 = l_Lean_Syntax_toNat(x_338); +x_356 = lean_nat_add(x_355, x_22); +lean_dec(x_355); +x_357 = l_Nat_repr(x_356); +x_358 = l_Lean_numLitKind; +x_359 = l_Lean_instInhabitedSourceInfo___closed__1; +x_360 = l_Lean_Syntax_mkLit(x_358, x_357, x_359); +x_361 = lean_ctor_get(x_2, 2); +lean_inc(x_361); +x_362 = lean_ctor_get(x_2, 1); +lean_inc(x_362); +lean_dec(x_2); +x_363 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_364 = lean_array_push(x_363, x_338); +x_365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_365, 0, x_329); +lean_ctor_set(x_365, 1, x_364); +x_366 = l_Array_empty___closed__1; +x_367 = lean_array_push(x_366, x_365); +x_368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_368, 0, x_27); +lean_ctor_set(x_368, 1, x_367); +x_369 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +x_370 = lean_array_push(x_369, x_368); +x_371 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_372 = lean_array_push(x_371, x_350); +x_373 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_374 = lean_array_push(x_372, x_373); +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_27); +lean_ctor_set(x_375, 1, x_374); +x_376 = lean_array_push(x_370, x_375); +x_377 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__28; +lean_inc(x_361); +lean_inc(x_362); +x_378 = l_Lean_addMacroScope(x_362, x_377, x_361); +x_379 = lean_box(0); +x_380 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__27; +x_381 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_381, 0, x_359); +lean_ctor_set(x_381, 1, x_380); +lean_ctor_set(x_381, 2, x_378); +lean_ctor_set(x_381, 3, x_379); +x_382 = lean_array_push(x_366, x_381); +x_383 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +lean_inc(x_382); +x_384 = lean_array_push(x_382, x_383); +x_385 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; +x_386 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_386, 0, x_385); +lean_ctor_set(x_386, 1, x_384); +x_387 = lean_array_push(x_366, x_386); +x_388 = lean_array_push(x_387, x_352); +x_389 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_390 = l_Lean_addMacroScope(x_362, x_389, x_361); +x_391 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_392 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_392, 0, x_359); +lean_ctor_set(x_392, 1, x_391); +lean_ctor_set(x_392, 2, x_390); +lean_ctor_set(x_392, 3, x_379); +lean_inc(x_392); +x_393 = lean_array_push(x_366, x_392); +x_394 = lean_array_push(x_363, x_360); +x_395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_395, 0, x_329); +lean_ctor_set(x_395, 1, x_394); +x_396 = lean_array_push(x_366, x_395); +x_397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_397, 0, x_27); +lean_ctor_set(x_397, 1, x_396); +x_398 = lean_array_push(x_393, x_397); +x_399 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_399, 0, x_385); +lean_ctor_set(x_399, 1, x_398); +x_400 = lean_array_push(x_388, x_399); +x_401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_401, 0, x_27); +lean_ctor_set(x_401, 1, x_400); +x_402 = lean_array_push(x_376, x_401); +x_403 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_404 = lean_array_push(x_402, x_403); +x_405 = lean_array_push(x_366, x_354); +x_406 = lean_array_push(x_382, x_392); +x_407 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_407, 0, x_27); +lean_ctor_set(x_407, 1, x_406); +x_408 = lean_array_push(x_405, x_407); +x_409 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_410, 0, x_409); +lean_ctor_set(x_410, 1, x_408); +x_411 = lean_array_push(x_404, x_410); +x_412 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_412); +lean_ctor_set(x_413, 1, x_411); +x_414 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_414, 0, x_413); +lean_ctor_set(x_414, 1, x_3); +return x_414; +} +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_481; lean_object* x_482; uint8_t x_483; +x_481 = l_Lean_Syntax_getArgs(x_36); +x_482 = lean_array_get_size(x_481); +lean_dec(x_481); +x_483 = lean_nat_dec_eq(x_482, x_22); +lean_dec(x_482); +if (x_483 == 0) +{ +lean_object* x_484; +x_484 = lean_box(0); +x_37 = x_484; +goto block_307; } else { lean_object* x_485; lean_object* x_486; uint8_t x_487; -x_485 = l_Lean_Syntax_getArg(x_476, x_14); -lean_dec(x_476); -x_486 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; -lean_inc(x_485); -x_487 = l_Lean_Syntax_isOfKind(x_485, x_486); +lean_dec(x_36); +x_485 = lean_unsigned_to_nat(2u); +x_486 = l_Lean_Syntax_getArg(x_1, x_485); +lean_inc(x_486); +x_487 = l_Lean_Syntax_isOfKind(x_486, x_27); if (x_487 == 0) { lean_object* x_488; lean_object* x_489; -lean_dec(x_485); +lean_dec(x_486); lean_dec(x_2); lean_dec(x_1); x_488 = lean_box(1); @@ -18489,15 +18594,15 @@ return x_489; else { lean_object* x_490; lean_object* x_491; uint8_t x_492; -x_490 = l_Lean_Syntax_getArgs(x_485); +x_490 = l_Lean_Syntax_getArgs(x_486); x_491 = lean_array_get_size(x_490); lean_dec(x_490); -x_492 = lean_nat_dec_eq(x_491, x_475); +x_492 = lean_nat_dec_eq(x_491, x_22); lean_dec(x_491); if (x_492 == 0) { lean_object* x_493; lean_object* x_494; -lean_dec(x_485); +lean_dec(x_486); lean_dec(x_2); lean_dec(x_1); x_493 = lean_box(1); @@ -18508,265 +18613,307 @@ return x_494; } else { -lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; uint8_t x_564; -x_495 = l_Lean_Syntax_getArg(x_485, x_25); -lean_dec(x_485); -x_496 = lean_unsigned_to_nat(3u); -x_497 = l_Lean_Syntax_getArg(x_1, x_496); -lean_inc(x_497); -x_564 = l_Lean_Syntax_isOfKind(x_497, x_16); -if (x_564 == 0) +lean_object* x_495; lean_object* x_496; uint8_t x_497; +x_495 = l_Lean_Syntax_getArg(x_486, x_14); +lean_dec(x_486); +x_496 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; +lean_inc(x_495); +x_497 = l_Lean_Syntax_isOfKind(x_495, x_496); +if (x_497 == 0) { -lean_object* x_565; -x_565 = lean_box(0); -x_498 = x_565; -goto block_563; -} -else -{ -lean_object* x_566; lean_object* x_567; uint8_t x_568; -x_566 = l_Lean_Syntax_getArgs(x_497); -x_567 = lean_array_get_size(x_566); -lean_dec(x_566); -x_568 = lean_nat_dec_eq(x_567, x_14); -lean_dec(x_567); -if (x_568 == 0) -{ -lean_object* x_569; -x_569 = lean_box(0); -x_498 = x_569; -goto block_563; -} -else -{ -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_dec(x_497); -x_570 = lean_unsigned_to_nat(4u); -x_571 = l_Lean_Syntax_getArg(x_1, x_570); -x_572 = lean_unsigned_to_nat(6u); -x_573 = l_Lean_Syntax_getArg(x_1, x_572); -lean_dec(x_1); -x_574 = lean_ctor_get(x_2, 2); -lean_inc(x_574); -x_575 = lean_ctor_get(x_2, 1); -lean_inc(x_575); +lean_object* x_498; lean_object* x_499; +lean_dec(x_495); lean_dec(x_2); -x_576 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_577 = lean_array_push(x_576, x_495); -x_578 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_578, 0, x_486); -lean_ctor_set(x_578, 1, x_577); -x_579 = l_Array_empty___closed__1; -x_580 = lean_array_push(x_579, x_578); -x_581 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_581, 0, x_16); -lean_ctor_set(x_581, 1, x_580); -x_582 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -lean_inc(x_581); -x_583 = lean_array_push(x_582, x_581); -x_584 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_585 = lean_array_push(x_583, x_584); -x_586 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26; -lean_inc(x_574); -lean_inc(x_575); -x_587 = l_Lean_addMacroScope(x_575, x_586, x_574); -x_588 = lean_box(0); -x_589 = l_Lean_instInhabitedSourceInfo___closed__1; -x_590 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25; -x_591 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_591, 0, x_589); +lean_dec(x_1); +x_498 = lean_box(1); +x_499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_499, 0, x_498); +lean_ctor_set(x_499, 1, x_3); +return x_499; +} +else +{ +lean_object* x_500; lean_object* x_501; uint8_t x_502; +x_500 = l_Lean_Syntax_getArgs(x_495); +x_501 = lean_array_get_size(x_500); +lean_dec(x_500); +x_502 = lean_nat_dec_eq(x_501, x_485); +lean_dec(x_501); +if (x_502 == 0) +{ +lean_object* x_503; lean_object* x_504; +lean_dec(x_495); +lean_dec(x_2); +lean_dec(x_1); +x_503 = lean_box(1); +x_504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_504, 0, x_503); +lean_ctor_set(x_504, 1, x_3); +return x_504; +} +else +{ +lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; uint8_t x_574; +x_505 = l_Lean_Syntax_getArg(x_495, x_22); +lean_dec(x_495); +x_506 = lean_unsigned_to_nat(3u); +x_507 = l_Lean_Syntax_getArg(x_1, x_506); +lean_inc(x_507); +x_574 = l_Lean_Syntax_isOfKind(x_507, x_27); +if (x_574 == 0) +{ +lean_object* x_575; +x_575 = lean_box(0); +x_508 = x_575; +goto block_573; +} +else +{ +lean_object* x_576; lean_object* x_577; uint8_t x_578; +x_576 = l_Lean_Syntax_getArgs(x_507); +x_577 = lean_array_get_size(x_576); +lean_dec(x_576); +x_578 = lean_nat_dec_eq(x_577, x_14); +lean_dec(x_577); +if (x_578 == 0) +{ +lean_object* x_579; +x_579 = lean_box(0); +x_508 = x_579; +goto block_573; +} +else +{ +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_dec(x_507); +x_580 = lean_unsigned_to_nat(4u); +x_581 = l_Lean_Syntax_getArg(x_1, x_580); +x_582 = lean_unsigned_to_nat(6u); +x_583 = l_Lean_Syntax_getArg(x_1, x_582); +lean_dec(x_1); +x_584 = lean_ctor_get(x_2, 2); +lean_inc(x_584); +x_585 = lean_ctor_get(x_2, 1); +lean_inc(x_585); +lean_dec(x_2); +x_586 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_587 = lean_array_push(x_586, x_505); +x_588 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_588, 0, x_496); +lean_ctor_set(x_588, 1, x_587); +x_589 = l_Array_empty___closed__1; +x_590 = lean_array_push(x_589, x_588); +x_591 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_591, 0, x_27); lean_ctor_set(x_591, 1, x_590); -lean_ctor_set(x_591, 2, x_587); -lean_ctor_set(x_591, 3, x_588); -x_592 = lean_array_push(x_579, x_591); -lean_inc(x_592); -x_593 = lean_array_push(x_592, x_584); -x_594 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -x_595 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_595, 0, x_594); -lean_ctor_set(x_595, 1, x_593); -x_596 = lean_array_push(x_579, x_595); -x_597 = lean_array_push(x_596, x_571); -x_598 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_599 = l_Lean_addMacroScope(x_575, x_598, x_574); -x_600 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_592 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +lean_inc(x_591); +x_593 = lean_array_push(x_592, x_591); +x_594 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_595 = lean_array_push(x_593, x_594); +x_596 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__28; +lean_inc(x_584); +lean_inc(x_585); +x_597 = l_Lean_addMacroScope(x_585, x_596, x_584); +x_598 = lean_box(0); +x_599 = l_Lean_instInhabitedSourceInfo___closed__1; +x_600 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__27; x_601 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_601, 0, x_589); +lean_ctor_set(x_601, 0, x_599); lean_ctor_set(x_601, 1, x_600); -lean_ctor_set(x_601, 2, x_599); -lean_ctor_set(x_601, 3, x_588); -lean_inc(x_601); -x_602 = lean_array_push(x_579, x_601); -x_603 = lean_array_push(x_602, x_581); -x_604 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_604, 0, x_594); -lean_ctor_set(x_604, 1, x_603); -x_605 = lean_array_push(x_597, x_604); -x_606 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_606, 0, x_16); -lean_ctor_set(x_606, 1, x_605); -x_607 = lean_array_push(x_585, x_606); -x_608 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_609 = lean_array_push(x_607, x_608); -x_610 = lean_array_push(x_579, x_573); -x_611 = lean_array_push(x_592, x_601); -x_612 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_612, 0, x_16); -lean_ctor_set(x_612, 1, x_611); -x_613 = lean_array_push(x_610, x_612); -x_614 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_615 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_615, 0, x_614); -lean_ctor_set(x_615, 1, x_613); -x_616 = lean_array_push(x_609, x_615); -x_617 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -x_618 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_618, 0, x_617); -lean_ctor_set(x_618, 1, x_616); -x_619 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_619, 0, x_618); -lean_ctor_set(x_619, 1, x_3); -return x_619; +lean_ctor_set(x_601, 2, x_597); +lean_ctor_set(x_601, 3, x_598); +x_602 = lean_array_push(x_589, x_601); +lean_inc(x_602); +x_603 = lean_array_push(x_602, x_594); +x_604 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; +x_605 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_605, 0, x_604); +lean_ctor_set(x_605, 1, x_603); +x_606 = lean_array_push(x_589, x_605); +x_607 = lean_array_push(x_606, x_581); +x_608 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_609 = l_Lean_addMacroScope(x_585, x_608, x_584); +x_610 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_611 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_611, 0, x_599); +lean_ctor_set(x_611, 1, x_610); +lean_ctor_set(x_611, 2, x_609); +lean_ctor_set(x_611, 3, x_598); +lean_inc(x_611); +x_612 = lean_array_push(x_589, x_611); +x_613 = lean_array_push(x_612, x_591); +x_614 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_614, 0, x_604); +lean_ctor_set(x_614, 1, x_613); +x_615 = lean_array_push(x_607, x_614); +x_616 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_616, 0, x_27); +lean_ctor_set(x_616, 1, x_615); +x_617 = lean_array_push(x_595, x_616); +x_618 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_619 = lean_array_push(x_617, x_618); +x_620 = lean_array_push(x_589, x_583); +x_621 = lean_array_push(x_602, x_611); +x_622 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_622, 0, x_27); +lean_ctor_set(x_622, 1, x_621); +x_623 = lean_array_push(x_620, x_622); +x_624 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_625 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_625, 0, x_624); +lean_ctor_set(x_625, 1, x_623); +x_626 = lean_array_push(x_619, x_625); +x_627 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; +x_628 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_628, 0, x_627); +lean_ctor_set(x_628, 1, x_626); +x_629 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_629, 0, x_628); +lean_ctor_set(x_629, 1, x_3); +return x_629; } } -block_563: +block_573: { -uint8_t x_499; -lean_dec(x_498); -lean_inc(x_497); -x_499 = l_Lean_Syntax_isOfKind(x_497, x_16); -if (x_499 == 0) +uint8_t x_509; +lean_dec(x_508); +lean_inc(x_507); +x_509 = l_Lean_Syntax_isOfKind(x_507, x_27); +if (x_509 == 0) { -lean_object* x_500; lean_object* x_501; -lean_dec(x_497); -lean_dec(x_495); +lean_object* x_510; lean_object* x_511; +lean_dec(x_507); +lean_dec(x_505); lean_dec(x_2); lean_dec(x_1); -x_500 = lean_box(1); -x_501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_501, 0, x_500); -lean_ctor_set(x_501, 1, x_3); -return x_501; +x_510 = lean_box(1); +x_511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_511, 0, x_510); +lean_ctor_set(x_511, 1, x_3); +return x_511; } else { -lean_object* x_502; lean_object* x_503; uint8_t x_504; -x_502 = l_Lean_Syntax_getArgs(x_497); -x_503 = lean_array_get_size(x_502); -lean_dec(x_502); -x_504 = lean_nat_dec_eq(x_503, x_496); -lean_dec(x_503); -if (x_504 == 0) +lean_object* x_512; lean_object* x_513; uint8_t x_514; +x_512 = l_Lean_Syntax_getArgs(x_507); +x_513 = lean_array_get_size(x_512); +lean_dec(x_512); +x_514 = lean_nat_dec_eq(x_513, x_506); +lean_dec(x_513); +if (x_514 == 0) { -lean_object* x_505; lean_object* x_506; -lean_dec(x_497); -lean_dec(x_495); +lean_object* x_515; lean_object* x_516; +lean_dec(x_507); +lean_dec(x_505); lean_dec(x_2); lean_dec(x_1); -x_505 = lean_box(1); -x_506 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_506, 0, x_505); -lean_ctor_set(x_506, 1, x_3); -return x_506; -} -else -{ -lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; 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; -x_507 = l_Lean_Syntax_getArg(x_497, x_25); -lean_dec(x_497); -x_508 = lean_unsigned_to_nat(4u); -x_509 = l_Lean_Syntax_getArg(x_1, x_508); -x_510 = lean_unsigned_to_nat(6u); -x_511 = l_Lean_Syntax_getArg(x_1, x_510); -lean_dec(x_1); -x_512 = lean_ctor_get(x_2, 2); -lean_inc(x_512); -x_513 = lean_ctor_get(x_2, 1); -lean_inc(x_513); -lean_dec(x_2); -x_514 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_515 = lean_array_push(x_514, x_495); +x_515 = lean_box(1); x_516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_516, 0, x_486); -lean_ctor_set(x_516, 1, x_515); -x_517 = l_Array_empty___closed__1; -x_518 = lean_array_push(x_517, x_516); -x_519 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_519, 0, x_16); -lean_ctor_set(x_519, 1, x_518); -x_520 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; -lean_inc(x_519); -x_521 = lean_array_push(x_520, x_519); -x_522 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_523 = lean_array_push(x_522, x_507); -x_524 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_525 = lean_array_push(x_523, x_524); +lean_ctor_set(x_516, 0, x_515); +lean_ctor_set(x_516, 1, x_3); +return x_516; +} +else +{ +lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; +x_517 = l_Lean_Syntax_getArg(x_507, x_22); +lean_dec(x_507); +x_518 = lean_unsigned_to_nat(4u); +x_519 = l_Lean_Syntax_getArg(x_1, x_518); +x_520 = lean_unsigned_to_nat(6u); +x_521 = l_Lean_Syntax_getArg(x_1, x_520); +lean_dec(x_1); +x_522 = lean_ctor_get(x_2, 2); +lean_inc(x_522); +x_523 = lean_ctor_get(x_2, 1); +lean_inc(x_523); +lean_dec(x_2); +x_524 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_525 = lean_array_push(x_524, x_505); x_526 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_526, 0, x_16); +lean_ctor_set(x_526, 0, x_496); lean_ctor_set(x_526, 1, x_525); -x_527 = lean_array_push(x_521, x_526); -x_528 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26; -lean_inc(x_512); -lean_inc(x_513); -x_529 = l_Lean_addMacroScope(x_513, x_528, x_512); -x_530 = lean_box(0); -x_531 = l_Lean_instInhabitedSourceInfo___closed__1; -x_532 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__25; -x_533 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_533, 0, x_531); -lean_ctor_set(x_533, 1, x_532); -lean_ctor_set(x_533, 2, x_529); -lean_ctor_set(x_533, 3, x_530); -x_534 = lean_array_push(x_517, x_533); -x_535 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_534); -x_536 = lean_array_push(x_534, x_535); -x_537 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; -x_538 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_538, 0, x_537); -lean_ctor_set(x_538, 1, x_536); -x_539 = lean_array_push(x_517, x_538); -x_540 = lean_array_push(x_539, x_509); -x_541 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_542 = l_Lean_addMacroScope(x_513, x_541, x_512); -x_543 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_544 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_544, 0, x_531); -lean_ctor_set(x_544, 1, x_543); -lean_ctor_set(x_544, 2, x_542); -lean_ctor_set(x_544, 3, x_530); +x_527 = l_Array_empty___closed__1; +x_528 = lean_array_push(x_527, x_526); +x_529 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_529, 0, x_27); +lean_ctor_set(x_529, 1, x_528); +x_530 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +lean_inc(x_529); +x_531 = lean_array_push(x_530, x_529); +x_532 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_533 = lean_array_push(x_532, x_517); +x_534 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_535 = lean_array_push(x_533, x_534); +x_536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_536, 0, x_27); +lean_ctor_set(x_536, 1, x_535); +x_537 = lean_array_push(x_531, x_536); +x_538 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__28; +lean_inc(x_522); +lean_inc(x_523); +x_539 = l_Lean_addMacroScope(x_523, x_538, x_522); +x_540 = lean_box(0); +x_541 = l_Lean_instInhabitedSourceInfo___closed__1; +x_542 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__27; +x_543 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_543, 0, x_541); +lean_ctor_set(x_543, 1, x_542); +lean_ctor_set(x_543, 2, x_539); +lean_ctor_set(x_543, 3, x_540); +x_544 = lean_array_push(x_527, x_543); +x_545 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; lean_inc(x_544); -x_545 = lean_array_push(x_517, x_544); -x_546 = lean_array_push(x_545, x_519); -x_547 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_547, 0, x_537); -lean_ctor_set(x_547, 1, x_546); -x_548 = lean_array_push(x_540, x_547); -x_549 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_549, 0, x_16); -lean_ctor_set(x_549, 1, x_548); -x_550 = lean_array_push(x_527, x_549); -x_551 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_552 = lean_array_push(x_550, x_551); -x_553 = lean_array_push(x_517, x_511); -x_554 = lean_array_push(x_534, x_544); -x_555 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_555, 0, x_16); -lean_ctor_set(x_555, 1, x_554); -x_556 = lean_array_push(x_553, x_555); -x_557 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_558 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_558, 0, x_557); -lean_ctor_set(x_558, 1, x_556); -x_559 = lean_array_push(x_552, x_558); -x_560 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; -x_561 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_561, 0, x_560); -lean_ctor_set(x_561, 1, x_559); -x_562 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_562, 0, x_561); -lean_ctor_set(x_562, 1, x_3); -return x_562; +x_546 = lean_array_push(x_544, x_545); +x_547 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; +x_548 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_548, 0, x_547); +lean_ctor_set(x_548, 1, x_546); +x_549 = lean_array_push(x_527, x_548); +x_550 = lean_array_push(x_549, x_519); +x_551 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_552 = l_Lean_addMacroScope(x_523, x_551, x_522); +x_553 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_554 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_554, 0, x_541); +lean_ctor_set(x_554, 1, x_553); +lean_ctor_set(x_554, 2, x_552); +lean_ctor_set(x_554, 3, x_540); +lean_inc(x_554); +x_555 = lean_array_push(x_527, x_554); +x_556 = lean_array_push(x_555, x_529); +x_557 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_557, 0, x_547); +lean_ctor_set(x_557, 1, x_556); +x_558 = lean_array_push(x_550, x_557); +x_559 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_559, 0, x_27); +lean_ctor_set(x_559, 1, x_558); +x_560 = lean_array_push(x_537, x_559); +x_561 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_562 = lean_array_push(x_560, x_561); +x_563 = lean_array_push(x_527, x_521); +x_564 = lean_array_push(x_544, x_554); +x_565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_565, 0, x_27); +lean_ctor_set(x_565, 1, x_564); +x_566 = lean_array_push(x_563, x_565); +x_567 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_568 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_568, 0, x_567); +lean_ctor_set(x_568, 1, x_566); +x_569 = lean_array_push(x_562, x_568); +x_570 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__10; +x_571 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_571, 0, x_570); +lean_ctor_set(x_571, 1, x_569); +x_572 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_572, 0, x_571); +lean_ctor_set(x_572, 1, x_3); +return x_572; +} +} } } } @@ -18796,7 +18943,7 @@ _start: { lean_object* x_4; lean_object* x_5; x_4 = l_Lean_Elab_Command_expandMixfix___closed__1; -x_5 = l_Lean_Elab_Command_expandMixfix_withAttrKind(x_1, x_4, x_2, x_3); +x_5 = l_Lean_Elab_Command_expandMixfix_withAttrKindGlobal(x_1, x_4, x_2, x_3); return x_5; } } @@ -19026,7 +19173,7 @@ _start: lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_inc(x_1); x_5 = l_Lean_Syntax_getKind(x_1); -x_6 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +x_6 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; x_7 = lean_name_eq(x_5, x_6); if (x_7 == 0) { @@ -19164,7 +19311,7 @@ _start: lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_inc(x_1); x_5 = l_Lean_Syntax_getKind(x_1); -x_6 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +x_6 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; x_7 = lean_name_eq(x_5, x_6); if (x_7 == 0) { @@ -20018,7 +20165,7 @@ x_45 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_44); x_46 = !lean_is_exclusive(x_45); if (x_46 == 0) { -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; x_47 = lean_ctor_get(x_45, 0); x_48 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; lean_inc(x_43); @@ -20032,7 +20179,7 @@ lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); lean_ctor_set(x_53, 2, x_49); lean_ctor_set(x_53, 3, x_50); -x_54 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_54 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; x_55 = lean_array_push(x_54, x_53); x_56 = lean_mk_syntax_ident(x_24); x_57 = lean_array_push(x_34, x_56); @@ -20060,1394 +20207,1400 @@ x_70 = lean_array_push(x_34, x_69); x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_36); lean_ctor_set(x_71, 1, x_70); -x_72 = lean_array_push(x_54, x_71); -x_73 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_74 = lean_array_push(x_72, x_73); -x_75 = lean_array_push(x_74, x_73); -x_76 = lean_array_push(x_75, x_73); -x_77 = lean_array_push(x_76, x_73); -x_78 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_77); -x_80 = lean_array_push(x_34, x_79); -x_81 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +x_72 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_73 = lean_array_push(x_72, x_71); +x_74 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_75 = lean_array_push(x_73, x_74); +x_76 = lean_array_push(x_75, x_74); +x_77 = lean_array_push(x_76, x_74); +x_78 = lean_array_push(x_77, x_74); +x_79 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_34, x_80); +x_82 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; lean_inc(x_43); lean_inc(x_47); -x_82 = l_Lean_addMacroScope(x_47, x_81, x_43); -x_83 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_84 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_84, 0, x_51); -lean_ctor_set(x_84, 1, x_83); -lean_ctor_set(x_84, 2, x_82); -lean_ctor_set(x_84, 3, x_50); -x_85 = lean_array_push(x_34, x_84); -x_86 = lean_array_push(x_85, x_73); -x_87 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_87); -lean_ctor_set(x_88, 1, x_86); -x_89 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_90 = lean_array_push(x_89, x_88); -x_91 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +x_83 = l_Lean_addMacroScope(x_47, x_82, x_43); +x_84 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_85 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_85, 0, x_51); +lean_ctor_set(x_85, 1, x_84); +lean_ctor_set(x_85, 2, x_83); +lean_ctor_set(x_85, 3, x_50); +x_86 = lean_array_push(x_34, x_85); +x_87 = lean_array_push(x_86, x_74); +x_88 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_87); +x_90 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_91 = lean_array_push(x_90, x_89); +x_92 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; lean_inc(x_43); lean_inc(x_47); -x_92 = l_Lean_addMacroScope(x_47, x_91, x_43); -x_93 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_94 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_95 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_95, 0, x_51); -lean_ctor_set(x_95, 1, x_93); -lean_ctor_set(x_95, 2, x_92); -lean_ctor_set(x_95, 3, x_94); -x_96 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_97 = lean_array_push(x_96, x_95); -x_98 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_97); -x_100 = lean_array_push(x_34, x_99); -x_101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_101, 0, x_36); -lean_ctor_set(x_101, 1, x_100); -x_102 = lean_array_push(x_54, x_101); -x_103 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_90, x_104); -x_106 = l_stx___x3c_x7c_x3e_____closed__4; +x_93 = l_Lean_addMacroScope(x_47, x_92, x_43); +x_94 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_95 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_96 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_96, 0, x_51); +lean_ctor_set(x_96, 1, x_94); +lean_ctor_set(x_96, 2, x_93); +lean_ctor_set(x_96, 3, x_95); +x_97 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_98 = lean_array_push(x_97, x_96); +x_99 = l_Lean_expandExplicitBindersAux_loop___closed__8; +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_34, x_100); +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_36); +lean_ctor_set(x_102, 1, x_101); +x_103 = lean_array_push(x_72, x_102); +x_104 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +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_91, x_105); +x_107 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_43); lean_inc(x_47); -x_107 = l_Lean_addMacroScope(x_47, x_106, x_43); -x_108 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_109 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_109, 0, x_51); -lean_ctor_set(x_109, 1, x_108); -lean_ctor_set(x_109, 2, x_107); -lean_ctor_set(x_109, 3, x_50); -lean_inc(x_109); -x_110 = lean_array_push(x_34, x_109); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_36); -lean_ctor_set(x_111, 1, x_110); -x_112 = lean_array_push(x_34, x_111); -x_113 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_114 = lean_array_push(x_112, x_113); -x_115 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_116 = lean_array_push(x_115, x_109); -x_117 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_118 = lean_array_push(x_116, x_117); -x_119 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_120 = lean_array_push(x_119, x_41); -x_121 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_122 = lean_array_push(x_120, x_121); -x_123 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_123); -lean_ctor_set(x_124, 1, x_122); -x_125 = lean_array_push(x_34, x_124); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_36); -lean_ctor_set(x_126, 1, x_125); -x_127 = lean_array_push(x_34, x_126); -x_128 = lean_array_push(x_127, x_113); -x_129 = lean_array_push(x_119, x_1); -x_130 = lean_array_push(x_129, x_121); -x_131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_131, 0, x_123); -lean_ctor_set(x_131, 1, x_130); -x_132 = lean_array_push(x_128, x_131); -x_133 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___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_34, x_134); -x_136 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_137 = lean_array_push(x_135, x_136); -x_138 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_139 = l_Lean_addMacroScope(x_47, x_138, x_43); -x_140 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_141 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_142 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_142, 0, x_51); -lean_ctor_set(x_142, 1, x_140); -lean_ctor_set(x_142, 2, x_139); -lean_ctor_set(x_142, 3, x_141); -x_143 = lean_array_push(x_34, x_142); -x_144 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_145 = lean_array_push(x_143, x_144); -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_40); -lean_ctor_set(x_146, 1, x_145); -x_147 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_148 = lean_array_push(x_147, x_146); -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_133); -lean_ctor_set(x_149, 1, x_148); -x_150 = lean_array_push(x_137, x_149); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_36); -lean_ctor_set(x_151, 1, x_150); -x_152 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_153 = lean_array_push(x_152, x_151); -x_154 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_155, 0, x_154); -lean_ctor_set(x_155, 1, x_153); -x_156 = lean_array_push(x_118, x_155); -x_157 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_158 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_158, 0, x_157); -lean_ctor_set(x_158, 1, x_156); -x_159 = lean_array_push(x_114, x_158); -x_160 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -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 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_163 = lean_array_push(x_162, x_161); -x_164 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_167 = lean_array_push(x_166, x_165); -x_168 = lean_array_push(x_167, x_73); -x_169 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -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_105, x_170); -x_172 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_80, x_173); -x_175 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_176, 0, x_175); -lean_ctor_set(x_176, 1, x_174); -lean_ctor_set(x_9, 0, x_176); +x_108 = l_Lean_addMacroScope(x_47, x_107, x_43); +x_109 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_110 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_110, 0, x_51); +lean_ctor_set(x_110, 1, x_109); +lean_ctor_set(x_110, 2, x_108); +lean_ctor_set(x_110, 3, x_50); +lean_inc(x_110); +x_111 = lean_array_push(x_34, x_110); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_36); +lean_ctor_set(x_112, 1, x_111); +x_113 = lean_array_push(x_34, x_112); +x_114 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_115 = lean_array_push(x_113, x_114); +x_116 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_117 = lean_array_push(x_116, x_110); +x_118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_119 = lean_array_push(x_117, x_118); +x_120 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_121 = lean_array_push(x_120, x_41); +x_122 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_123 = lean_array_push(x_121, x_122); +x_124 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_123); +x_126 = lean_array_push(x_34, x_125); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_36); +lean_ctor_set(x_127, 1, x_126); +x_128 = lean_array_push(x_34, x_127); +x_129 = lean_array_push(x_128, x_114); +x_130 = lean_array_push(x_120, x_1); +x_131 = lean_array_push(x_130, x_122); +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_124); +lean_ctor_set(x_132, 1, x_131); +x_133 = lean_array_push(x_129, x_132); +x_134 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_135 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_133); +x_136 = lean_array_push(x_34, x_135); +x_137 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_138 = lean_array_push(x_136, x_137); +x_139 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_140 = l_Lean_addMacroScope(x_47, x_139, x_43); +x_141 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_142 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_143 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_143, 0, x_51); +lean_ctor_set(x_143, 1, x_141); +lean_ctor_set(x_143, 2, x_140); +lean_ctor_set(x_143, 3, x_142); +x_144 = lean_array_push(x_34, x_143); +x_145 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_146 = lean_array_push(x_144, x_145); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_40); +lean_ctor_set(x_147, 1, x_146); +x_148 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_149 = lean_array_push(x_148, x_147); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_134); +lean_ctor_set(x_150, 1, x_149); +x_151 = lean_array_push(x_138, x_150); +x_152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_152, 0, x_36); +lean_ctor_set(x_152, 1, x_151); +x_153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_154 = lean_array_push(x_153, x_152); +x_155 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_154); +x_157 = lean_array_push(x_119, x_156); +x_158 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_159 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_159, 0, x_158); +lean_ctor_set(x_159, 1, x_157); +x_160 = lean_array_push(x_115, x_159); +x_161 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_160); +x_163 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_164 = lean_array_push(x_163, x_162); +x_165 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_165); +lean_ctor_set(x_166, 1, x_164); +x_167 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_168 = lean_array_push(x_167, x_166); +x_169 = lean_array_push(x_168, x_74); +x_170 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_171 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_169); +x_172 = lean_array_push(x_106, x_171); +x_173 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +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_81, x_174); +x_176 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_176); +lean_ctor_set(x_177, 1, x_175); +lean_ctor_set(x_9, 0, x_177); lean_ctor_set(x_45, 0, x_9); return x_45; } else { -lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; -x_177 = lean_ctor_get(x_45, 0); -x_178 = lean_ctor_get(x_45, 1); +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; 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; +x_178 = lean_ctor_get(x_45, 0); +x_179 = lean_ctor_get(x_45, 1); +lean_inc(x_179); lean_inc(x_178); -lean_inc(x_177); lean_dec(x_45); -x_179 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +x_180 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; lean_inc(x_43); -lean_inc(x_177); -x_180 = l_Lean_addMacroScope(x_177, x_179, x_43); -x_181 = lean_box(0); -x_182 = l_Lean_instInhabitedSourceInfo___closed__1; -x_183 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_184 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_184, 0, x_182); -lean_ctor_set(x_184, 1, x_183); -lean_ctor_set(x_184, 2, x_180); -lean_ctor_set(x_184, 3, x_181); -x_185 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_186 = lean_array_push(x_185, x_184); -x_187 = lean_mk_syntax_ident(x_24); -x_188 = lean_array_push(x_34, x_187); -x_189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_189, 0, x_36); -lean_ctor_set(x_189, 1, x_188); -x_190 = lean_array_push(x_186, x_189); -x_191 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -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_34, x_192); -x_194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_194, 0, x_36); -lean_ctor_set(x_194, 1, x_193); -x_195 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_196 = lean_array_push(x_195, x_194); -x_197 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_198 = lean_array_push(x_196, x_197); -x_199 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_199); -lean_ctor_set(x_200, 1, x_198); -x_201 = lean_array_push(x_34, x_200); -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_36); -lean_ctor_set(x_202, 1, x_201); -x_203 = lean_array_push(x_185, x_202); -x_204 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_205 = lean_array_push(x_203, x_204); -x_206 = lean_array_push(x_205, x_204); -x_207 = lean_array_push(x_206, x_204); -x_208 = lean_array_push(x_207, x_204); -x_209 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_210, 0, x_209); -lean_ctor_set(x_210, 1, x_208); -x_211 = lean_array_push(x_34, x_210); -x_212 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_178); +x_181 = l_Lean_addMacroScope(x_178, x_180, x_43); +x_182 = lean_box(0); +x_183 = l_Lean_instInhabitedSourceInfo___closed__1; +x_184 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_185 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +lean_ctor_set(x_185, 2, x_181); +lean_ctor_set(x_185, 3, x_182); +x_186 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_187 = lean_array_push(x_186, x_185); +x_188 = lean_mk_syntax_ident(x_24); +x_189 = lean_array_push(x_34, x_188); +x_190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_190, 0, x_36); +lean_ctor_set(x_190, 1, x_189); +x_191 = lean_array_push(x_187, x_190); +x_192 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +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_34, x_193); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_36); +lean_ctor_set(x_195, 1, x_194); +x_196 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_197 = lean_array_push(x_196, x_195); +x_198 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_199 = lean_array_push(x_197, x_198); +x_200 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +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_34, x_201); +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_36); +lean_ctor_set(x_203, 1, x_202); +x_204 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_205 = lean_array_push(x_204, x_203); +x_206 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_207 = lean_array_push(x_205, x_206); +x_208 = lean_array_push(x_207, x_206); +x_209 = lean_array_push(x_208, x_206); +x_210 = lean_array_push(x_209, x_206); +x_211 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_210); +x_213 = lean_array_push(x_34, x_212); +x_214 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; lean_inc(x_43); -lean_inc(x_177); -x_213 = l_Lean_addMacroScope(x_177, x_212, x_43); -x_214 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_215 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_215, 0, x_182); -lean_ctor_set(x_215, 1, x_214); -lean_ctor_set(x_215, 2, x_213); -lean_ctor_set(x_215, 3, x_181); -x_216 = lean_array_push(x_34, x_215); -x_217 = lean_array_push(x_216, x_204); -x_218 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_218); -lean_ctor_set(x_219, 1, x_217); -x_220 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_221 = lean_array_push(x_220, x_219); -x_222 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_178); +x_215 = l_Lean_addMacroScope(x_178, x_214, x_43); +x_216 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_217 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_217, 0, x_183); +lean_ctor_set(x_217, 1, x_216); +lean_ctor_set(x_217, 2, x_215); +lean_ctor_set(x_217, 3, x_182); +x_218 = lean_array_push(x_34, x_217); +x_219 = lean_array_push(x_218, x_206); +x_220 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +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 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_223 = lean_array_push(x_222, x_221); +x_224 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; lean_inc(x_43); -lean_inc(x_177); -x_223 = l_Lean_addMacroScope(x_177, x_222, x_43); -x_224 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_225 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_226 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_226, 0, x_182); -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 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_228 = lean_array_push(x_227, x_226); -x_229 = l_Lean_expandExplicitBindersAux_loop___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 = lean_array_push(x_34, x_230); +lean_inc(x_178); +x_225 = l_Lean_addMacroScope(x_178, x_224, x_43); +x_226 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_227 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_228 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_228, 0, x_183); +lean_ctor_set(x_228, 1, x_226); +lean_ctor_set(x_228, 2, x_225); +lean_ctor_set(x_228, 3, x_227); +x_229 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_230 = lean_array_push(x_229, x_228); +x_231 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_36); -lean_ctor_set(x_232, 1, x_231); -x_233 = lean_array_push(x_185, x_232); -x_234 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_221, x_235); -x_237 = l_stx___x3c_x7c_x3e_____closed__4; +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_230); +x_233 = lean_array_push(x_34, x_232); +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_36); +lean_ctor_set(x_234, 1, x_233); +x_235 = lean_array_push(x_204, x_234); +x_236 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_235); +x_238 = lean_array_push(x_223, x_237); +x_239 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_43); -lean_inc(x_177); -x_238 = l_Lean_addMacroScope(x_177, x_237, x_43); -x_239 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_240 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_240, 0, x_182); -lean_ctor_set(x_240, 1, x_239); -lean_ctor_set(x_240, 2, x_238); -lean_ctor_set(x_240, 3, x_181); -lean_inc(x_240); -x_241 = lean_array_push(x_34, x_240); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_36); +lean_inc(x_178); +x_240 = l_Lean_addMacroScope(x_178, x_239, x_43); +x_241 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_242 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_242, 0, x_183); lean_ctor_set(x_242, 1, x_241); +lean_ctor_set(x_242, 2, x_240); +lean_ctor_set(x_242, 3, x_182); +lean_inc(x_242); x_243 = lean_array_push(x_34, x_242); -x_244 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_245 = lean_array_push(x_243, x_244); -x_246 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_247 = lean_array_push(x_246, x_240); -x_248 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_249 = lean_array_push(x_247, x_248); -x_250 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_251 = lean_array_push(x_250, x_41); -x_252 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_253 = lean_array_push(x_251, x_252); -x_254 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___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_34, x_255); +x_244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_244, 0, x_36); +lean_ctor_set(x_244, 1, x_243); +x_245 = lean_array_push(x_34, x_244); +x_246 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_247 = lean_array_push(x_245, x_246); +x_248 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_249 = lean_array_push(x_248, x_242); +x_250 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_251 = lean_array_push(x_249, x_250); +x_252 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_253 = lean_array_push(x_252, x_41); +x_254 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_255 = lean_array_push(x_253, x_254); +x_256 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_257 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_257, 0, x_36); -lean_ctor_set(x_257, 1, x_256); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_255); x_258 = lean_array_push(x_34, x_257); -x_259 = lean_array_push(x_258, x_244); -x_260 = lean_array_push(x_250, x_1); -x_261 = lean_array_push(x_260, x_252); -x_262 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_262, 0, x_254); -lean_ctor_set(x_262, 1, x_261); -x_263 = lean_array_push(x_259, x_262); -x_264 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -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_34, x_265); -x_267 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_268 = lean_array_push(x_266, x_267); -x_269 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_270 = l_Lean_addMacroScope(x_177, x_269, x_43); -x_271 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_272 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_273 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_273, 0, x_182); -lean_ctor_set(x_273, 1, x_271); -lean_ctor_set(x_273, 2, x_270); -lean_ctor_set(x_273, 3, x_272); -x_274 = lean_array_push(x_34, x_273); -x_275 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_276 = lean_array_push(x_274, x_275); -x_277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_277, 0, x_40); -lean_ctor_set(x_277, 1, x_276); -x_278 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_279 = lean_array_push(x_278, x_277); -x_280 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_280, 0, x_264); -lean_ctor_set(x_280, 1, x_279); -x_281 = lean_array_push(x_268, x_280); +x_259 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_259, 0, x_36); +lean_ctor_set(x_259, 1, x_258); +x_260 = lean_array_push(x_34, x_259); +x_261 = lean_array_push(x_260, x_246); +x_262 = lean_array_push(x_252, x_1); +x_263 = lean_array_push(x_262, x_254); +x_264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_264, 0, x_256); +lean_ctor_set(x_264, 1, x_263); +x_265 = lean_array_push(x_261, x_264); +x_266 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_267 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_267, 0, x_266); +lean_ctor_set(x_267, 1, x_265); +x_268 = lean_array_push(x_34, x_267); +x_269 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_270 = lean_array_push(x_268, x_269); +x_271 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_272 = l_Lean_addMacroScope(x_178, x_271, x_43); +x_273 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_274 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_275 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_275, 0, x_183); +lean_ctor_set(x_275, 1, x_273); +lean_ctor_set(x_275, 2, x_272); +lean_ctor_set(x_275, 3, x_274); +x_276 = lean_array_push(x_34, x_275); +x_277 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_278 = lean_array_push(x_276, x_277); +x_279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_279, 0, x_40); +lean_ctor_set(x_279, 1, x_278); +x_280 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_281 = lean_array_push(x_280, x_279); x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_36); +lean_ctor_set(x_282, 0, x_266); lean_ctor_set(x_282, 1, x_281); -x_283 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_284 = lean_array_push(x_283, x_282); -x_285 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_286, 0, x_285); -lean_ctor_set(x_286, 1, x_284); -x_287 = lean_array_push(x_249, x_286); -x_288 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_289, 0, x_288); -lean_ctor_set(x_289, 1, x_287); -x_290 = lean_array_push(x_245, x_289); -x_291 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -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_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_294 = lean_array_push(x_293, x_292); -x_295 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_296 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_296, 0, x_295); -lean_ctor_set(x_296, 1, x_294); -x_297 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_298 = lean_array_push(x_297, x_296); -x_299 = lean_array_push(x_298, x_204); -x_300 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_301, 0, x_300); -lean_ctor_set(x_301, 1, x_299); -x_302 = lean_array_push(x_236, x_301); -x_303 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_211, x_304); -x_306 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_307 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_307, 0, x_306); -lean_ctor_set(x_307, 1, x_305); -lean_ctor_set(x_9, 0, x_307); -x_308 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_308, 0, x_9); -lean_ctor_set(x_308, 1, x_178); -return x_308; +x_283 = lean_array_push(x_270, x_282); +x_284 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_284, 0, x_36); +lean_ctor_set(x_284, 1, x_283); +x_285 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_286 = lean_array_push(x_285, x_284); +x_287 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_288, 0, x_287); +lean_ctor_set(x_288, 1, x_286); +x_289 = lean_array_push(x_251, x_288); +x_290 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_291 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_291, 0, x_290); +lean_ctor_set(x_291, 1, x_289); +x_292 = lean_array_push(x_247, x_291); +x_293 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_294, 0, x_293); +lean_ctor_set(x_294, 1, x_292); +x_295 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_296 = lean_array_push(x_295, x_294); +x_297 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_298 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_298, 0, x_297); +lean_ctor_set(x_298, 1, x_296); +x_299 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_300 = lean_array_push(x_299, x_298); +x_301 = lean_array_push(x_300, x_206); +x_302 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +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_238, x_303); +x_305 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_305); +lean_ctor_set(x_306, 1, x_304); +x_307 = lean_array_push(x_213, x_306); +x_308 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_309 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_309, 0, x_308); +lean_ctor_set(x_309, 1, x_307); +lean_ctor_set(x_9, 0, x_309); +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_9); +lean_ctor_set(x_310, 1, x_179); +return x_310; } } } else { -uint8_t x_309; -x_309 = lean_nat_dec_le(x_25, x_25); -if (x_309 == 0) +uint8_t x_311; +x_311 = lean_nat_dec_le(x_25, x_25); +if (x_311 == 0) { -uint8_t x_310; +uint8_t x_312; lean_dec(x_25); -x_310 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_26); -if (x_310 == 0) +x_312 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_26); +if (x_312 == 0) { -lean_object* x_311; +lean_object* x_313; lean_dec(x_24); lean_free_object(x_9); lean_dec(x_1); -x_311 = lean_box(0); -lean_ctor_set(x_8, 0, x_311); +x_313 = lean_box(0); +lean_ctor_set(x_8, 0, x_313); return x_8; } else { -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; uint8_t x_328; +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; uint8_t x_330; lean_free_object(x_8); -x_312 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_22); -x_313 = lean_ctor_get(x_312, 1); -lean_inc(x_313); -lean_dec(x_312); -x_314 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_313); +x_314 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_22); x_315 = lean_ctor_get(x_314, 1); lean_inc(x_315); lean_dec(x_314); -x_316 = l_Array_empty___closed__1; -x_317 = l_Array_appendCore___rarg(x_316, x_3); -x_318 = l_Lean_nullKind___closed__2; -x_319 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_319, 0, x_318); -lean_ctor_set(x_319, 1, x_317); -x_320 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_321 = lean_array_push(x_320, x_319); -x_322 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_323, 0, x_322); -lean_ctor_set(x_323, 1, x_321); -x_324 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_315); -x_325 = lean_ctor_get(x_324, 0); -lean_inc(x_325); -x_326 = lean_ctor_get(x_324, 1); -lean_inc(x_326); -lean_dec(x_324); -x_327 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_326); -x_328 = !lean_is_exclusive(x_327); -if (x_328 == 0) +x_316 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_315); +x_317 = lean_ctor_get(x_316, 1); +lean_inc(x_317); +lean_dec(x_316); +x_318 = l_Array_empty___closed__1; +x_319 = l_Array_appendCore___rarg(x_318, x_3); +x_320 = l_Lean_nullKind___closed__2; +x_321 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_321, 0, x_320); +lean_ctor_set(x_321, 1, x_319); +x_322 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_323 = lean_array_push(x_322, x_321); +x_324 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_325 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_325, 0, x_324); +lean_ctor_set(x_325, 1, x_323); +x_326 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_317); +x_327 = lean_ctor_get(x_326, 0); +lean_inc(x_327); +x_328 = lean_ctor_get(x_326, 1); +lean_inc(x_328); +lean_dec(x_326); +x_329 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_328); +x_330 = !lean_is_exclusive(x_329); +if (x_330 == 0) { -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; 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; -x_329 = lean_ctor_get(x_327, 0); -x_330 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_325); -lean_inc(x_329); -x_331 = l_Lean_addMacroScope(x_329, x_330, x_325); -x_332 = lean_box(0); -x_333 = l_Lean_instInhabitedSourceInfo___closed__1; -x_334 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_335 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -lean_ctor_set(x_335, 2, x_331); -lean_ctor_set(x_335, 3, x_332); -x_336 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_337 = lean_array_push(x_336, x_335); -x_338 = lean_mk_syntax_ident(x_24); -x_339 = lean_array_push(x_316, x_338); -x_340 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_340, 0, x_318); -lean_ctor_set(x_340, 1, x_339); -x_341 = lean_array_push(x_337, x_340); -x_342 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_343 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_343, 0, x_342); -lean_ctor_set(x_343, 1, x_341); -x_344 = lean_array_push(x_316, x_343); +lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; 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; +x_331 = lean_ctor_get(x_329, 0); +x_332 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_327); +lean_inc(x_331); +x_333 = l_Lean_addMacroScope(x_331, x_332, x_327); +x_334 = lean_box(0); +x_335 = l_Lean_instInhabitedSourceInfo___closed__1; +x_336 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_337 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_337, 0, x_335); +lean_ctor_set(x_337, 1, x_336); +lean_ctor_set(x_337, 2, x_333); +lean_ctor_set(x_337, 3, x_334); +x_338 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_339 = lean_array_push(x_338, x_337); +x_340 = lean_mk_syntax_ident(x_24); +x_341 = lean_array_push(x_318, x_340); +x_342 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_342, 0, x_320); +lean_ctor_set(x_342, 1, x_341); +x_343 = lean_array_push(x_339, x_342); +x_344 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; x_345 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_345, 0, x_318); -lean_ctor_set(x_345, 1, x_344); -x_346 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_347 = lean_array_push(x_346, x_345); -x_348 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_349 = lean_array_push(x_347, x_348); -x_350 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_351 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_351, 0, x_350); -lean_ctor_set(x_351, 1, x_349); -x_352 = lean_array_push(x_316, x_351); +lean_ctor_set(x_345, 0, x_344); +lean_ctor_set(x_345, 1, x_343); +x_346 = lean_array_push(x_318, x_345); +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_320); +lean_ctor_set(x_347, 1, x_346); +x_348 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_349 = lean_array_push(x_348, x_347); +x_350 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_351 = lean_array_push(x_349, x_350); +x_352 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; x_353 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_353, 0, x_318); -lean_ctor_set(x_353, 1, x_352); -x_354 = lean_array_push(x_336, x_353); -x_355 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_356 = lean_array_push(x_354, x_355); +lean_ctor_set(x_353, 0, x_352); +lean_ctor_set(x_353, 1, x_351); +x_354 = lean_array_push(x_318, x_353); +x_355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_355, 0, x_320); +lean_ctor_set(x_355, 1, x_354); +x_356 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; x_357 = lean_array_push(x_356, x_355); -x_358 = lean_array_push(x_357, x_355); -x_359 = lean_array_push(x_358, x_355); -x_360 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_361 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_361, 0, x_360); -lean_ctor_set(x_361, 1, x_359); -x_362 = lean_array_push(x_316, x_361); -x_363 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_325); -lean_inc(x_329); -x_364 = l_Lean_addMacroScope(x_329, x_363, x_325); -x_365 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_366 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_366, 0, x_333); -lean_ctor_set(x_366, 1, x_365); -lean_ctor_set(x_366, 2, x_364); -lean_ctor_set(x_366, 3, x_332); -x_367 = lean_array_push(x_316, x_366); -x_368 = lean_array_push(x_367, x_355); -x_369 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_370 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_370, 0, x_369); -lean_ctor_set(x_370, 1, x_368); -x_371 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_372 = lean_array_push(x_371, x_370); -x_373 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_325); -lean_inc(x_329); -x_374 = l_Lean_addMacroScope(x_329, x_373, x_325); -x_375 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_376 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_377 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_377, 0, x_333); -lean_ctor_set(x_377, 1, x_375); -lean_ctor_set(x_377, 2, x_374); -lean_ctor_set(x_377, 3, x_376); -x_378 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_379 = lean_array_push(x_378, x_377); -x_380 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_381 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_381, 0, x_380); -lean_ctor_set(x_381, 1, x_379); -x_382 = lean_array_push(x_316, x_381); -x_383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_383, 0, x_318); -lean_ctor_set(x_383, 1, x_382); -x_384 = lean_array_push(x_336, x_383); -x_385 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_358 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_359 = lean_array_push(x_357, x_358); +x_360 = lean_array_push(x_359, x_358); +x_361 = lean_array_push(x_360, x_358); +x_362 = lean_array_push(x_361, x_358); +x_363 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_364 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_364, 0, x_363); +lean_ctor_set(x_364, 1, x_362); +x_365 = lean_array_push(x_318, x_364); +x_366 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_327); +lean_inc(x_331); +x_367 = l_Lean_addMacroScope(x_331, x_366, x_327); +x_368 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_369 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_369, 0, x_335); +lean_ctor_set(x_369, 1, x_368); +lean_ctor_set(x_369, 2, x_367); +lean_ctor_set(x_369, 3, x_334); +x_370 = lean_array_push(x_318, x_369); +x_371 = lean_array_push(x_370, x_358); +x_372 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_373, 0, x_372); +lean_ctor_set(x_373, 1, x_371); +x_374 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_375 = lean_array_push(x_374, x_373); +x_376 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_327); +lean_inc(x_331); +x_377 = l_Lean_addMacroScope(x_331, x_376, x_327); +x_378 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_379 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_380 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_380, 0, x_335); +lean_ctor_set(x_380, 1, x_378); +lean_ctor_set(x_380, 2, x_377); +lean_ctor_set(x_380, 3, x_379); +x_381 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_382 = lean_array_push(x_381, x_380); +x_383 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_384 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_384, 0, x_383); +lean_ctor_set(x_384, 1, x_382); +x_385 = lean_array_push(x_318, x_384); x_386 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_386, 0, x_385); -lean_ctor_set(x_386, 1, x_384); -x_387 = lean_array_push(x_372, x_386); -x_388 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_325); -lean_inc(x_329); -x_389 = l_Lean_addMacroScope(x_329, x_388, x_325); -x_390 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_391 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_391, 0, x_333); -lean_ctor_set(x_391, 1, x_390); -lean_ctor_set(x_391, 2, x_389); -lean_ctor_set(x_391, 3, x_332); -lean_inc(x_391); -x_392 = lean_array_push(x_316, x_391); -x_393 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_393, 0, x_318); -lean_ctor_set(x_393, 1, x_392); -x_394 = lean_array_push(x_316, x_393); -x_395 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_396 = lean_array_push(x_394, x_395); -x_397 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_398 = lean_array_push(x_397, x_391); -x_399 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_400 = lean_array_push(x_398, x_399); -x_401 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_402 = lean_array_push(x_401, x_323); -x_403 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_404 = lean_array_push(x_402, x_403); -x_405 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___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_316, x_406); -x_408 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_408, 0, x_318); -lean_ctor_set(x_408, 1, x_407); -x_409 = lean_array_push(x_316, x_408); -x_410 = lean_array_push(x_409, x_395); -x_411 = lean_array_push(x_401, x_1); -x_412 = lean_array_push(x_411, x_403); -x_413 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_413, 0, x_405); -lean_ctor_set(x_413, 1, x_412); -x_414 = lean_array_push(x_410, x_413); -x_415 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +lean_ctor_set(x_386, 0, x_320); +lean_ctor_set(x_386, 1, x_385); +x_387 = lean_array_push(x_356, x_386); +x_388 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_389, 0, x_388); +lean_ctor_set(x_389, 1, x_387); +x_390 = lean_array_push(x_375, x_389); +x_391 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_327); +lean_inc(x_331); +x_392 = l_Lean_addMacroScope(x_331, x_391, x_327); +x_393 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_394 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_394, 0, x_335); +lean_ctor_set(x_394, 1, x_393); +lean_ctor_set(x_394, 2, x_392); +lean_ctor_set(x_394, 3, x_334); +lean_inc(x_394); +x_395 = lean_array_push(x_318, x_394); +x_396 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_396, 0, x_320); +lean_ctor_set(x_396, 1, x_395); +x_397 = lean_array_push(x_318, x_396); +x_398 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_399 = lean_array_push(x_397, x_398); +x_400 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_401 = lean_array_push(x_400, x_394); +x_402 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_403 = lean_array_push(x_401, x_402); +x_404 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_405 = lean_array_push(x_404, x_325); +x_406 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_407 = lean_array_push(x_405, x_406); +x_408 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_409 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_409, 0, x_408); +lean_ctor_set(x_409, 1, x_407); +x_410 = lean_array_push(x_318, x_409); +x_411 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_411, 0, x_320); +lean_ctor_set(x_411, 1, x_410); +x_412 = lean_array_push(x_318, x_411); +x_413 = lean_array_push(x_412, x_398); +x_414 = lean_array_push(x_404, x_1); +x_415 = lean_array_push(x_414, x_406); x_416 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_416, 0, x_415); -lean_ctor_set(x_416, 1, x_414); -x_417 = lean_array_push(x_316, x_416); -x_418 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_419 = lean_array_push(x_417, x_418); -x_420 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_421 = l_Lean_addMacroScope(x_329, x_420, x_325); -x_422 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_423 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_424 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_424, 0, x_333); -lean_ctor_set(x_424, 1, x_422); -lean_ctor_set(x_424, 2, x_421); -lean_ctor_set(x_424, 3, x_423); -x_425 = lean_array_push(x_316, x_424); -x_426 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_427 = lean_array_push(x_425, x_426); -x_428 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_428, 0, x_322); -lean_ctor_set(x_428, 1, x_427); -x_429 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_430 = lean_array_push(x_429, x_428); +lean_ctor_set(x_416, 0, x_408); +lean_ctor_set(x_416, 1, x_415); +x_417 = lean_array_push(x_413, x_416); +x_418 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_419 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_419, 0, x_418); +lean_ctor_set(x_419, 1, x_417); +x_420 = lean_array_push(x_318, x_419); +x_421 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_422 = lean_array_push(x_420, x_421); +x_423 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_424 = l_Lean_addMacroScope(x_331, x_423, x_327); +x_425 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_426 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_427 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_427, 0, x_335); +lean_ctor_set(x_427, 1, x_425); +lean_ctor_set(x_427, 2, x_424); +lean_ctor_set(x_427, 3, x_426); +x_428 = lean_array_push(x_318, x_427); +x_429 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_430 = lean_array_push(x_428, x_429); x_431 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_431, 0, x_415); +lean_ctor_set(x_431, 0, x_324); lean_ctor_set(x_431, 1, x_430); -x_432 = lean_array_push(x_419, x_431); -x_433 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_433, 0, x_318); -lean_ctor_set(x_433, 1, x_432); -x_434 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_435 = lean_array_push(x_434, x_433); -x_436 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -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_400, x_437); -x_439 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_432 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_433 = lean_array_push(x_432, x_431); +x_434 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_434, 0, x_418); +lean_ctor_set(x_434, 1, x_433); +x_435 = lean_array_push(x_422, x_434); +x_436 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_436, 0, x_320); +lean_ctor_set(x_436, 1, x_435); +x_437 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_438 = lean_array_push(x_437, x_436); +x_439 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; x_440 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_440, 0, x_439); lean_ctor_set(x_440, 1, x_438); -x_441 = lean_array_push(x_396, x_440); -x_442 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_441 = lean_array_push(x_403, x_440); +x_442 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_443 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_443, 0, x_442); lean_ctor_set(x_443, 1, x_441); -x_444 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_445 = lean_array_push(x_444, x_443); -x_446 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_447, 0, x_446); -lean_ctor_set(x_447, 1, x_445); -x_448 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_449 = lean_array_push(x_448, x_447); -x_450 = lean_array_push(x_449, x_355); -x_451 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_452 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_452, 0, x_451); -lean_ctor_set(x_452, 1, x_450); -x_453 = lean_array_push(x_387, x_452); -x_454 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_444 = lean_array_push(x_399, x_443); +x_445 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_448 = lean_array_push(x_447, x_446); +x_449 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_450 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_450, 0, x_449); +lean_ctor_set(x_450, 1, x_448); +x_451 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_452 = lean_array_push(x_451, x_450); +x_453 = lean_array_push(x_452, x_358); +x_454 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; 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_362, x_455); -x_457 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_456 = lean_array_push(x_390, x_455); +x_457 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; x_458 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_458, 0, x_457); lean_ctor_set(x_458, 1, x_456); -lean_ctor_set(x_9, 0, x_458); -lean_ctor_set(x_327, 0, x_9); -return x_327; +x_459 = lean_array_push(x_365, x_458); +x_460 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_461 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_461, 0, x_460); +lean_ctor_set(x_461, 1, x_459); +lean_ctor_set(x_9, 0, x_461); +lean_ctor_set(x_329, 0, x_9); +return x_329; } else { -lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; 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; -x_459 = lean_ctor_get(x_327, 0); -x_460 = lean_ctor_get(x_327, 1); -lean_inc(x_460); -lean_inc(x_459); -lean_dec(x_327); -x_461 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_325); -lean_inc(x_459); -x_462 = l_Lean_addMacroScope(x_459, x_461, x_325); -x_463 = lean_box(0); -x_464 = l_Lean_instInhabitedSourceInfo___closed__1; -x_465 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_466 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_466, 0, x_464); -lean_ctor_set(x_466, 1, x_465); -lean_ctor_set(x_466, 2, x_462); -lean_ctor_set(x_466, 3, x_463); -x_467 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_468 = lean_array_push(x_467, x_466); -x_469 = lean_mk_syntax_ident(x_24); -x_470 = lean_array_push(x_316, x_469); -x_471 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_471, 0, x_318); -lean_ctor_set(x_471, 1, x_470); -x_472 = lean_array_push(x_468, x_471); -x_473 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; 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; +x_462 = lean_ctor_get(x_329, 0); +x_463 = lean_ctor_get(x_329, 1); +lean_inc(x_463); +lean_inc(x_462); +lean_dec(x_329); +x_464 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_327); +lean_inc(x_462); +x_465 = l_Lean_addMacroScope(x_462, x_464, x_327); +x_466 = lean_box(0); +x_467 = l_Lean_instInhabitedSourceInfo___closed__1; +x_468 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_469 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_469, 0, x_467); +lean_ctor_set(x_469, 1, x_468); +lean_ctor_set(x_469, 2, x_465); +lean_ctor_set(x_469, 3, x_466); +x_470 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_471 = lean_array_push(x_470, x_469); +x_472 = lean_mk_syntax_ident(x_24); +x_473 = lean_array_push(x_318, x_472); x_474 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_474, 0, x_473); -lean_ctor_set(x_474, 1, x_472); -x_475 = lean_array_push(x_316, x_474); -x_476 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_476, 0, x_318); -lean_ctor_set(x_476, 1, x_475); -x_477 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_478 = lean_array_push(x_477, x_476); -x_479 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_480 = lean_array_push(x_478, x_479); -x_481 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -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_316, x_482); -x_484 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_484, 0, x_318); -lean_ctor_set(x_484, 1, x_483); -x_485 = lean_array_push(x_467, x_484); -x_486 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_487 = lean_array_push(x_485, x_486); -x_488 = lean_array_push(x_487, x_486); -x_489 = lean_array_push(x_488, x_486); -x_490 = lean_array_push(x_489, x_486); -x_491 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_492 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_492, 0, x_491); -lean_ctor_set(x_492, 1, x_490); -x_493 = lean_array_push(x_316, x_492); -x_494 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_325); -lean_inc(x_459); -x_495 = l_Lean_addMacroScope(x_459, x_494, x_325); -x_496 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_497 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_497, 0, x_464); -lean_ctor_set(x_497, 1, x_496); -lean_ctor_set(x_497, 2, x_495); -lean_ctor_set(x_497, 3, x_463); -x_498 = lean_array_push(x_316, x_497); -x_499 = lean_array_push(x_498, x_486); -x_500 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_501, 0, x_500); -lean_ctor_set(x_501, 1, x_499); -x_502 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_503 = lean_array_push(x_502, x_501); -x_504 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_325); -lean_inc(x_459); -x_505 = l_Lean_addMacroScope(x_459, x_504, x_325); -x_506 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_507 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_508 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_508, 0, x_464); -lean_ctor_set(x_508, 1, x_506); -lean_ctor_set(x_508, 2, x_505); -lean_ctor_set(x_508, 3, x_507); -x_509 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_510 = lean_array_push(x_509, x_508); -x_511 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_512 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_512, 0, x_511); +lean_ctor_set(x_474, 0, x_320); +lean_ctor_set(x_474, 1, x_473); +x_475 = lean_array_push(x_471, x_474); +x_476 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_477, 0, x_476); +lean_ctor_set(x_477, 1, x_475); +x_478 = lean_array_push(x_318, x_477); +x_479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_479, 0, x_320); +lean_ctor_set(x_479, 1, x_478); +x_480 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_481 = lean_array_push(x_480, x_479); +x_482 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_483 = lean_array_push(x_481, x_482); +x_484 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_485 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_485, 0, x_484); +lean_ctor_set(x_485, 1, x_483); +x_486 = lean_array_push(x_318, x_485); +x_487 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_487, 0, x_320); +lean_ctor_set(x_487, 1, x_486); +x_488 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_489 = lean_array_push(x_488, x_487); +x_490 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_491 = lean_array_push(x_489, x_490); +x_492 = lean_array_push(x_491, x_490); +x_493 = lean_array_push(x_492, x_490); +x_494 = lean_array_push(x_493, x_490); +x_495 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_496 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_496, 0, x_495); +lean_ctor_set(x_496, 1, x_494); +x_497 = lean_array_push(x_318, x_496); +x_498 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_327); +lean_inc(x_462); +x_499 = l_Lean_addMacroScope(x_462, x_498, x_327); +x_500 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_501 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_501, 0, x_467); +lean_ctor_set(x_501, 1, x_500); +lean_ctor_set(x_501, 2, x_499); +lean_ctor_set(x_501, 3, x_466); +x_502 = lean_array_push(x_318, x_501); +x_503 = lean_array_push(x_502, x_490); +x_504 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_505, 0, x_504); +lean_ctor_set(x_505, 1, x_503); +x_506 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_507 = lean_array_push(x_506, x_505); +x_508 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_327); +lean_inc(x_462); +x_509 = l_Lean_addMacroScope(x_462, x_508, x_327); +x_510 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_511 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_512 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_512, 0, x_467); lean_ctor_set(x_512, 1, x_510); -x_513 = lean_array_push(x_316, x_512); -x_514 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_514, 0, x_318); -lean_ctor_set(x_514, 1, x_513); -x_515 = lean_array_push(x_467, x_514); -x_516 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_517 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_517, 0, x_516); -lean_ctor_set(x_517, 1, x_515); -x_518 = lean_array_push(x_503, x_517); -x_519 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_325); -lean_inc(x_459); -x_520 = l_Lean_addMacroScope(x_459, x_519, x_325); -x_521 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_522 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_522, 0, x_464); -lean_ctor_set(x_522, 1, x_521); -lean_ctor_set(x_522, 2, x_520); -lean_ctor_set(x_522, 3, x_463); -lean_inc(x_522); -x_523 = lean_array_push(x_316, x_522); -x_524 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_524, 0, x_318); -lean_ctor_set(x_524, 1, x_523); -x_525 = lean_array_push(x_316, x_524); -x_526 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_527 = lean_array_push(x_525, x_526); -x_528 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_529 = lean_array_push(x_528, x_522); -x_530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +lean_ctor_set(x_512, 2, x_509); +lean_ctor_set(x_512, 3, x_511); +x_513 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_514 = lean_array_push(x_513, x_512); +x_515 = l_Lean_expandExplicitBindersAux_loop___closed__8; +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 = lean_array_push(x_318, x_516); +x_518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_518, 0, x_320); +lean_ctor_set(x_518, 1, x_517); +x_519 = lean_array_push(x_488, x_518); +x_520 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_521 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_521, 0, x_520); +lean_ctor_set(x_521, 1, x_519); +x_522 = lean_array_push(x_507, x_521); +x_523 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_327); +lean_inc(x_462); +x_524 = l_Lean_addMacroScope(x_462, x_523, x_327); +x_525 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_526 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_526, 0, x_467); +lean_ctor_set(x_526, 1, x_525); +lean_ctor_set(x_526, 2, x_524); +lean_ctor_set(x_526, 3, x_466); +lean_inc(x_526); +x_527 = lean_array_push(x_318, x_526); +x_528 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_528, 0, x_320); +lean_ctor_set(x_528, 1, x_527); +x_529 = lean_array_push(x_318, x_528); +x_530 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_531 = lean_array_push(x_529, x_530); -x_532 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_533 = lean_array_push(x_532, x_323); -x_534 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_532 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_533 = lean_array_push(x_532, x_526); +x_534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_535 = lean_array_push(x_533, x_534); -x_536 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_537 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_537, 0, x_536); -lean_ctor_set(x_537, 1, x_535); -x_538 = lean_array_push(x_316, x_537); -x_539 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_539, 0, x_318); -lean_ctor_set(x_539, 1, x_538); -x_540 = lean_array_push(x_316, x_539); -x_541 = lean_array_push(x_540, x_526); -x_542 = lean_array_push(x_532, x_1); -x_543 = lean_array_push(x_542, x_534); -x_544 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_544, 0, x_536); -lean_ctor_set(x_544, 1, x_543); -x_545 = lean_array_push(x_541, x_544); -x_546 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -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 = lean_array_push(x_316, x_547); -x_549 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_550 = lean_array_push(x_548, x_549); -x_551 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_552 = l_Lean_addMacroScope(x_459, x_551, x_325); -x_553 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_554 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_555 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_555, 0, x_464); -lean_ctor_set(x_555, 1, x_553); -lean_ctor_set(x_555, 2, x_552); -lean_ctor_set(x_555, 3, x_554); -x_556 = lean_array_push(x_316, x_555); -x_557 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_558 = lean_array_push(x_556, x_557); -x_559 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_559, 0, x_322); -lean_ctor_set(x_559, 1, x_558); -x_560 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_561 = lean_array_push(x_560, x_559); -x_562 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_562, 0, x_546); -lean_ctor_set(x_562, 1, x_561); -x_563 = lean_array_push(x_550, x_562); -x_564 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_564, 0, x_318); -lean_ctor_set(x_564, 1, x_563); -x_565 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_566 = lean_array_push(x_565, x_564); -x_567 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_536 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_537 = lean_array_push(x_536, x_325); +x_538 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_539 = lean_array_push(x_537, x_538); +x_540 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_541 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_541, 0, x_540); +lean_ctor_set(x_541, 1, x_539); +x_542 = lean_array_push(x_318, x_541); +x_543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_543, 0, x_320); +lean_ctor_set(x_543, 1, x_542); +x_544 = lean_array_push(x_318, x_543); +x_545 = lean_array_push(x_544, x_530); +x_546 = lean_array_push(x_536, x_1); +x_547 = lean_array_push(x_546, x_538); +x_548 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_548, 0, x_540); +lean_ctor_set(x_548, 1, x_547); +x_549 = lean_array_push(x_545, x_548); +x_550 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_551 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_551, 0, x_550); +lean_ctor_set(x_551, 1, x_549); +x_552 = lean_array_push(x_318, x_551); +x_553 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_554 = lean_array_push(x_552, x_553); +x_555 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_556 = l_Lean_addMacroScope(x_462, x_555, x_327); +x_557 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_558 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_559 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_559, 0, x_467); +lean_ctor_set(x_559, 1, x_557); +lean_ctor_set(x_559, 2, x_556); +lean_ctor_set(x_559, 3, x_558); +x_560 = lean_array_push(x_318, x_559); +x_561 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_562 = lean_array_push(x_560, x_561); +x_563 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_563, 0, x_324); +lean_ctor_set(x_563, 1, x_562); +x_564 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_565 = lean_array_push(x_564, x_563); +x_566 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_566, 0, x_550); +lean_ctor_set(x_566, 1, x_565); +x_567 = lean_array_push(x_554, x_566); x_568 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_568, 0, x_567); -lean_ctor_set(x_568, 1, x_566); -x_569 = lean_array_push(x_531, x_568); -x_570 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_571 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_571, 0, x_570); -lean_ctor_set(x_571, 1, x_569); -x_572 = lean_array_push(x_527, x_571); -x_573 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_574 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_574, 0, x_573); -lean_ctor_set(x_574, 1, x_572); -x_575 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_576 = lean_array_push(x_575, x_574); -x_577 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +lean_ctor_set(x_568, 0, x_320); +lean_ctor_set(x_568, 1, x_567); +x_569 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_570 = lean_array_push(x_569, x_568); +x_571 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_572 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_572, 0, x_571); +lean_ctor_set(x_572, 1, x_570); +x_573 = lean_array_push(x_535, x_572); +x_574 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_575 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_575, 0, x_574); +lean_ctor_set(x_575, 1, x_573); +x_576 = lean_array_push(x_531, x_575); +x_577 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; x_578 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_578, 0, x_577); lean_ctor_set(x_578, 1, x_576); -x_579 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_579 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; x_580 = lean_array_push(x_579, x_578); -x_581 = lean_array_push(x_580, x_486); -x_582 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_583, 0, x_582); -lean_ctor_set(x_583, 1, x_581); -x_584 = lean_array_push(x_518, x_583); -x_585 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_586 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_586, 0, x_585); -lean_ctor_set(x_586, 1, x_584); -x_587 = lean_array_push(x_493, x_586); -x_588 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_589 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_589, 0, x_588); -lean_ctor_set(x_589, 1, x_587); -lean_ctor_set(x_9, 0, x_589); -x_590 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_590, 0, x_9); -lean_ctor_set(x_590, 1, x_460); -return x_590; +x_581 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_582 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_582, 0, x_581); +lean_ctor_set(x_582, 1, x_580); +x_583 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_584 = lean_array_push(x_583, x_582); +x_585 = lean_array_push(x_584, x_490); +x_586 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_587 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_587, 0, x_586); +lean_ctor_set(x_587, 1, x_585); +x_588 = lean_array_push(x_522, x_587); +x_589 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_590 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_590, 0, x_589); +lean_ctor_set(x_590, 1, x_588); +x_591 = lean_array_push(x_497, x_590); +x_592 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_593 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_593, 0, x_592); +lean_ctor_set(x_593, 1, x_591); +lean_ctor_set(x_9, 0, x_593); +x_594 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_594, 0, x_9); +lean_ctor_set(x_594, 1, x_463); +return x_594; } } } else { -size_t x_591; size_t x_592; uint8_t x_593; -x_591 = 0; -x_592 = lean_usize_of_nat(x_25); +size_t x_595; size_t x_596; uint8_t x_597; +x_595 = 0; +x_596 = lean_usize_of_nat(x_25); lean_dec(x_25); -x_593 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_3, x_591, x_592); -if (x_593 == 0) +x_597 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_3, x_595, x_596); +if (x_597 == 0) { -uint8_t x_594; -x_594 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_26); -if (x_594 == 0) +uint8_t x_598; +x_598 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_26); +if (x_598 == 0) { -lean_object* x_595; +lean_object* x_599; lean_dec(x_24); lean_free_object(x_9); lean_dec(x_1); -x_595 = lean_box(0); -lean_ctor_set(x_8, 0, x_595); +x_599 = lean_box(0); +lean_ctor_set(x_8, 0, x_599); return x_8; } else { -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; uint8_t x_612; +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; uint8_t x_616; lean_free_object(x_8); -x_596 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_22); -x_597 = lean_ctor_get(x_596, 1); -lean_inc(x_597); -lean_dec(x_596); -x_598 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_597); -x_599 = lean_ctor_get(x_598, 1); -lean_inc(x_599); -lean_dec(x_598); -x_600 = l_Array_empty___closed__1; -x_601 = l_Array_appendCore___rarg(x_600, x_3); -x_602 = l_Lean_nullKind___closed__2; -x_603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_603, 0, x_602); -lean_ctor_set(x_603, 1, x_601); -x_604 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_605 = lean_array_push(x_604, x_603); -x_606 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_600 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_22); +x_601 = lean_ctor_get(x_600, 1); +lean_inc(x_601); +lean_dec(x_600); +x_602 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_601); +x_603 = lean_ctor_get(x_602, 1); +lean_inc(x_603); +lean_dec(x_602); +x_604 = l_Array_empty___closed__1; +x_605 = l_Array_appendCore___rarg(x_604, x_3); +x_606 = l_Lean_nullKind___closed__2; x_607 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_607, 0, x_606); lean_ctor_set(x_607, 1, x_605); -x_608 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_599); -x_609 = lean_ctor_get(x_608, 0); -lean_inc(x_609); -x_610 = lean_ctor_get(x_608, 1); -lean_inc(x_610); -lean_dec(x_608); -x_611 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_610); -x_612 = !lean_is_exclusive(x_611); -if (x_612 == 0) +x_608 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_609 = lean_array_push(x_608, x_607); +x_610 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_603); +x_613 = lean_ctor_get(x_612, 0); +lean_inc(x_613); +x_614 = lean_ctor_get(x_612, 1); +lean_inc(x_614); +lean_dec(x_612); +x_615 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_614); +x_616 = !lean_is_exclusive(x_615); +if (x_616 == 0) { -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_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; -x_613 = lean_ctor_get(x_611, 0); -x_614 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_609); +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_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; +x_617 = lean_ctor_get(x_615, 0); +x_618 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; lean_inc(x_613); -x_615 = l_Lean_addMacroScope(x_613, x_614, x_609); -x_616 = lean_box(0); -x_617 = l_Lean_instInhabitedSourceInfo___closed__1; -x_618 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_619 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_619, 0, x_617); -lean_ctor_set(x_619, 1, x_618); -lean_ctor_set(x_619, 2, x_615); -lean_ctor_set(x_619, 3, x_616); -x_620 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_621 = lean_array_push(x_620, x_619); -x_622 = lean_mk_syntax_ident(x_24); -x_623 = lean_array_push(x_600, x_622); -x_624 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_624, 0, x_602); -lean_ctor_set(x_624, 1, x_623); -x_625 = lean_array_push(x_621, x_624); -x_626 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -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_600, x_627); -x_629 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_629, 0, x_602); -lean_ctor_set(x_629, 1, x_628); -x_630 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_631 = lean_array_push(x_630, x_629); -x_632 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_633 = lean_array_push(x_631, x_632); -x_634 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_635 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_635, 0, x_634); -lean_ctor_set(x_635, 1, x_633); -x_636 = lean_array_push(x_600, x_635); -x_637 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_637, 0, x_602); -lean_ctor_set(x_637, 1, x_636); -x_638 = lean_array_push(x_620, x_637); -x_639 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_640 = lean_array_push(x_638, x_639); -x_641 = lean_array_push(x_640, x_639); -x_642 = lean_array_push(x_641, x_639); -x_643 = lean_array_push(x_642, x_639); -x_644 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_645 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_645, 0, x_644); -lean_ctor_set(x_645, 1, x_643); -x_646 = lean_array_push(x_600, x_645); -x_647 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_609); +lean_inc(x_617); +x_619 = l_Lean_addMacroScope(x_617, x_618, x_613); +x_620 = lean_box(0); +x_621 = l_Lean_instInhabitedSourceInfo___closed__1; +x_622 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_623 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_623, 0, x_621); +lean_ctor_set(x_623, 1, x_622); +lean_ctor_set(x_623, 2, x_619); +lean_ctor_set(x_623, 3, x_620); +x_624 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_625 = lean_array_push(x_624, x_623); +x_626 = lean_mk_syntax_ident(x_24); +x_627 = lean_array_push(x_604, x_626); +x_628 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_628, 0, x_606); +lean_ctor_set(x_628, 1, x_627); +x_629 = lean_array_push(x_625, x_628); +x_630 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_631 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_631, 0, x_630); +lean_ctor_set(x_631, 1, x_629); +x_632 = lean_array_push(x_604, x_631); +x_633 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_633, 0, x_606); +lean_ctor_set(x_633, 1, x_632); +x_634 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_635 = lean_array_push(x_634, x_633); +x_636 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_637 = lean_array_push(x_635, x_636); +x_638 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_639, 0, x_638); +lean_ctor_set(x_639, 1, x_637); +x_640 = lean_array_push(x_604, x_639); +x_641 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_641, 0, x_606); +lean_ctor_set(x_641, 1, x_640); +x_642 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_643 = lean_array_push(x_642, x_641); +x_644 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_645 = lean_array_push(x_643, x_644); +x_646 = lean_array_push(x_645, x_644); +x_647 = lean_array_push(x_646, x_644); +x_648 = lean_array_push(x_647, x_644); +x_649 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_650 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_650, 0, x_649); +lean_ctor_set(x_650, 1, x_648); +x_651 = lean_array_push(x_604, x_650); +x_652 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; lean_inc(x_613); -x_648 = l_Lean_addMacroScope(x_613, x_647, x_609); -x_649 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_650 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_650, 0, x_617); -lean_ctor_set(x_650, 1, x_649); -lean_ctor_set(x_650, 2, x_648); -lean_ctor_set(x_650, 3, x_616); -x_651 = lean_array_push(x_600, x_650); -x_652 = lean_array_push(x_651, x_639); -x_653 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_654 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_654, 0, x_653); -lean_ctor_set(x_654, 1, x_652); -x_655 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_656 = lean_array_push(x_655, x_654); -x_657 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_609); +lean_inc(x_617); +x_653 = l_Lean_addMacroScope(x_617, x_652, x_613); +x_654 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_655 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_655, 0, x_621); +lean_ctor_set(x_655, 1, x_654); +lean_ctor_set(x_655, 2, x_653); +lean_ctor_set(x_655, 3, x_620); +x_656 = lean_array_push(x_604, x_655); +x_657 = lean_array_push(x_656, x_644); +x_658 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_659 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_659, 0, x_658); +lean_ctor_set(x_659, 1, x_657); +x_660 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_661 = lean_array_push(x_660, x_659); +x_662 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; lean_inc(x_613); -x_658 = l_Lean_addMacroScope(x_613, x_657, x_609); -x_659 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_660 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_661 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_661, 0, x_617); -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 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_663 = lean_array_push(x_662, x_661); -x_664 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_665 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_665, 0, x_664); -lean_ctor_set(x_665, 1, x_663); -x_666 = lean_array_push(x_600, x_665); -x_667 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_667, 0, x_602); -lean_ctor_set(x_667, 1, x_666); -x_668 = lean_array_push(x_620, x_667); -x_669 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +lean_inc(x_617); +x_663 = l_Lean_addMacroScope(x_617, x_662, x_613); +x_664 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_665 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_666 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_666, 0, x_621); +lean_ctor_set(x_666, 1, x_664); +lean_ctor_set(x_666, 2, x_663); +lean_ctor_set(x_666, 3, x_665); +x_667 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_668 = lean_array_push(x_667, x_666); +x_669 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_670 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_670, 0, x_669); lean_ctor_set(x_670, 1, x_668); -x_671 = lean_array_push(x_656, x_670); -x_672 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_609); +x_671 = lean_array_push(x_604, x_670); +x_672 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_672, 0, x_606); +lean_ctor_set(x_672, 1, x_671); +x_673 = lean_array_push(x_642, x_672); +x_674 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_675 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_675, 0, x_674); +lean_ctor_set(x_675, 1, x_673); +x_676 = lean_array_push(x_661, x_675); +x_677 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_613); -x_673 = l_Lean_addMacroScope(x_613, x_672, x_609); -x_674 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_675 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_675, 0, x_617); -lean_ctor_set(x_675, 1, x_674); -lean_ctor_set(x_675, 2, x_673); -lean_ctor_set(x_675, 3, x_616); -lean_inc(x_675); -x_676 = lean_array_push(x_600, x_675); -x_677 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_677, 0, x_602); -lean_ctor_set(x_677, 1, x_676); -x_678 = lean_array_push(x_600, x_677); -x_679 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_680 = lean_array_push(x_678, x_679); -x_681 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_682 = lean_array_push(x_681, x_675); -x_683 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_684 = lean_array_push(x_682, x_683); -x_685 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_686 = lean_array_push(x_685, x_607); -x_687 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_688 = lean_array_push(x_686, x_687); -x_689 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_690 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_690, 0, x_689); -lean_ctor_set(x_690, 1, x_688); -x_691 = lean_array_push(x_600, x_690); -x_692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_692, 0, x_602); -lean_ctor_set(x_692, 1, x_691); -x_693 = lean_array_push(x_600, x_692); -x_694 = lean_array_push(x_693, x_679); -x_695 = lean_array_push(x_685, x_1); -x_696 = lean_array_push(x_695, x_687); +lean_inc(x_617); +x_678 = l_Lean_addMacroScope(x_617, x_677, x_613); +x_679 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_680 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_680, 0, x_621); +lean_ctor_set(x_680, 1, x_679); +lean_ctor_set(x_680, 2, x_678); +lean_ctor_set(x_680, 3, x_620); +lean_inc(x_680); +x_681 = lean_array_push(x_604, x_680); +x_682 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_682, 0, x_606); +lean_ctor_set(x_682, 1, x_681); +x_683 = lean_array_push(x_604, x_682); +x_684 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_685 = lean_array_push(x_683, x_684); +x_686 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_687 = lean_array_push(x_686, x_680); +x_688 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_689 = lean_array_push(x_687, x_688); +x_690 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_691 = lean_array_push(x_690, x_611); +x_692 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_693 = lean_array_push(x_691, x_692); +x_694 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_695, 0, x_694); +lean_ctor_set(x_695, 1, x_693); +x_696 = lean_array_push(x_604, x_695); x_697 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_697, 0, x_689); +lean_ctor_set(x_697, 0, x_606); lean_ctor_set(x_697, 1, x_696); -x_698 = lean_array_push(x_694, x_697); -x_699 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_700 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_700, 0, x_699); -lean_ctor_set(x_700, 1, x_698); -x_701 = lean_array_push(x_600, x_700); -x_702 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_703 = lean_array_push(x_701, x_702); -x_704 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_705 = l_Lean_addMacroScope(x_613, x_704, x_609); -x_706 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_707 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_708 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_708, 0, x_617); -lean_ctor_set(x_708, 1, x_706); -lean_ctor_set(x_708, 2, x_705); -lean_ctor_set(x_708, 3, x_707); -x_709 = lean_array_push(x_600, x_708); -x_710 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_711 = lean_array_push(x_709, x_710); -x_712 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_712, 0, x_606); -lean_ctor_set(x_712, 1, x_711); -x_713 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_714 = lean_array_push(x_713, x_712); -x_715 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_715, 0, x_699); -lean_ctor_set(x_715, 1, x_714); -x_716 = lean_array_push(x_703, x_715); +x_698 = lean_array_push(x_604, x_697); +x_699 = lean_array_push(x_698, x_684); +x_700 = lean_array_push(x_690, x_1); +x_701 = lean_array_push(x_700, x_692); +x_702 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_702, 0, x_694); +lean_ctor_set(x_702, 1, x_701); +x_703 = lean_array_push(x_699, x_702); +x_704 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_705 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_705, 0, x_704); +lean_ctor_set(x_705, 1, x_703); +x_706 = lean_array_push(x_604, x_705); +x_707 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_708 = lean_array_push(x_706, x_707); +x_709 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_710 = l_Lean_addMacroScope(x_617, x_709, x_613); +x_711 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_712 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_713 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_713, 0, x_621); +lean_ctor_set(x_713, 1, x_711); +lean_ctor_set(x_713, 2, x_710); +lean_ctor_set(x_713, 3, x_712); +x_714 = lean_array_push(x_604, x_713); +x_715 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_716 = lean_array_push(x_714, x_715); x_717 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_717, 0, x_602); +lean_ctor_set(x_717, 0, x_610); lean_ctor_set(x_717, 1, x_716); -x_718 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_718 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; x_719 = lean_array_push(x_718, x_717); -x_720 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_721, 0, x_720); -lean_ctor_set(x_721, 1, x_719); -x_722 = lean_array_push(x_684, x_721); -x_723 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_724 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_724, 0, x_723); -lean_ctor_set(x_724, 1, x_722); -x_725 = lean_array_push(x_680, x_724); -x_726 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_727 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_727, 0, x_726); -lean_ctor_set(x_727, 1, x_725); -x_728 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_729 = lean_array_push(x_728, x_727); -x_730 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_731 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_731, 0, x_730); -lean_ctor_set(x_731, 1, x_729); -x_732 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_733 = lean_array_push(x_732, x_731); -x_734 = lean_array_push(x_733, x_639); -x_735 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_720 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_720, 0, x_704); +lean_ctor_set(x_720, 1, x_719); +x_721 = lean_array_push(x_708, x_720); +x_722 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_722, 0, x_606); +lean_ctor_set(x_722, 1, x_721); +x_723 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_724 = lean_array_push(x_723, x_722); +x_725 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_726 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_726, 0, x_725); +lean_ctor_set(x_726, 1, x_724); +x_727 = lean_array_push(x_689, x_726); +x_728 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_729 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_729, 0, x_728); +lean_ctor_set(x_729, 1, x_727); +x_730 = lean_array_push(x_685, x_729); +x_731 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_732 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_732, 0, x_731); +lean_ctor_set(x_732, 1, x_730); +x_733 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_734 = lean_array_push(x_733, x_732); +x_735 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; x_736 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_736, 0, x_735); lean_ctor_set(x_736, 1, x_734); -x_737 = lean_array_push(x_671, x_736); -x_738 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_739 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_739, 0, x_738); -lean_ctor_set(x_739, 1, x_737); -x_740 = lean_array_push(x_646, x_739); -x_741 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_742 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_742, 0, x_741); -lean_ctor_set(x_742, 1, x_740); -lean_ctor_set(x_9, 0, x_742); -lean_ctor_set(x_611, 0, x_9); -return x_611; +x_737 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_738 = lean_array_push(x_737, x_736); +x_739 = lean_array_push(x_738, x_644); +x_740 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_741 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_741, 0, x_740); +lean_ctor_set(x_741, 1, x_739); +x_742 = lean_array_push(x_676, x_741); +x_743 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_744 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_744, 0, x_743); +lean_ctor_set(x_744, 1, x_742); +x_745 = lean_array_push(x_651, x_744); +x_746 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_747 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_747, 0, x_746); +lean_ctor_set(x_747, 1, x_745); +lean_ctor_set(x_9, 0, x_747); +lean_ctor_set(x_615, 0, x_9); +return x_615; } else { -lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; 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; -x_743 = lean_ctor_get(x_611, 0); -x_744 = lean_ctor_get(x_611, 1); -lean_inc(x_744); -lean_inc(x_743); -lean_dec(x_611); -x_745 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_609); -lean_inc(x_743); -x_746 = l_Lean_addMacroScope(x_743, x_745, x_609); -x_747 = lean_box(0); -x_748 = l_Lean_instInhabitedSourceInfo___closed__1; -x_749 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_750 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_750, 0, x_748); -lean_ctor_set(x_750, 1, x_749); -lean_ctor_set(x_750, 2, x_746); -lean_ctor_set(x_750, 3, x_747); -x_751 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_752 = lean_array_push(x_751, x_750); -x_753 = lean_mk_syntax_ident(x_24); -x_754 = lean_array_push(x_600, x_753); -x_755 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_755, 0, x_602); +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; +x_748 = lean_ctor_get(x_615, 0); +x_749 = lean_ctor_get(x_615, 1); +lean_inc(x_749); +lean_inc(x_748); +lean_dec(x_615); +x_750 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_613); +lean_inc(x_748); +x_751 = l_Lean_addMacroScope(x_748, x_750, x_613); +x_752 = lean_box(0); +x_753 = l_Lean_instInhabitedSourceInfo___closed__1; +x_754 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_755 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_755, 0, x_753); lean_ctor_set(x_755, 1, x_754); -x_756 = lean_array_push(x_752, x_755); -x_757 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -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 = lean_array_push(x_600, x_758); +lean_ctor_set(x_755, 2, x_751); +lean_ctor_set(x_755, 3, x_752); +x_756 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_757 = lean_array_push(x_756, x_755); +x_758 = lean_mk_syntax_ident(x_24); +x_759 = lean_array_push(x_604, x_758); x_760 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_760, 0, x_602); +lean_ctor_set(x_760, 0, x_606); lean_ctor_set(x_760, 1, x_759); -x_761 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_762 = lean_array_push(x_761, x_760); -x_763 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_764 = lean_array_push(x_762, x_763); -x_765 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_766 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_766, 0, x_765); -lean_ctor_set(x_766, 1, x_764); -x_767 = lean_array_push(x_600, x_766); -x_768 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_768, 0, x_602); -lean_ctor_set(x_768, 1, x_767); -x_769 = lean_array_push(x_751, x_768); -x_770 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_771 = lean_array_push(x_769, x_770); -x_772 = lean_array_push(x_771, x_770); -x_773 = lean_array_push(x_772, x_770); -x_774 = lean_array_push(x_773, x_770); -x_775 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_776 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_776, 0, x_775); -lean_ctor_set(x_776, 1, x_774); -x_777 = lean_array_push(x_600, x_776); -x_778 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_609); -lean_inc(x_743); -x_779 = l_Lean_addMacroScope(x_743, x_778, x_609); -x_780 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_781 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_781, 0, x_748); -lean_ctor_set(x_781, 1, x_780); -lean_ctor_set(x_781, 2, x_779); -lean_ctor_set(x_781, 3, x_747); -x_782 = lean_array_push(x_600, x_781); -x_783 = lean_array_push(x_782, x_770); -x_784 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -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 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_787 = lean_array_push(x_786, x_785); -x_788 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_609); -lean_inc(x_743); -x_789 = l_Lean_addMacroScope(x_743, x_788, x_609); -x_790 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_791 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_792 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_792, 0, x_748); -lean_ctor_set(x_792, 1, x_790); -lean_ctor_set(x_792, 2, x_789); -lean_ctor_set(x_792, 3, x_791); -x_793 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_794 = lean_array_push(x_793, x_792); -x_795 = l_Lean_expandExplicitBindersAux_loop___closed__8; -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_600, x_796); -x_798 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_798, 0, x_602); -lean_ctor_set(x_798, 1, x_797); -x_799 = lean_array_push(x_751, x_798); -x_800 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_801 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_801, 0, x_800); -lean_ctor_set(x_801, 1, x_799); -x_802 = lean_array_push(x_787, x_801); -x_803 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_609); -lean_inc(x_743); -x_804 = l_Lean_addMacroScope(x_743, x_803, x_609); -x_805 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_806 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_806, 0, x_748); -lean_ctor_set(x_806, 1, x_805); -lean_ctor_set(x_806, 2, x_804); -lean_ctor_set(x_806, 3, x_747); -lean_inc(x_806); -x_807 = lean_array_push(x_600, x_806); -x_808 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_808, 0, x_602); -lean_ctor_set(x_808, 1, x_807); -x_809 = lean_array_push(x_600, x_808); -x_810 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_811 = lean_array_push(x_809, x_810); -x_812 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_813 = lean_array_push(x_812, x_806); -x_814 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_815 = lean_array_push(x_813, x_814); -x_816 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_817 = lean_array_push(x_816, x_607); -x_818 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_819 = lean_array_push(x_817, x_818); -x_820 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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_600, x_821); -x_823 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_823, 0, x_602); -lean_ctor_set(x_823, 1, x_822); -x_824 = lean_array_push(x_600, x_823); -x_825 = lean_array_push(x_824, x_810); -x_826 = lean_array_push(x_816, x_1); -x_827 = lean_array_push(x_826, x_818); -x_828 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_828, 0, x_820); -lean_ctor_set(x_828, 1, x_827); -x_829 = lean_array_push(x_825, x_828); -x_830 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_831 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_831, 0, x_830); -lean_ctor_set(x_831, 1, x_829); -x_832 = lean_array_push(x_600, x_831); -x_833 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_834 = lean_array_push(x_832, x_833); -x_835 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_836 = l_Lean_addMacroScope(x_743, x_835, x_609); -x_837 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_838 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_839 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_839, 0, x_748); -lean_ctor_set(x_839, 1, x_837); -lean_ctor_set(x_839, 2, x_836); -lean_ctor_set(x_839, 3, x_838); -x_840 = lean_array_push(x_600, x_839); -x_841 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_842 = lean_array_push(x_840, x_841); -x_843 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_843, 0, x_606); -lean_ctor_set(x_843, 1, x_842); -x_844 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_845 = lean_array_push(x_844, x_843); -x_846 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_846, 0, x_830); -lean_ctor_set(x_846, 1, x_845); -x_847 = lean_array_push(x_834, x_846); -x_848 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_848, 0, x_602); -lean_ctor_set(x_848, 1, x_847); -x_849 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_850 = lean_array_push(x_849, x_848); -x_851 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_761 = lean_array_push(x_757, x_760); +x_762 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_763 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_763, 0, x_762); +lean_ctor_set(x_763, 1, x_761); +x_764 = lean_array_push(x_604, x_763); +x_765 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_765, 0, x_606); +lean_ctor_set(x_765, 1, x_764); +x_766 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_767 = lean_array_push(x_766, x_765); +x_768 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_769 = lean_array_push(x_767, x_768); +x_770 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_771 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_771, 0, x_770); +lean_ctor_set(x_771, 1, x_769); +x_772 = lean_array_push(x_604, x_771); +x_773 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_773, 0, x_606); +lean_ctor_set(x_773, 1, x_772); +x_774 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_775 = lean_array_push(x_774, x_773); +x_776 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_777 = lean_array_push(x_775, x_776); +x_778 = lean_array_push(x_777, x_776); +x_779 = lean_array_push(x_778, x_776); +x_780 = lean_array_push(x_779, x_776); +x_781 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_604, x_782); +x_784 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_613); +lean_inc(x_748); +x_785 = l_Lean_addMacroScope(x_748, x_784, x_613); +x_786 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_787 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_787, 0, x_753); +lean_ctor_set(x_787, 1, x_786); +lean_ctor_set(x_787, 2, x_785); +lean_ctor_set(x_787, 3, x_752); +x_788 = lean_array_push(x_604, x_787); +x_789 = lean_array_push(x_788, x_776); +x_790 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_791, 0, x_790); +lean_ctor_set(x_791, 1, x_789); +x_792 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_793 = lean_array_push(x_792, x_791); +x_794 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_613); +lean_inc(x_748); +x_795 = l_Lean_addMacroScope(x_748, x_794, x_613); +x_796 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_797 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_798 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_798, 0, x_753); +lean_ctor_set(x_798, 1, x_796); +lean_ctor_set(x_798, 2, x_795); +lean_ctor_set(x_798, 3, x_797); +x_799 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_800 = lean_array_push(x_799, x_798); +x_801 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_802 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_802, 0, x_801); +lean_ctor_set(x_802, 1, x_800); +x_803 = lean_array_push(x_604, x_802); +x_804 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_804, 0, x_606); +lean_ctor_set(x_804, 1, x_803); +x_805 = lean_array_push(x_774, x_804); +x_806 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_807 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_807, 0, x_806); +lean_ctor_set(x_807, 1, x_805); +x_808 = lean_array_push(x_793, x_807); +x_809 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_613); +lean_inc(x_748); +x_810 = l_Lean_addMacroScope(x_748, x_809, x_613); +x_811 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_812 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_812, 0, x_753); +lean_ctor_set(x_812, 1, x_811); +lean_ctor_set(x_812, 2, x_810); +lean_ctor_set(x_812, 3, x_752); +lean_inc(x_812); +x_813 = lean_array_push(x_604, x_812); +x_814 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_814, 0, x_606); +lean_ctor_set(x_814, 1, x_813); +x_815 = lean_array_push(x_604, x_814); +x_816 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_817 = lean_array_push(x_815, x_816); +x_818 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_819 = lean_array_push(x_818, x_812); +x_820 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_821 = lean_array_push(x_819, x_820); +x_822 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_823 = lean_array_push(x_822, x_611); +x_824 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_825 = lean_array_push(x_823, x_824); +x_826 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_827 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_827, 0, x_826); +lean_ctor_set(x_827, 1, x_825); +x_828 = lean_array_push(x_604, x_827); +x_829 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_829, 0, x_606); +lean_ctor_set(x_829, 1, x_828); +x_830 = lean_array_push(x_604, x_829); +x_831 = lean_array_push(x_830, x_816); +x_832 = lean_array_push(x_822, x_1); +x_833 = lean_array_push(x_832, x_824); +x_834 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_834, 0, x_826); +lean_ctor_set(x_834, 1, x_833); +x_835 = lean_array_push(x_831, x_834); +x_836 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_837 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_837, 0, x_836); +lean_ctor_set(x_837, 1, x_835); +x_838 = lean_array_push(x_604, x_837); +x_839 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_840 = lean_array_push(x_838, x_839); +x_841 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_842 = l_Lean_addMacroScope(x_748, x_841, x_613); +x_843 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_844 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_845 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_845, 0, x_753); +lean_ctor_set(x_845, 1, x_843); +lean_ctor_set(x_845, 2, x_842); +lean_ctor_set(x_845, 3, x_844); +x_846 = lean_array_push(x_604, x_845); +x_847 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_848 = lean_array_push(x_846, x_847); +x_849 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_849, 0, x_610); +lean_ctor_set(x_849, 1, x_848); +x_850 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_851 = lean_array_push(x_850, x_849); 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_815, x_852); -x_854 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_855 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_855, 0, x_854); -lean_ctor_set(x_855, 1, x_853); -x_856 = lean_array_push(x_811, x_855); -x_857 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +lean_ctor_set(x_852, 0, x_836); +lean_ctor_set(x_852, 1, x_851); +x_853 = lean_array_push(x_840, x_852); +x_854 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_854, 0, x_606); +lean_ctor_set(x_854, 1, x_853); +x_855 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_856 = lean_array_push(x_855, x_854); +x_857 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; x_858 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_858, 0, x_857); lean_ctor_set(x_858, 1, x_856); -x_859 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_860 = lean_array_push(x_859, x_858); -x_861 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_862 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_862, 0, x_861); -lean_ctor_set(x_862, 1, x_860); -x_863 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_864 = lean_array_push(x_863, x_862); -x_865 = lean_array_push(x_864, x_770); -x_866 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_867 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_867, 0, x_866); -lean_ctor_set(x_867, 1, x_865); -x_868 = lean_array_push(x_802, x_867); -x_869 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_870 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_870, 0, x_869); -lean_ctor_set(x_870, 1, x_868); -x_871 = lean_array_push(x_777, x_870); -x_872 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_859 = lean_array_push(x_821, x_858); +x_860 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_861 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_861, 0, x_860); +lean_ctor_set(x_861, 1, x_859); +x_862 = lean_array_push(x_817, x_861); +x_863 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_864 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_864, 0, x_863); +lean_ctor_set(x_864, 1, x_862); +x_865 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_866 = lean_array_push(x_865, x_864); +x_867 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_870 = lean_array_push(x_869, x_868); +x_871 = lean_array_push(x_870, x_776); +x_872 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; x_873 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_873, 0, x_872); lean_ctor_set(x_873, 1, x_871); -lean_ctor_set(x_9, 0, x_873); -x_874 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_874, 0, x_9); -lean_ctor_set(x_874, 1, x_744); -return x_874; +x_874 = lean_array_push(x_808, x_873); +x_875 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_876, 0, x_875); +lean_ctor_set(x_876, 1, x_874); +x_877 = lean_array_push(x_783, x_876); +x_878 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_879 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_879, 0, x_878); +lean_ctor_set(x_879, 1, x_877); +lean_ctor_set(x_9, 0, x_879); +x_880 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_880, 0, x_9); +lean_ctor_set(x_880, 1, x_749); +return x_880; } } } else { -lean_object* x_875; +lean_object* x_881; lean_dec(x_24); lean_free_object(x_9); lean_dec(x_1); -x_875 = lean_box(0); -lean_ctor_set(x_8, 0, x_875); +x_881 = lean_box(0); +lean_ctor_set(x_8, 0, x_881); return x_8; } } @@ -21455,871 +21608,874 @@ return x_8; } else { -lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; uint8_t x_880; -x_876 = lean_ctor_get(x_8, 1); -lean_inc(x_876); +lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; uint8_t x_886; +x_882 = lean_ctor_get(x_8, 1); +lean_inc(x_882); lean_dec(x_8); -x_877 = lean_ctor_get(x_18, 0); -lean_inc(x_877); +x_883 = lean_ctor_get(x_18, 0); +lean_inc(x_883); lean_dec(x_18); -x_878 = lean_array_get_size(x_3); -x_879 = lean_unsigned_to_nat(0u); -x_880 = lean_nat_dec_lt(x_879, x_878); -if (x_880 == 0) +x_884 = lean_array_get_size(x_3); +x_885 = lean_unsigned_to_nat(0u); +x_886 = lean_nat_dec_lt(x_885, x_884); +if (x_886 == 0) { -uint8_t x_881; -lean_dec(x_878); -x_881 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_879); -if (x_881 == 0) +uint8_t x_887; +lean_dec(x_884); +x_887 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_885); +if (x_887 == 0) { -lean_object* x_882; lean_object* x_883; -lean_dec(x_877); +lean_object* x_888; lean_object* x_889; +lean_dec(x_883); lean_free_object(x_9); lean_dec(x_1); -x_882 = lean_box(0); -x_883 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_883, 0, x_882); -lean_ctor_set(x_883, 1, x_876); -return x_883; +x_888 = lean_box(0); +x_889 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_889, 0, x_888); +lean_ctor_set(x_889, 1, x_882); +return x_889; } else { -lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_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; -x_884 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_876); -x_885 = lean_ctor_get(x_884, 1); -lean_inc(x_885); -lean_dec(x_884); -x_886 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_885); -x_887 = lean_ctor_get(x_886, 1); -lean_inc(x_887); -lean_dec(x_886); -x_888 = l_Array_empty___closed__1; -x_889 = l_Array_appendCore___rarg(x_888, x_3); -x_890 = l_Lean_nullKind___closed__2; -x_891 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_891, 0, x_890); -lean_ctor_set(x_891, 1, x_889); -x_892 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_893 = lean_array_push(x_892, x_891); -x_894 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_895 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_895, 0, x_894); -lean_ctor_set(x_895, 1, x_893); -x_896 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_887); -x_897 = lean_ctor_get(x_896, 0); -lean_inc(x_897); -x_898 = lean_ctor_get(x_896, 1); -lean_inc(x_898); -lean_dec(x_896); -x_899 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_898); -x_900 = lean_ctor_get(x_899, 0); -lean_inc(x_900); -x_901 = lean_ctor_get(x_899, 1); -lean_inc(x_901); -if (lean_is_exclusive(x_899)) { - lean_ctor_release(x_899, 0); - lean_ctor_release(x_899, 1); - x_902 = x_899; +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; +x_890 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_882); +x_891 = lean_ctor_get(x_890, 1); +lean_inc(x_891); +lean_dec(x_890); +x_892 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_891); +x_893 = lean_ctor_get(x_892, 1); +lean_inc(x_893); +lean_dec(x_892); +x_894 = l_Array_empty___closed__1; +x_895 = l_Array_appendCore___rarg(x_894, x_3); +x_896 = l_Lean_nullKind___closed__2; +x_897 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_897, 0, x_896); +lean_ctor_set(x_897, 1, x_895); +x_898 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_899 = lean_array_push(x_898, x_897); +x_900 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_901 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_901, 0, x_900); +lean_ctor_set(x_901, 1, x_899); +x_902 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_893); +x_903 = lean_ctor_get(x_902, 0); +lean_inc(x_903); +x_904 = lean_ctor_get(x_902, 1); +lean_inc(x_904); +lean_dec(x_902); +x_905 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_904); +x_906 = lean_ctor_get(x_905, 0); +lean_inc(x_906); +x_907 = lean_ctor_get(x_905, 1); +lean_inc(x_907); +if (lean_is_exclusive(x_905)) { + lean_ctor_release(x_905, 0); + lean_ctor_release(x_905, 1); + x_908 = x_905; } else { - lean_dec_ref(x_899); - x_902 = lean_box(0); + lean_dec_ref(x_905); + x_908 = lean_box(0); } -x_903 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_897); -lean_inc(x_900); -x_904 = l_Lean_addMacroScope(x_900, x_903, x_897); -x_905 = lean_box(0); -x_906 = l_Lean_instInhabitedSourceInfo___closed__1; -x_907 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_908 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_908, 0, x_906); -lean_ctor_set(x_908, 1, x_907); -lean_ctor_set(x_908, 2, x_904); -lean_ctor_set(x_908, 3, x_905); -x_909 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_910 = lean_array_push(x_909, x_908); -x_911 = lean_mk_syntax_ident(x_877); -x_912 = lean_array_push(x_888, x_911); -x_913 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_913, 0, x_890); -lean_ctor_set(x_913, 1, x_912); -x_914 = lean_array_push(x_910, x_913); -x_915 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_916 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_916, 0, x_915); -lean_ctor_set(x_916, 1, x_914); -x_917 = lean_array_push(x_888, x_916); -x_918 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_918, 0, x_890); -lean_ctor_set(x_918, 1, x_917); -x_919 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_920 = lean_array_push(x_919, x_918); -x_921 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_922 = lean_array_push(x_920, x_921); -x_923 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_909 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_903); +lean_inc(x_906); +x_910 = l_Lean_addMacroScope(x_906, x_909, x_903); +x_911 = lean_box(0); +x_912 = l_Lean_instInhabitedSourceInfo___closed__1; +x_913 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_914 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_914, 0, x_912); +lean_ctor_set(x_914, 1, x_913); +lean_ctor_set(x_914, 2, x_910); +lean_ctor_set(x_914, 3, x_911); +x_915 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_916 = lean_array_push(x_915, x_914); +x_917 = lean_mk_syntax_ident(x_883); +x_918 = lean_array_push(x_894, x_917); +x_919 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_919, 0, x_896); +lean_ctor_set(x_919, 1, x_918); +x_920 = lean_array_push(x_916, x_919); +x_921 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_922 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_922, 0, x_921); +lean_ctor_set(x_922, 1, x_920); +x_923 = lean_array_push(x_894, x_922); x_924 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_924, 0, x_923); -lean_ctor_set(x_924, 1, x_922); -x_925 = lean_array_push(x_888, x_924); -x_926 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_926, 0, x_890); -lean_ctor_set(x_926, 1, x_925); -x_927 = lean_array_push(x_909, x_926); -x_928 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_929 = lean_array_push(x_927, x_928); -x_930 = lean_array_push(x_929, x_928); -x_931 = lean_array_push(x_930, x_928); -x_932 = lean_array_push(x_931, x_928); -x_933 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_934 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_934, 0, x_933); -lean_ctor_set(x_934, 1, x_932); -x_935 = lean_array_push(x_888, x_934); -x_936 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_897); -lean_inc(x_900); -x_937 = l_Lean_addMacroScope(x_900, x_936, x_897); -x_938 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_939 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_939, 0, x_906); -lean_ctor_set(x_939, 1, x_938); -lean_ctor_set(x_939, 2, x_937); -lean_ctor_set(x_939, 3, x_905); -x_940 = lean_array_push(x_888, x_939); -x_941 = lean_array_push(x_940, x_928); -x_942 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -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 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_945 = lean_array_push(x_944, x_943); -x_946 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_897); -lean_inc(x_900); -x_947 = l_Lean_addMacroScope(x_900, x_946, x_897); -x_948 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_949 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_950 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_950, 0, x_906); +lean_ctor_set(x_924, 0, x_896); +lean_ctor_set(x_924, 1, x_923); +x_925 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_926 = lean_array_push(x_925, x_924); +x_927 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_928 = lean_array_push(x_926, x_927); +x_929 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_930 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_930, 0, x_929); +lean_ctor_set(x_930, 1, x_928); +x_931 = lean_array_push(x_894, x_930); +x_932 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_932, 0, x_896); +lean_ctor_set(x_932, 1, x_931); +x_933 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_934 = lean_array_push(x_933, x_932); +x_935 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_936 = lean_array_push(x_934, x_935); +x_937 = lean_array_push(x_936, x_935); +x_938 = lean_array_push(x_937, x_935); +x_939 = lean_array_push(x_938, x_935); +x_940 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_941 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_941, 0, x_940); +lean_ctor_set(x_941, 1, x_939); +x_942 = lean_array_push(x_894, x_941); +x_943 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_903); +lean_inc(x_906); +x_944 = l_Lean_addMacroScope(x_906, x_943, x_903); +x_945 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_946 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_946, 0, x_912); +lean_ctor_set(x_946, 1, x_945); +lean_ctor_set(x_946, 2, x_944); +lean_ctor_set(x_946, 3, x_911); +x_947 = lean_array_push(x_894, x_946); +x_948 = lean_array_push(x_947, x_935); +x_949 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_950 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_950, 0, x_949); lean_ctor_set(x_950, 1, x_948); -lean_ctor_set(x_950, 2, x_947); -lean_ctor_set(x_950, 3, x_949); -x_951 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_951 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; x_952 = lean_array_push(x_951, x_950); -x_953 = l_Lean_expandExplicitBindersAux_loop___closed__8; -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_888, x_954); -x_956 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_956, 0, x_890); -lean_ctor_set(x_956, 1, x_955); -x_957 = lean_array_push(x_909, x_956); -x_958 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_959 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_959, 0, x_958); -lean_ctor_set(x_959, 1, x_957); -x_960 = lean_array_push(x_945, x_959); -x_961 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_897); -lean_inc(x_900); -x_962 = l_Lean_addMacroScope(x_900, x_961, x_897); -x_963 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_964 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_964, 0, x_906); -lean_ctor_set(x_964, 1, x_963); -lean_ctor_set(x_964, 2, x_962); -lean_ctor_set(x_964, 3, x_905); -lean_inc(x_964); -x_965 = lean_array_push(x_888, x_964); +x_953 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_903); +lean_inc(x_906); +x_954 = l_Lean_addMacroScope(x_906, x_953, x_903); +x_955 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_956 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_957 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_957, 0, x_912); +lean_ctor_set(x_957, 1, x_955); +lean_ctor_set(x_957, 2, x_954); +lean_ctor_set(x_957, 3, x_956); +x_958 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_959 = lean_array_push(x_958, x_957); +x_960 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_961 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_961, 0, x_960); +lean_ctor_set(x_961, 1, x_959); +x_962 = lean_array_push(x_894, x_961); +x_963 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_963, 0, x_896); +lean_ctor_set(x_963, 1, x_962); +x_964 = lean_array_push(x_933, x_963); +x_965 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; x_966 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_966, 0, x_890); -lean_ctor_set(x_966, 1, x_965); -x_967 = lean_array_push(x_888, x_966); -x_968 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_969 = lean_array_push(x_967, x_968); -x_970 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_971 = lean_array_push(x_970, x_964); -x_972 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_973 = lean_array_push(x_971, x_972); -x_974 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_975 = lean_array_push(x_974, x_895); -x_976 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_977 = lean_array_push(x_975, x_976); -x_978 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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_888, x_979); -x_981 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_981, 0, x_890); -lean_ctor_set(x_981, 1, x_980); -x_982 = lean_array_push(x_888, x_981); -x_983 = lean_array_push(x_982, x_968); -x_984 = lean_array_push(x_974, x_1); -x_985 = lean_array_push(x_984, x_976); +lean_ctor_set(x_966, 0, x_965); +lean_ctor_set(x_966, 1, x_964); +x_967 = lean_array_push(x_952, x_966); +x_968 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_903); +lean_inc(x_906); +x_969 = l_Lean_addMacroScope(x_906, x_968, x_903); +x_970 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_971 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_971, 0, x_912); +lean_ctor_set(x_971, 1, x_970); +lean_ctor_set(x_971, 2, x_969); +lean_ctor_set(x_971, 3, x_911); +lean_inc(x_971); +x_972 = lean_array_push(x_894, x_971); +x_973 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_973, 0, x_896); +lean_ctor_set(x_973, 1, x_972); +x_974 = lean_array_push(x_894, x_973); +x_975 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_976 = lean_array_push(x_974, x_975); +x_977 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_978 = lean_array_push(x_977, x_971); +x_979 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_980 = lean_array_push(x_978, x_979); +x_981 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_982 = lean_array_push(x_981, x_901); +x_983 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_984 = lean_array_push(x_982, x_983); +x_985 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_986 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_986, 0, x_978); -lean_ctor_set(x_986, 1, x_985); -x_987 = lean_array_push(x_983, x_986); -x_988 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_989 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_989, 0, x_988); -lean_ctor_set(x_989, 1, x_987); -x_990 = lean_array_push(x_888, x_989); -x_991 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_992 = lean_array_push(x_990, x_991); -x_993 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_994 = l_Lean_addMacroScope(x_900, x_993, x_897); -x_995 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_996 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_997 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_997, 0, x_906); -lean_ctor_set(x_997, 1, x_995); -lean_ctor_set(x_997, 2, x_994); -lean_ctor_set(x_997, 3, x_996); -x_998 = lean_array_push(x_888, x_997); -x_999 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_1000 = lean_array_push(x_998, x_999); -x_1001 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1001, 0, x_894); -lean_ctor_set(x_1001, 1, x_1000); -x_1002 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1003 = lean_array_push(x_1002, x_1001); -x_1004 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1004, 0, x_988); -lean_ctor_set(x_1004, 1, x_1003); -x_1005 = lean_array_push(x_992, x_1004); -x_1006 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1006, 0, x_890); -lean_ctor_set(x_1006, 1, x_1005); -x_1007 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1008 = lean_array_push(x_1007, x_1006); -x_1009 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1010 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1010, 0, x_1009); -lean_ctor_set(x_1010, 1, x_1008); -x_1011 = lean_array_push(x_973, x_1010); -x_1012 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_ctor_set(x_986, 0, x_985); +lean_ctor_set(x_986, 1, x_984); +x_987 = lean_array_push(x_894, x_986); +x_988 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_988, 0, x_896); +lean_ctor_set(x_988, 1, x_987); +x_989 = lean_array_push(x_894, x_988); +x_990 = lean_array_push(x_989, x_975); +x_991 = lean_array_push(x_981, x_1); +x_992 = lean_array_push(x_991, x_983); +x_993 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_993, 0, x_985); +lean_ctor_set(x_993, 1, x_992); +x_994 = lean_array_push(x_990, x_993); +x_995 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_996 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_996, 0, x_995); +lean_ctor_set(x_996, 1, x_994); +x_997 = lean_array_push(x_894, x_996); +x_998 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_999 = lean_array_push(x_997, x_998); +x_1000 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1001 = l_Lean_addMacroScope(x_906, x_1000, x_903); +x_1002 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1003 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1004 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1004, 0, x_912); +lean_ctor_set(x_1004, 1, x_1002); +lean_ctor_set(x_1004, 2, x_1001); +lean_ctor_set(x_1004, 3, x_1003); +x_1005 = lean_array_push(x_894, x_1004); +x_1006 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1007 = lean_array_push(x_1005, x_1006); +x_1008 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1008, 0, x_900); +lean_ctor_set(x_1008, 1, x_1007); +x_1009 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1010 = lean_array_push(x_1009, x_1008); +x_1011 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1011, 0, x_995); +lean_ctor_set(x_1011, 1, x_1010); +x_1012 = lean_array_push(x_999, x_1011); x_1013 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1013, 0, x_1012); -lean_ctor_set(x_1013, 1, x_1011); -x_1014 = lean_array_push(x_969, x_1013); -x_1015 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1016 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1016, 0, x_1015); -lean_ctor_set(x_1016, 1, x_1014); -x_1017 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_1018 = lean_array_push(x_1017, x_1016); -x_1019 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +lean_ctor_set(x_1013, 0, x_896); +lean_ctor_set(x_1013, 1, x_1012); +x_1014 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1015 = lean_array_push(x_1014, x_1013); +x_1016 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1017 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1017, 0, x_1016); +lean_ctor_set(x_1017, 1, x_1015); +x_1018 = lean_array_push(x_980, x_1017); +x_1019 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_1020 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1020, 0, x_1019); lean_ctor_set(x_1020, 1, x_1018); -x_1021 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1022 = lean_array_push(x_1021, x_1020); -x_1023 = lean_array_push(x_1022, x_928); -x_1024 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_1025 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1025, 0, x_1024); -lean_ctor_set(x_1025, 1, x_1023); -x_1026 = lean_array_push(x_960, x_1025); -x_1027 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_1028 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1028, 0, x_1027); -lean_ctor_set(x_1028, 1, x_1026); -x_1029 = lean_array_push(x_935, x_1028); -x_1030 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_1031 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1031, 0, x_1030); -lean_ctor_set(x_1031, 1, x_1029); -lean_ctor_set(x_9, 0, x_1031); -if (lean_is_scalar(x_902)) { - x_1032 = lean_alloc_ctor(0, 2, 0); +x_1021 = lean_array_push(x_976, x_1020); +x_1022 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1025 = lean_array_push(x_1024, x_1023); +x_1026 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1027 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1027, 0, x_1026); +lean_ctor_set(x_1027, 1, x_1025); +x_1028 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1029 = lean_array_push(x_1028, x_1027); +x_1030 = lean_array_push(x_1029, x_935); +x_1031 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +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_967, x_1032); +x_1034 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +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_942, x_1035); +x_1037 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1038 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1038, 0, x_1037); +lean_ctor_set(x_1038, 1, x_1036); +lean_ctor_set(x_9, 0, x_1038); +if (lean_is_scalar(x_908)) { + x_1039 = lean_alloc_ctor(0, 2, 0); } else { - x_1032 = x_902; + x_1039 = x_908; } -lean_ctor_set(x_1032, 0, x_9); -lean_ctor_set(x_1032, 1, x_901); -return x_1032; +lean_ctor_set(x_1039, 0, x_9); +lean_ctor_set(x_1039, 1, x_907); +return x_1039; } } else { -uint8_t x_1033; -x_1033 = lean_nat_dec_le(x_878, x_878); -if (x_1033 == 0) +uint8_t x_1040; +x_1040 = lean_nat_dec_le(x_884, x_884); +if (x_1040 == 0) { -uint8_t x_1034; -lean_dec(x_878); -x_1034 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_879); -if (x_1034 == 0) +uint8_t x_1041; +lean_dec(x_884); +x_1041 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_885); +if (x_1041 == 0) { -lean_object* x_1035; lean_object* x_1036; -lean_dec(x_877); +lean_object* x_1042; lean_object* x_1043; +lean_dec(x_883); lean_free_object(x_9); lean_dec(x_1); -x_1035 = lean_box(0); -x_1036 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1036, 0, x_1035); -lean_ctor_set(x_1036, 1, x_876); -return x_1036; +x_1042 = lean_box(0); +x_1043 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1043, 0, x_1042); +lean_ctor_set(x_1043, 1, x_882); +return x_1043; } else { -lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_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; -x_1037 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_876); -x_1038 = lean_ctor_get(x_1037, 1); -lean_inc(x_1038); -lean_dec(x_1037); -x_1039 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1038); -x_1040 = lean_ctor_get(x_1039, 1); -lean_inc(x_1040); -lean_dec(x_1039); -x_1041 = l_Array_empty___closed__1; -x_1042 = l_Array_appendCore___rarg(x_1041, x_3); -x_1043 = l_Lean_nullKind___closed__2; -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 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_1046 = lean_array_push(x_1045, x_1044); -x_1047 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1048 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1048, 0, x_1047); -lean_ctor_set(x_1048, 1, x_1046); -x_1049 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1040); -x_1050 = lean_ctor_get(x_1049, 0); -lean_inc(x_1050); -x_1051 = lean_ctor_get(x_1049, 1); -lean_inc(x_1051); -lean_dec(x_1049); -x_1052 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1051); -x_1053 = lean_ctor_get(x_1052, 0); -lean_inc(x_1053); -x_1054 = lean_ctor_get(x_1052, 1); -lean_inc(x_1054); -if (lean_is_exclusive(x_1052)) { - lean_ctor_release(x_1052, 0); - lean_ctor_release(x_1052, 1); - x_1055 = x_1052; +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; +x_1044 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_882); +x_1045 = lean_ctor_get(x_1044, 1); +lean_inc(x_1045); +lean_dec(x_1044); +x_1046 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1045); +x_1047 = lean_ctor_get(x_1046, 1); +lean_inc(x_1047); +lean_dec(x_1046); +x_1048 = l_Array_empty___closed__1; +x_1049 = l_Array_appendCore___rarg(x_1048, x_3); +x_1050 = l_Lean_nullKind___closed__2; +x_1051 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1051, 0, x_1050); +lean_ctor_set(x_1051, 1, x_1049); +x_1052 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_1053 = lean_array_push(x_1052, x_1051); +x_1054 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1055 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1055, 0, x_1054); +lean_ctor_set(x_1055, 1, x_1053); +x_1056 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1047); +x_1057 = lean_ctor_get(x_1056, 0); +lean_inc(x_1057); +x_1058 = lean_ctor_get(x_1056, 1); +lean_inc(x_1058); +lean_dec(x_1056); +x_1059 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1058); +x_1060 = lean_ctor_get(x_1059, 0); +lean_inc(x_1060); +x_1061 = lean_ctor_get(x_1059, 1); +lean_inc(x_1061); +if (lean_is_exclusive(x_1059)) { + lean_ctor_release(x_1059, 0); + lean_ctor_release(x_1059, 1); + x_1062 = x_1059; } else { - lean_dec_ref(x_1052); - x_1055 = lean_box(0); + lean_dec_ref(x_1059); + x_1062 = lean_box(0); } -x_1056 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_1050); -lean_inc(x_1053); -x_1057 = l_Lean_addMacroScope(x_1053, x_1056, x_1050); -x_1058 = lean_box(0); -x_1059 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1060 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_1061 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1061, 0, x_1059); -lean_ctor_set(x_1061, 1, x_1060); -lean_ctor_set(x_1061, 2, x_1057); -lean_ctor_set(x_1061, 3, x_1058); -x_1062 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_1063 = lean_array_push(x_1062, x_1061); -x_1064 = lean_mk_syntax_ident(x_877); -x_1065 = lean_array_push(x_1041, x_1064); -x_1066 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1066, 0, x_1043); -lean_ctor_set(x_1066, 1, x_1065); -x_1067 = lean_array_push(x_1063, x_1066); -x_1068 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_1069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1069, 0, x_1068); -lean_ctor_set(x_1069, 1, x_1067); -x_1070 = lean_array_push(x_1041, x_1069); -x_1071 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1071, 0, x_1043); -lean_ctor_set(x_1071, 1, x_1070); -x_1072 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_1073 = lean_array_push(x_1072, x_1071); -x_1074 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1075 = lean_array_push(x_1073, x_1074); -x_1076 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_1077 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1077, 0, x_1076); -lean_ctor_set(x_1077, 1, x_1075); -x_1078 = lean_array_push(x_1041, x_1077); -x_1079 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1079, 0, x_1043); -lean_ctor_set(x_1079, 1, x_1078); -x_1080 = lean_array_push(x_1062, x_1079); -x_1081 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1063 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_1057); +lean_inc(x_1060); +x_1064 = l_Lean_addMacroScope(x_1060, x_1063, x_1057); +x_1065 = lean_box(0); +x_1066 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1067 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_1068 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1068, 0, x_1066); +lean_ctor_set(x_1068, 1, x_1067); +lean_ctor_set(x_1068, 2, x_1064); +lean_ctor_set(x_1068, 3, x_1065); +x_1069 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1070 = lean_array_push(x_1069, x_1068); +x_1071 = lean_mk_syntax_ident(x_883); +x_1072 = lean_array_push(x_1048, x_1071); +x_1073 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1073, 0, x_1050); +lean_ctor_set(x_1073, 1, x_1072); +x_1074 = lean_array_push(x_1070, x_1073); +x_1075 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_1076 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1076, 0, x_1075); +lean_ctor_set(x_1076, 1, x_1074); +x_1077 = lean_array_push(x_1048, x_1076); +x_1078 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1078, 0, x_1050); +lean_ctor_set(x_1078, 1, x_1077); +x_1079 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_1080 = lean_array_push(x_1079, x_1078); +x_1081 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; x_1082 = lean_array_push(x_1080, x_1081); -x_1083 = lean_array_push(x_1082, x_1081); -x_1084 = lean_array_push(x_1083, x_1081); -x_1085 = lean_array_push(x_1084, x_1081); -x_1086 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_1087 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1087, 0, x_1086); -lean_ctor_set(x_1087, 1, x_1085); -x_1088 = lean_array_push(x_1041, x_1087); -x_1089 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1050); -lean_inc(x_1053); -x_1090 = l_Lean_addMacroScope(x_1053, x_1089, x_1050); -x_1091 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_1092 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1092, 0, x_1059); -lean_ctor_set(x_1092, 1, x_1091); -lean_ctor_set(x_1092, 2, x_1090); -lean_ctor_set(x_1092, 3, x_1058); -x_1093 = lean_array_push(x_1041, x_1092); -x_1094 = lean_array_push(x_1093, x_1081); -x_1095 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_1096 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1096, 0, x_1095); -lean_ctor_set(x_1096, 1, x_1094); -x_1097 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_1098 = lean_array_push(x_1097, x_1096); -x_1099 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_1050); -lean_inc(x_1053); -x_1100 = l_Lean_addMacroScope(x_1053, x_1099, x_1050); -x_1101 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_1102 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_1103 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1103, 0, x_1059); -lean_ctor_set(x_1103, 1, x_1101); -lean_ctor_set(x_1103, 2, x_1100); -lean_ctor_set(x_1103, 3, x_1102); -x_1104 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1105 = lean_array_push(x_1104, x_1103); -x_1106 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1107, 0, x_1106); -lean_ctor_set(x_1107, 1, x_1105); -x_1108 = lean_array_push(x_1041, x_1107); -x_1109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1109, 0, x_1043); -lean_ctor_set(x_1109, 1, x_1108); -x_1110 = lean_array_push(x_1062, x_1109); -x_1111 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_1112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1112, 0, x_1111); -lean_ctor_set(x_1112, 1, x_1110); -x_1113 = lean_array_push(x_1098, x_1112); -x_1114 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_1050); -lean_inc(x_1053); -x_1115 = l_Lean_addMacroScope(x_1053, x_1114, x_1050); -x_1116 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1117 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1117, 0, x_1059); +x_1083 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +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_1048, x_1084); +x_1086 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1086, 0, x_1050); +lean_ctor_set(x_1086, 1, x_1085); +x_1087 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1088 = lean_array_push(x_1087, x_1086); +x_1089 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1090 = lean_array_push(x_1088, x_1089); +x_1091 = lean_array_push(x_1090, x_1089); +x_1092 = lean_array_push(x_1091, x_1089); +x_1093 = lean_array_push(x_1092, x_1089); +x_1094 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_1095 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1095, 0, x_1094); +lean_ctor_set(x_1095, 1, x_1093); +x_1096 = lean_array_push(x_1048, x_1095); +x_1097 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_1057); +lean_inc(x_1060); +x_1098 = l_Lean_addMacroScope(x_1060, x_1097, x_1057); +x_1099 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_1100 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1100, 0, x_1066); +lean_ctor_set(x_1100, 1, x_1099); +lean_ctor_set(x_1100, 2, x_1098); +lean_ctor_set(x_1100, 3, x_1065); +x_1101 = lean_array_push(x_1048, x_1100); +x_1102 = lean_array_push(x_1101, x_1089); +x_1103 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_1104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1104, 0, x_1103); +lean_ctor_set(x_1104, 1, x_1102); +x_1105 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_1106 = lean_array_push(x_1105, x_1104); +x_1107 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_1057); +lean_inc(x_1060); +x_1108 = l_Lean_addMacroScope(x_1060, x_1107, x_1057); +x_1109 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_1110 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1111 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1111, 0, x_1066); +lean_ctor_set(x_1111, 1, x_1109); +lean_ctor_set(x_1111, 2, x_1108); +lean_ctor_set(x_1111, 3, x_1110); +x_1112 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1113 = lean_array_push(x_1112, x_1111); +x_1114 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1115, 0, x_1114); +lean_ctor_set(x_1115, 1, x_1113); +x_1116 = lean_array_push(x_1048, x_1115); +x_1117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1117, 0, x_1050); lean_ctor_set(x_1117, 1, x_1116); -lean_ctor_set(x_1117, 2, x_1115); -lean_ctor_set(x_1117, 3, x_1058); -lean_inc(x_1117); -x_1118 = lean_array_push(x_1041, x_1117); -x_1119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1119, 0, x_1043); -lean_ctor_set(x_1119, 1, x_1118); -x_1120 = lean_array_push(x_1041, x_1119); -x_1121 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1122 = lean_array_push(x_1120, x_1121); -x_1123 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1124 = lean_array_push(x_1123, x_1117); -x_1125 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1126 = lean_array_push(x_1124, x_1125); -x_1127 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_1128 = lean_array_push(x_1127, x_1048); -x_1129 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1118 = lean_array_push(x_1087, x_1117); +x_1119 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_1120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1120, 0, x_1119); +lean_ctor_set(x_1120, 1, x_1118); +x_1121 = lean_array_push(x_1106, x_1120); +x_1122 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_1057); +lean_inc(x_1060); +x_1123 = l_Lean_addMacroScope(x_1060, x_1122, x_1057); +x_1124 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1125 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1125, 0, x_1066); +lean_ctor_set(x_1125, 1, x_1124); +lean_ctor_set(x_1125, 2, x_1123); +lean_ctor_set(x_1125, 3, x_1065); +lean_inc(x_1125); +x_1126 = lean_array_push(x_1048, x_1125); +x_1127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1127, 0, x_1050); +lean_ctor_set(x_1127, 1, x_1126); +x_1128 = lean_array_push(x_1048, x_1127); +x_1129 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1130 = lean_array_push(x_1128, x_1129); -x_1131 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1132, 0, x_1131); -lean_ctor_set(x_1132, 1, x_1130); -x_1133 = lean_array_push(x_1041, x_1132); -x_1134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1134, 0, x_1043); -lean_ctor_set(x_1134, 1, x_1133); -x_1135 = lean_array_push(x_1041, x_1134); -x_1136 = lean_array_push(x_1135, x_1121); -x_1137 = lean_array_push(x_1127, x_1); -x_1138 = lean_array_push(x_1137, x_1129); -x_1139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1139, 0, x_1131); -lean_ctor_set(x_1139, 1, x_1138); -x_1140 = lean_array_push(x_1136, x_1139); -x_1141 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1131 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1132 = lean_array_push(x_1131, x_1125); +x_1133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1134 = lean_array_push(x_1132, x_1133); +x_1135 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1136 = lean_array_push(x_1135, x_1055); +x_1137 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1138 = lean_array_push(x_1136, x_1137); +x_1139 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1140, 0, x_1139); +lean_ctor_set(x_1140, 1, x_1138); +x_1141 = lean_array_push(x_1048, x_1140); x_1142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1142, 0, x_1141); -lean_ctor_set(x_1142, 1, x_1140); -x_1143 = lean_array_push(x_1041, x_1142); -x_1144 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1145 = lean_array_push(x_1143, x_1144); -x_1146 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_1147 = l_Lean_addMacroScope(x_1053, x_1146, x_1050); -x_1148 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1149 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_1150 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1150, 0, x_1059); +lean_ctor_set(x_1142, 0, x_1050); +lean_ctor_set(x_1142, 1, x_1141); +x_1143 = lean_array_push(x_1048, x_1142); +x_1144 = lean_array_push(x_1143, x_1129); +x_1145 = lean_array_push(x_1135, x_1); +x_1146 = lean_array_push(x_1145, x_1137); +x_1147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1147, 0, x_1139); +lean_ctor_set(x_1147, 1, x_1146); +x_1148 = lean_array_push(x_1144, x_1147); +x_1149 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1150, 0, x_1149); lean_ctor_set(x_1150, 1, x_1148); -lean_ctor_set(x_1150, 2, x_1147); -lean_ctor_set(x_1150, 3, x_1149); -x_1151 = lean_array_push(x_1041, x_1150); -x_1152 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1151 = lean_array_push(x_1048, x_1150); +x_1152 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1153 = lean_array_push(x_1151, x_1152); -x_1154 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1154, 0, x_1047); -lean_ctor_set(x_1154, 1, x_1153); -x_1155 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1156 = lean_array_push(x_1155, x_1154); -x_1157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1157, 0, x_1141); -lean_ctor_set(x_1157, 1, x_1156); -x_1158 = lean_array_push(x_1145, x_1157); -x_1159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1159, 0, x_1043); -lean_ctor_set(x_1159, 1, x_1158); -x_1160 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1161 = lean_array_push(x_1160, x_1159); -x_1162 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1163 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1163, 0, x_1162); -lean_ctor_set(x_1163, 1, x_1161); -x_1164 = lean_array_push(x_1126, x_1163); -x_1165 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1166 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1166, 0, x_1165); -lean_ctor_set(x_1166, 1, x_1164); -x_1167 = lean_array_push(x_1122, x_1166); -x_1168 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1169, 0, x_1168); -lean_ctor_set(x_1169, 1, x_1167); -x_1170 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_1171 = lean_array_push(x_1170, x_1169); -x_1172 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1175 = lean_array_push(x_1174, x_1173); -x_1176 = lean_array_push(x_1175, x_1081); -x_1177 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_1178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1178, 0, x_1177); -lean_ctor_set(x_1178, 1, x_1176); -x_1179 = lean_array_push(x_1113, x_1178); -x_1180 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1154 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1155 = l_Lean_addMacroScope(x_1060, x_1154, x_1057); +x_1156 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1157 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1158 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1158, 0, x_1066); +lean_ctor_set(x_1158, 1, x_1156); +lean_ctor_set(x_1158, 2, x_1155); +lean_ctor_set(x_1158, 3, x_1157); +x_1159 = lean_array_push(x_1048, x_1158); +x_1160 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1161 = lean_array_push(x_1159, x_1160); +x_1162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1162, 0, x_1054); +lean_ctor_set(x_1162, 1, x_1161); +x_1163 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1164 = lean_array_push(x_1163, x_1162); +x_1165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1165, 0, x_1149); +lean_ctor_set(x_1165, 1, x_1164); +x_1166 = lean_array_push(x_1153, x_1165); +x_1167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1167, 0, x_1050); +lean_ctor_set(x_1167, 1, x_1166); +x_1168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1169 = lean_array_push(x_1168, x_1167); +x_1170 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1171 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1171, 0, x_1170); +lean_ctor_set(x_1171, 1, x_1169); +x_1172 = lean_array_push(x_1134, x_1171); +x_1173 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1174, 0, x_1173); +lean_ctor_set(x_1174, 1, x_1172); +x_1175 = lean_array_push(x_1130, x_1174); +x_1176 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1177, 0, x_1176); +lean_ctor_set(x_1177, 1, x_1175); +x_1178 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1179 = lean_array_push(x_1178, x_1177); +x_1180 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; x_1181 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1181, 0, x_1180); lean_ctor_set(x_1181, 1, x_1179); -x_1182 = lean_array_push(x_1088, x_1181); -x_1183 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_1184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1184, 0, x_1183); -lean_ctor_set(x_1184, 1, x_1182); -lean_ctor_set(x_9, 0, x_1184); -if (lean_is_scalar(x_1055)) { - x_1185 = lean_alloc_ctor(0, 2, 0); +x_1182 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1183 = lean_array_push(x_1182, x_1181); +x_1184 = lean_array_push(x_1183, x_1089); +x_1185 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_1186 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1186, 0, x_1185); +lean_ctor_set(x_1186, 1, x_1184); +x_1187 = lean_array_push(x_1121, x_1186); +x_1188 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +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 = lean_array_push(x_1096, x_1189); +x_1191 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1192, 0, x_1191); +lean_ctor_set(x_1192, 1, x_1190); +lean_ctor_set(x_9, 0, x_1192); +if (lean_is_scalar(x_1062)) { + x_1193 = lean_alloc_ctor(0, 2, 0); } else { - x_1185 = x_1055; + x_1193 = x_1062; } -lean_ctor_set(x_1185, 0, x_9); -lean_ctor_set(x_1185, 1, x_1054); -return x_1185; +lean_ctor_set(x_1193, 0, x_9); +lean_ctor_set(x_1193, 1, x_1061); +return x_1193; } } else { -size_t x_1186; size_t x_1187; uint8_t x_1188; -x_1186 = 0; -x_1187 = lean_usize_of_nat(x_878); -lean_dec(x_878); -x_1188 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_3, x_1186, x_1187); -if (x_1188 == 0) +size_t x_1194; size_t x_1195; uint8_t x_1196; +x_1194 = 0; +x_1195 = lean_usize_of_nat(x_884); +lean_dec(x_884); +x_1196 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_3, x_1194, x_1195); +if (x_1196 == 0) { -uint8_t x_1189; -x_1189 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_879); -if (x_1189 == 0) +uint8_t x_1197; +x_1197 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_885); +if (x_1197 == 0) { -lean_object* x_1190; lean_object* x_1191; -lean_dec(x_877); +lean_object* x_1198; lean_object* x_1199; +lean_dec(x_883); lean_free_object(x_9); lean_dec(x_1); -x_1190 = lean_box(0); -x_1191 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1191, 0, x_1190); -lean_ctor_set(x_1191, 1, x_876); -return x_1191; +x_1198 = lean_box(0); +x_1199 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1199, 0, x_1198); +lean_ctor_set(x_1199, 1, x_882); +return x_1199; } else { -lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_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; -x_1192 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_876); -x_1193 = lean_ctor_get(x_1192, 1); -lean_inc(x_1193); -lean_dec(x_1192); -x_1194 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1193); -x_1195 = lean_ctor_get(x_1194, 1); -lean_inc(x_1195); -lean_dec(x_1194); -x_1196 = l_Array_empty___closed__1; -x_1197 = l_Array_appendCore___rarg(x_1196, x_3); -x_1198 = l_Lean_nullKind___closed__2; -x_1199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1199, 0, x_1198); -lean_ctor_set(x_1199, 1, x_1197); -x_1200 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_1201 = lean_array_push(x_1200, x_1199); -x_1202 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1203, 0, x_1202); -lean_ctor_set(x_1203, 1, x_1201); -x_1204 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1195); -x_1205 = lean_ctor_get(x_1204, 0); -lean_inc(x_1205); -x_1206 = lean_ctor_get(x_1204, 1); -lean_inc(x_1206); -lean_dec(x_1204); -x_1207 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1206); -x_1208 = lean_ctor_get(x_1207, 0); -lean_inc(x_1208); -x_1209 = lean_ctor_get(x_1207, 1); -lean_inc(x_1209); -if (lean_is_exclusive(x_1207)) { - lean_ctor_release(x_1207, 0); - lean_ctor_release(x_1207, 1); - x_1210 = x_1207; +lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_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; +x_1200 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_882); +x_1201 = lean_ctor_get(x_1200, 1); +lean_inc(x_1201); +lean_dec(x_1200); +x_1202 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1201); +x_1203 = lean_ctor_get(x_1202, 1); +lean_inc(x_1203); +lean_dec(x_1202); +x_1204 = l_Array_empty___closed__1; +x_1205 = l_Array_appendCore___rarg(x_1204, x_3); +x_1206 = l_Lean_nullKind___closed__2; +x_1207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1207, 0, x_1206); +lean_ctor_set(x_1207, 1, x_1205); +x_1208 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_1209 = lean_array_push(x_1208, x_1207); +x_1210 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1211 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1211, 0, x_1210); +lean_ctor_set(x_1211, 1, x_1209); +x_1212 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1203); +x_1213 = lean_ctor_get(x_1212, 0); +lean_inc(x_1213); +x_1214 = lean_ctor_get(x_1212, 1); +lean_inc(x_1214); +lean_dec(x_1212); +x_1215 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1214); +x_1216 = lean_ctor_get(x_1215, 0); +lean_inc(x_1216); +x_1217 = lean_ctor_get(x_1215, 1); +lean_inc(x_1217); +if (lean_is_exclusive(x_1215)) { + lean_ctor_release(x_1215, 0); + lean_ctor_release(x_1215, 1); + x_1218 = x_1215; } else { - lean_dec_ref(x_1207); - x_1210 = lean_box(0); + lean_dec_ref(x_1215); + x_1218 = lean_box(0); } -x_1211 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_1205); -lean_inc(x_1208); -x_1212 = l_Lean_addMacroScope(x_1208, x_1211, x_1205); -x_1213 = lean_box(0); -x_1214 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1215 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_1216 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1216, 0, x_1214); -lean_ctor_set(x_1216, 1, x_1215); -lean_ctor_set(x_1216, 2, x_1212); -lean_ctor_set(x_1216, 3, x_1213); -x_1217 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_1218 = lean_array_push(x_1217, x_1216); -x_1219 = lean_mk_syntax_ident(x_877); -x_1220 = lean_array_push(x_1196, x_1219); -x_1221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1221, 0, x_1198); -lean_ctor_set(x_1221, 1, x_1220); -x_1222 = lean_array_push(x_1218, x_1221); -x_1223 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -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 = lean_array_push(x_1196, x_1224); -x_1226 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1226, 0, x_1198); -lean_ctor_set(x_1226, 1, x_1225); -x_1227 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_1228 = lean_array_push(x_1227, x_1226); -x_1229 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1230 = lean_array_push(x_1228, x_1229); -x_1231 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_1219 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_1213); +lean_inc(x_1216); +x_1220 = l_Lean_addMacroScope(x_1216, x_1219, x_1213); +x_1221 = lean_box(0); +x_1222 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1223 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_1224 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1224, 0, x_1222); +lean_ctor_set(x_1224, 1, x_1223); +lean_ctor_set(x_1224, 2, x_1220); +lean_ctor_set(x_1224, 3, x_1221); +x_1225 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1226 = lean_array_push(x_1225, x_1224); +x_1227 = lean_mk_syntax_ident(x_883); +x_1228 = lean_array_push(x_1204, x_1227); +x_1229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1229, 0, x_1206); +lean_ctor_set(x_1229, 1, x_1228); +x_1230 = lean_array_push(x_1226, x_1229); +x_1231 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; x_1232 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1232, 0, x_1231); lean_ctor_set(x_1232, 1, x_1230); -x_1233 = lean_array_push(x_1196, x_1232); +x_1233 = lean_array_push(x_1204, x_1232); x_1234 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1234, 0, x_1198); +lean_ctor_set(x_1234, 0, x_1206); lean_ctor_set(x_1234, 1, x_1233); -x_1235 = lean_array_push(x_1217, x_1234); -x_1236 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_1237 = lean_array_push(x_1235, x_1236); -x_1238 = lean_array_push(x_1237, x_1236); -x_1239 = lean_array_push(x_1238, x_1236); -x_1240 = lean_array_push(x_1239, x_1236); -x_1241 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_1235 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_1236 = lean_array_push(x_1235, x_1234); +x_1237 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1238 = lean_array_push(x_1236, x_1237); +x_1239 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_1240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1240, 0, x_1239); +lean_ctor_set(x_1240, 1, x_1238); +x_1241 = lean_array_push(x_1204, x_1240); x_1242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1242, 0, x_1241); -lean_ctor_set(x_1242, 1, x_1240); -x_1243 = lean_array_push(x_1196, x_1242); -x_1244 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1205); -lean_inc(x_1208); -x_1245 = l_Lean_addMacroScope(x_1208, x_1244, x_1205); -x_1246 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_1247 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1247, 0, x_1214); -lean_ctor_set(x_1247, 1, x_1246); -lean_ctor_set(x_1247, 2, x_1245); -lean_ctor_set(x_1247, 3, x_1213); -x_1248 = lean_array_push(x_1196, x_1247); -x_1249 = lean_array_push(x_1248, x_1236); -x_1250 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +lean_ctor_set(x_1242, 0, x_1206); +lean_ctor_set(x_1242, 1, x_1241); +x_1243 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1244 = lean_array_push(x_1243, x_1242); +x_1245 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1246 = lean_array_push(x_1244, x_1245); +x_1247 = lean_array_push(x_1246, x_1245); +x_1248 = lean_array_push(x_1247, x_1245); +x_1249 = lean_array_push(x_1248, x_1245); +x_1250 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; x_1251 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1251, 0, x_1250); lean_ctor_set(x_1251, 1, x_1249); -x_1252 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_1253 = lean_array_push(x_1252, x_1251); -x_1254 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_1205); -lean_inc(x_1208); -x_1255 = l_Lean_addMacroScope(x_1208, x_1254, x_1205); -x_1256 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_1257 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_1258 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1258, 0, x_1214); -lean_ctor_set(x_1258, 1, x_1256); -lean_ctor_set(x_1258, 2, x_1255); -lean_ctor_set(x_1258, 3, x_1257); -x_1259 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1260 = lean_array_push(x_1259, x_1258); -x_1261 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1262 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1262, 0, x_1261); -lean_ctor_set(x_1262, 1, x_1260); -x_1263 = lean_array_push(x_1196, x_1262); -x_1264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1264, 0, x_1198); -lean_ctor_set(x_1264, 1, x_1263); -x_1265 = lean_array_push(x_1217, x_1264); -x_1266 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_1267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1267, 0, x_1266); +x_1252 = lean_array_push(x_1204, x_1251); +x_1253 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_1213); +lean_inc(x_1216); +x_1254 = l_Lean_addMacroScope(x_1216, x_1253, x_1213); +x_1255 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_1256 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1256, 0, x_1222); +lean_ctor_set(x_1256, 1, x_1255); +lean_ctor_set(x_1256, 2, x_1254); +lean_ctor_set(x_1256, 3, x_1221); +x_1257 = lean_array_push(x_1204, x_1256); +x_1258 = lean_array_push(x_1257, x_1245); +x_1259 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_1260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1260, 0, x_1259); +lean_ctor_set(x_1260, 1, x_1258); +x_1261 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_1262 = lean_array_push(x_1261, x_1260); +x_1263 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_1213); +lean_inc(x_1216); +x_1264 = l_Lean_addMacroScope(x_1216, x_1263, x_1213); +x_1265 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_1266 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1267 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1267, 0, x_1222); lean_ctor_set(x_1267, 1, x_1265); -x_1268 = lean_array_push(x_1253, x_1267); -x_1269 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_1205); -lean_inc(x_1208); -x_1270 = l_Lean_addMacroScope(x_1208, x_1269, x_1205); -x_1271 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1272 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1272, 0, x_1214); -lean_ctor_set(x_1272, 1, x_1271); -lean_ctor_set(x_1272, 2, x_1270); -lean_ctor_set(x_1272, 3, x_1213); -lean_inc(x_1272); -x_1273 = lean_array_push(x_1196, x_1272); -x_1274 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1274, 0, x_1198); -lean_ctor_set(x_1274, 1, x_1273); -x_1275 = lean_array_push(x_1196, x_1274); -x_1276 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1277 = lean_array_push(x_1275, x_1276); -x_1278 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1279 = lean_array_push(x_1278, x_1272); -x_1280 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1281 = lean_array_push(x_1279, x_1280); -x_1282 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_1283 = lean_array_push(x_1282, x_1203); -x_1284 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_1285 = lean_array_push(x_1283, x_1284); -x_1286 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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_1196, x_1287); -x_1289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1289, 0, x_1198); -lean_ctor_set(x_1289, 1, x_1288); -x_1290 = lean_array_push(x_1196, x_1289); -x_1291 = lean_array_push(x_1290, x_1276); -x_1292 = lean_array_push(x_1282, x_1); -x_1293 = lean_array_push(x_1292, x_1284); -x_1294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1294, 0, x_1286); -lean_ctor_set(x_1294, 1, x_1293); -x_1295 = lean_array_push(x_1291, x_1294); -x_1296 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_1297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1297, 0, x_1296); -lean_ctor_set(x_1297, 1, x_1295); -x_1298 = lean_array_push(x_1196, x_1297); -x_1299 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1300 = lean_array_push(x_1298, x_1299); -x_1301 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_1302 = l_Lean_addMacroScope(x_1208, x_1301, x_1205); -x_1303 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1304 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_1305 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1305, 0, x_1214); -lean_ctor_set(x_1305, 1, x_1303); -lean_ctor_set(x_1305, 2, x_1302); -lean_ctor_set(x_1305, 3, x_1304); -x_1306 = lean_array_push(x_1196, x_1305); -x_1307 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_1308 = lean_array_push(x_1306, x_1307); -x_1309 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1309, 0, x_1202); -lean_ctor_set(x_1309, 1, x_1308); -x_1310 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1311 = lean_array_push(x_1310, x_1309); -x_1312 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1312, 0, x_1296); -lean_ctor_set(x_1312, 1, x_1311); -x_1313 = lean_array_push(x_1300, x_1312); -x_1314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1314, 0, x_1198); -lean_ctor_set(x_1314, 1, x_1313); -x_1315 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1316 = lean_array_push(x_1315, x_1314); -x_1317 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +lean_ctor_set(x_1267, 2, x_1264); +lean_ctor_set(x_1267, 3, x_1266); +x_1268 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1269 = lean_array_push(x_1268, x_1267); +x_1270 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1271 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1271, 0, x_1270); +lean_ctor_set(x_1271, 1, x_1269); +x_1272 = lean_array_push(x_1204, x_1271); +x_1273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1273, 0, x_1206); +lean_ctor_set(x_1273, 1, x_1272); +x_1274 = lean_array_push(x_1243, x_1273); +x_1275 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_1276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1276, 0, x_1275); +lean_ctor_set(x_1276, 1, x_1274); +x_1277 = lean_array_push(x_1262, x_1276); +x_1278 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_1213); +lean_inc(x_1216); +x_1279 = l_Lean_addMacroScope(x_1216, x_1278, x_1213); +x_1280 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1281 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1281, 0, x_1222); +lean_ctor_set(x_1281, 1, x_1280); +lean_ctor_set(x_1281, 2, x_1279); +lean_ctor_set(x_1281, 3, x_1221); +lean_inc(x_1281); +x_1282 = lean_array_push(x_1204, x_1281); +x_1283 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1283, 0, x_1206); +lean_ctor_set(x_1283, 1, x_1282); +x_1284 = lean_array_push(x_1204, x_1283); +x_1285 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1286 = lean_array_push(x_1284, x_1285); +x_1287 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1288 = lean_array_push(x_1287, x_1281); +x_1289 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1290 = lean_array_push(x_1288, x_1289); +x_1291 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1292 = lean_array_push(x_1291, x_1211); +x_1293 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1294 = lean_array_push(x_1292, x_1293); +x_1295 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1296, 0, x_1295); +lean_ctor_set(x_1296, 1, x_1294); +x_1297 = lean_array_push(x_1204, x_1296); +x_1298 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1298, 0, x_1206); +lean_ctor_set(x_1298, 1, x_1297); +x_1299 = lean_array_push(x_1204, x_1298); +x_1300 = lean_array_push(x_1299, x_1285); +x_1301 = lean_array_push(x_1291, x_1); +x_1302 = lean_array_push(x_1301, x_1293); +x_1303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1303, 0, x_1295); +lean_ctor_set(x_1303, 1, x_1302); +x_1304 = lean_array_push(x_1300, x_1303); +x_1305 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1306, 0, x_1305); +lean_ctor_set(x_1306, 1, x_1304); +x_1307 = lean_array_push(x_1204, x_1306); +x_1308 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1309 = lean_array_push(x_1307, x_1308); +x_1310 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1311 = l_Lean_addMacroScope(x_1216, x_1310, x_1213); +x_1312 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1313 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1314 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1314, 0, x_1222); +lean_ctor_set(x_1314, 1, x_1312); +lean_ctor_set(x_1314, 2, x_1311); +lean_ctor_set(x_1314, 3, x_1313); +x_1315 = lean_array_push(x_1204, x_1314); +x_1316 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1317 = lean_array_push(x_1315, x_1316); x_1318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1318, 0, x_1317); -lean_ctor_set(x_1318, 1, x_1316); -x_1319 = lean_array_push(x_1281, x_1318); -x_1320 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_ctor_set(x_1318, 0, x_1210); +lean_ctor_set(x_1318, 1, x_1317); +x_1319 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1320 = lean_array_push(x_1319, x_1318); x_1321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1321, 0, x_1320); -lean_ctor_set(x_1321, 1, x_1319); -x_1322 = lean_array_push(x_1277, x_1321); -x_1323 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -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 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_1326 = lean_array_push(x_1325, x_1324); -x_1327 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1328 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1328, 0, x_1327); -lean_ctor_set(x_1328, 1, x_1326); -x_1329 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1330 = lean_array_push(x_1329, x_1328); -x_1331 = lean_array_push(x_1330, x_1236); -x_1332 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +lean_ctor_set(x_1321, 0, x_1305); +lean_ctor_set(x_1321, 1, x_1320); +x_1322 = lean_array_push(x_1309, x_1321); +x_1323 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1323, 0, x_1206); +lean_ctor_set(x_1323, 1, x_1322); +x_1324 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1325 = lean_array_push(x_1324, x_1323); +x_1326 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1327, 0, x_1326); +lean_ctor_set(x_1327, 1, x_1325); +x_1328 = lean_array_push(x_1290, x_1327); +x_1329 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1330 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1330, 0, x_1329); +lean_ctor_set(x_1330, 1, x_1328); +x_1331 = lean_array_push(x_1286, x_1330); +x_1332 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; x_1333 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1333, 0, x_1332); lean_ctor_set(x_1333, 1, x_1331); -x_1334 = lean_array_push(x_1268, x_1333); -x_1335 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_1336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1336, 0, x_1335); -lean_ctor_set(x_1336, 1, x_1334); -x_1337 = lean_array_push(x_1243, x_1336); -x_1338 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_1339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1339, 0, x_1338); -lean_ctor_set(x_1339, 1, x_1337); -lean_ctor_set(x_9, 0, x_1339); -if (lean_is_scalar(x_1210)) { - x_1340 = lean_alloc_ctor(0, 2, 0); +x_1334 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1335 = lean_array_push(x_1334, x_1333); +x_1336 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1337, 0, x_1336); +lean_ctor_set(x_1337, 1, x_1335); +x_1338 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1339 = lean_array_push(x_1338, x_1337); +x_1340 = lean_array_push(x_1339, x_1245); +x_1341 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_1342 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1342, 0, x_1341); +lean_ctor_set(x_1342, 1, x_1340); +x_1343 = lean_array_push(x_1277, x_1342); +x_1344 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1345, 0, x_1344); +lean_ctor_set(x_1345, 1, x_1343); +x_1346 = lean_array_push(x_1252, x_1345); +x_1347 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1348, 0, x_1347); +lean_ctor_set(x_1348, 1, x_1346); +lean_ctor_set(x_9, 0, x_1348); +if (lean_is_scalar(x_1218)) { + x_1349 = lean_alloc_ctor(0, 2, 0); } else { - x_1340 = x_1210; + x_1349 = x_1218; } -lean_ctor_set(x_1340, 0, x_9); -lean_ctor_set(x_1340, 1, x_1209); -return x_1340; +lean_ctor_set(x_1349, 0, x_9); +lean_ctor_set(x_1349, 1, x_1217); +return x_1349; } } else { -lean_object* x_1341; lean_object* x_1342; -lean_dec(x_877); +lean_object* x_1350; lean_object* x_1351; +lean_dec(x_883); lean_free_object(x_9); lean_dec(x_1); -x_1341 = lean_box(0); -x_1342 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1342, 0, x_1341); -lean_ctor_set(x_1342, 1, x_876); -return x_1342; +x_1350 = lean_box(0); +x_1351 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1351, 0, x_1350); +lean_ctor_set(x_1351, 1, x_882); +return x_1351; } } } @@ -22327,1060 +22483,1063 @@ return x_1342; } else { -uint8_t x_1343; +uint8_t x_1352; lean_dec(x_20); lean_dec(x_18); lean_free_object(x_9); lean_dec(x_1); -x_1343 = !lean_is_exclusive(x_8); -if (x_1343 == 0) +x_1352 = !lean_is_exclusive(x_8); +if (x_1352 == 0) { -lean_object* x_1344; lean_object* x_1345; -x_1344 = lean_ctor_get(x_8, 0); -lean_dec(x_1344); -x_1345 = lean_box(0); -lean_ctor_set(x_8, 0, x_1345); +lean_object* x_1353; lean_object* x_1354; +x_1353 = lean_ctor_get(x_8, 0); +lean_dec(x_1353); +x_1354 = lean_box(0); +lean_ctor_set(x_8, 0, x_1354); return x_8; } else { -lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; -x_1346 = lean_ctor_get(x_8, 1); -lean_inc(x_1346); +lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; +x_1355 = lean_ctor_get(x_8, 1); +lean_inc(x_1355); lean_dec(x_8); -x_1347 = lean_box(0); -x_1348 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1348, 0, x_1347); -lean_ctor_set(x_1348, 1, x_1346); -return x_1348; +x_1356 = lean_box(0); +x_1357 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1357, 0, x_1356); +lean_ctor_set(x_1357, 1, x_1355); +return x_1357; } } } else { -uint8_t x_1349; +uint8_t x_1358; lean_dec(x_19); lean_dec(x_18); lean_free_object(x_9); lean_dec(x_11); lean_dec(x_1); -x_1349 = !lean_is_exclusive(x_8); -if (x_1349 == 0) +x_1358 = !lean_is_exclusive(x_8); +if (x_1358 == 0) { -lean_object* x_1350; lean_object* x_1351; -x_1350 = lean_ctor_get(x_8, 0); -lean_dec(x_1350); -x_1351 = lean_box(0); -lean_ctor_set(x_8, 0, x_1351); +lean_object* x_1359; lean_object* x_1360; +x_1359 = lean_ctor_get(x_8, 0); +lean_dec(x_1359); +x_1360 = lean_box(0); +lean_ctor_set(x_8, 0, x_1360); return x_8; } else { -lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; -x_1352 = lean_ctor_get(x_8, 1); -lean_inc(x_1352); -lean_dec(x_8); -x_1353 = lean_box(0); -x_1354 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1354, 0, x_1353); -lean_ctor_set(x_1354, 1, x_1352); -return x_1354; -} -} -} -} -else -{ -lean_object* x_1355; -x_1355 = lean_ctor_get(x_9, 0); -lean_inc(x_1355); -lean_dec(x_9); -if (lean_obj_tag(x_1355) == 0) -{ -lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; -lean_dec(x_1); -x_1356 = lean_ctor_get(x_8, 1); -lean_inc(x_1356); -if (lean_is_exclusive(x_8)) { - lean_ctor_release(x_8, 0); - lean_ctor_release(x_8, 1); - x_1357 = x_8; -} else { - lean_dec_ref(x_8); - x_1357 = lean_box(0); -} -x_1358 = lean_box(0); -if (lean_is_scalar(x_1357)) { - x_1359 = lean_alloc_ctor(0, 2, 0); -} else { - x_1359 = x_1357; -} -lean_ctor_set(x_1359, 0, x_1358); -lean_ctor_set(x_1359, 1, x_1356); -return x_1359; -} -else -{ -lean_object* x_1360; lean_object* x_1361; -x_1360 = lean_ctor_get(x_1355, 0); -lean_inc(x_1360); -x_1361 = lean_ctor_get(x_1360, 1); +lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; +x_1361 = lean_ctor_get(x_8, 1); lean_inc(x_1361); -if (lean_obj_tag(x_1361) == 0) -{ -lean_object* x_1362; -x_1362 = lean_ctor_get(x_1355, 1); -lean_inc(x_1362); -lean_dec(x_1355); -if (lean_obj_tag(x_1362) == 0) -{ -lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; uint8_t x_1368; -x_1363 = lean_ctor_get(x_8, 1); -lean_inc(x_1363); -if (lean_is_exclusive(x_8)) { - lean_ctor_release(x_8, 0); - lean_ctor_release(x_8, 1); - x_1364 = x_8; -} else { - lean_dec_ref(x_8); - x_1364 = lean_box(0); +lean_dec(x_8); +x_1362 = lean_box(0); +x_1363 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1363, 0, x_1362); +lean_ctor_set(x_1363, 1, x_1361); +return x_1363; +} } -x_1365 = lean_ctor_get(x_1360, 0); -lean_inc(x_1365); -lean_dec(x_1360); -x_1366 = lean_array_get_size(x_3); -x_1367 = lean_unsigned_to_nat(0u); -x_1368 = lean_nat_dec_lt(x_1367, x_1366); -if (x_1368 == 0) -{ -uint8_t x_1369; -lean_dec(x_1366); -x_1369 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1367); -if (x_1369 == 0) -{ -lean_object* x_1370; lean_object* x_1371; -lean_dec(x_1365); -lean_dec(x_1); -x_1370 = lean_box(0); -if (lean_is_scalar(x_1364)) { - x_1371 = lean_alloc_ctor(0, 2, 0); -} else { - x_1371 = x_1364; } -lean_ctor_set(x_1371, 0, x_1370); -lean_ctor_set(x_1371, 1, x_1363); -return x_1371; } else { -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_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; -lean_dec(x_1364); -x_1372 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1363); -x_1373 = lean_ctor_get(x_1372, 1); -lean_inc(x_1373); -lean_dec(x_1372); -x_1374 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1373); -x_1375 = lean_ctor_get(x_1374, 1); -lean_inc(x_1375); -lean_dec(x_1374); -x_1376 = l_Array_empty___closed__1; -x_1377 = l_Array_appendCore___rarg(x_1376, x_3); -x_1378 = l_Lean_nullKind___closed__2; -x_1379 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1379, 0, x_1378); -lean_ctor_set(x_1379, 1, x_1377); -x_1380 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_1381 = lean_array_push(x_1380, x_1379); -x_1382 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1383, 0, x_1382); -lean_ctor_set(x_1383, 1, x_1381); -x_1384 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1375); -x_1385 = lean_ctor_get(x_1384, 0); -lean_inc(x_1385); -x_1386 = lean_ctor_get(x_1384, 1); -lean_inc(x_1386); -lean_dec(x_1384); -x_1387 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1386); -x_1388 = lean_ctor_get(x_1387, 0); -lean_inc(x_1388); -x_1389 = lean_ctor_get(x_1387, 1); -lean_inc(x_1389); -if (lean_is_exclusive(x_1387)) { - lean_ctor_release(x_1387, 0); - lean_ctor_release(x_1387, 1); - x_1390 = x_1387; +lean_object* x_1364; +x_1364 = lean_ctor_get(x_9, 0); +lean_inc(x_1364); +lean_dec(x_9); +if (lean_obj_tag(x_1364) == 0) +{ +lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; +lean_dec(x_1); +x_1365 = lean_ctor_get(x_8, 1); +lean_inc(x_1365); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_1366 = x_8; } else { - lean_dec_ref(x_1387); - x_1390 = lean_box(0); + lean_dec_ref(x_8); + x_1366 = lean_box(0); } -x_1391 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_1385); -lean_inc(x_1388); -x_1392 = l_Lean_addMacroScope(x_1388, x_1391, x_1385); -x_1393 = lean_box(0); -x_1394 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1395 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_1396 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1396, 0, x_1394); -lean_ctor_set(x_1396, 1, x_1395); -lean_ctor_set(x_1396, 2, x_1392); -lean_ctor_set(x_1396, 3, x_1393); -x_1397 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_1398 = lean_array_push(x_1397, x_1396); -x_1399 = lean_mk_syntax_ident(x_1365); -x_1400 = lean_array_push(x_1376, x_1399); -x_1401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1401, 0, x_1378); -lean_ctor_set(x_1401, 1, x_1400); -x_1402 = lean_array_push(x_1398, x_1401); -x_1403 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_1404 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1404, 0, x_1403); -lean_ctor_set(x_1404, 1, x_1402); -x_1405 = lean_array_push(x_1376, x_1404); -x_1406 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1406, 0, x_1378); -lean_ctor_set(x_1406, 1, x_1405); -x_1407 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_1408 = lean_array_push(x_1407, x_1406); -x_1409 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1410 = lean_array_push(x_1408, x_1409); -x_1411 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_1412 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1412, 0, x_1411); -lean_ctor_set(x_1412, 1, x_1410); -x_1413 = lean_array_push(x_1376, x_1412); -x_1414 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1414, 0, x_1378); -lean_ctor_set(x_1414, 1, x_1413); -x_1415 = lean_array_push(x_1397, x_1414); -x_1416 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_1417 = lean_array_push(x_1415, x_1416); -x_1418 = lean_array_push(x_1417, x_1416); -x_1419 = lean_array_push(x_1418, x_1416); -x_1420 = lean_array_push(x_1419, x_1416); -x_1421 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_1422 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1422, 0, x_1421); -lean_ctor_set(x_1422, 1, x_1420); -x_1423 = lean_array_push(x_1376, x_1422); -x_1424 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1385); -lean_inc(x_1388); -x_1425 = l_Lean_addMacroScope(x_1388, x_1424, x_1385); -x_1426 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_1427 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1427, 0, x_1394); -lean_ctor_set(x_1427, 1, x_1426); -lean_ctor_set(x_1427, 2, x_1425); -lean_ctor_set(x_1427, 3, x_1393); -x_1428 = lean_array_push(x_1376, x_1427); -x_1429 = lean_array_push(x_1428, x_1416); -x_1430 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_1431 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1431, 0, x_1430); -lean_ctor_set(x_1431, 1, x_1429); -x_1432 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_1433 = lean_array_push(x_1432, x_1431); -x_1434 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_1385); -lean_inc(x_1388); -x_1435 = l_Lean_addMacroScope(x_1388, x_1434, x_1385); -x_1436 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_1437 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_1438 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1438, 0, x_1394); -lean_ctor_set(x_1438, 1, x_1436); -lean_ctor_set(x_1438, 2, x_1435); -lean_ctor_set(x_1438, 3, x_1437); -x_1439 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1440 = lean_array_push(x_1439, x_1438); -x_1441 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1442 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1442, 0, x_1441); -lean_ctor_set(x_1442, 1, x_1440); -x_1443 = lean_array_push(x_1376, x_1442); -x_1444 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1444, 0, x_1378); -lean_ctor_set(x_1444, 1, x_1443); -x_1445 = lean_array_push(x_1397, x_1444); -x_1446 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_1447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1447, 0, x_1446); -lean_ctor_set(x_1447, 1, x_1445); -x_1448 = lean_array_push(x_1433, x_1447); -x_1449 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_1385); -lean_inc(x_1388); -x_1450 = l_Lean_addMacroScope(x_1388, x_1449, x_1385); -x_1451 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1452 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1452, 0, x_1394); -lean_ctor_set(x_1452, 1, x_1451); -lean_ctor_set(x_1452, 2, x_1450); -lean_ctor_set(x_1452, 3, x_1393); -lean_inc(x_1452); -x_1453 = lean_array_push(x_1376, x_1452); +x_1367 = lean_box(0); +if (lean_is_scalar(x_1366)) { + x_1368 = lean_alloc_ctor(0, 2, 0); +} else { + x_1368 = x_1366; +} +lean_ctor_set(x_1368, 0, x_1367); +lean_ctor_set(x_1368, 1, x_1365); +return x_1368; +} +else +{ +lean_object* x_1369; lean_object* x_1370; +x_1369 = lean_ctor_get(x_1364, 0); +lean_inc(x_1369); +x_1370 = lean_ctor_get(x_1369, 1); +lean_inc(x_1370); +if (lean_obj_tag(x_1370) == 0) +{ +lean_object* x_1371; +x_1371 = lean_ctor_get(x_1364, 1); +lean_inc(x_1371); +lean_dec(x_1364); +if (lean_obj_tag(x_1371) == 0) +{ +lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; uint8_t x_1377; +x_1372 = lean_ctor_get(x_8, 1); +lean_inc(x_1372); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_1373 = x_8; +} else { + lean_dec_ref(x_8); + x_1373 = lean_box(0); +} +x_1374 = lean_ctor_get(x_1369, 0); +lean_inc(x_1374); +lean_dec(x_1369); +x_1375 = lean_array_get_size(x_3); +x_1376 = lean_unsigned_to_nat(0u); +x_1377 = lean_nat_dec_lt(x_1376, x_1375); +if (x_1377 == 0) +{ +uint8_t x_1378; +lean_dec(x_1375); +x_1378 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1376); +if (x_1378 == 0) +{ +lean_object* x_1379; lean_object* x_1380; +lean_dec(x_1374); +lean_dec(x_1); +x_1379 = lean_box(0); +if (lean_is_scalar(x_1373)) { + x_1380 = lean_alloc_ctor(0, 2, 0); +} else { + x_1380 = x_1373; +} +lean_ctor_set(x_1380, 0, x_1379); +lean_ctor_set(x_1380, 1, x_1372); +return x_1380; +} +else +{ +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_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; +lean_dec(x_1373); +x_1381 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1372); +x_1382 = lean_ctor_get(x_1381, 1); +lean_inc(x_1382); +lean_dec(x_1381); +x_1383 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1382); +x_1384 = lean_ctor_get(x_1383, 1); +lean_inc(x_1384); +lean_dec(x_1383); +x_1385 = l_Array_empty___closed__1; +x_1386 = l_Array_appendCore___rarg(x_1385, x_3); +x_1387 = l_Lean_nullKind___closed__2; +x_1388 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1388, 0, x_1387); +lean_ctor_set(x_1388, 1, x_1386); +x_1389 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_1390 = lean_array_push(x_1389, x_1388); +x_1391 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1392 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1392, 0, x_1391); +lean_ctor_set(x_1392, 1, x_1390); +x_1393 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1384); +x_1394 = lean_ctor_get(x_1393, 0); +lean_inc(x_1394); +x_1395 = lean_ctor_get(x_1393, 1); +lean_inc(x_1395); +lean_dec(x_1393); +x_1396 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1395); +x_1397 = lean_ctor_get(x_1396, 0); +lean_inc(x_1397); +x_1398 = lean_ctor_get(x_1396, 1); +lean_inc(x_1398); +if (lean_is_exclusive(x_1396)) { + lean_ctor_release(x_1396, 0); + lean_ctor_release(x_1396, 1); + x_1399 = x_1396; +} else { + lean_dec_ref(x_1396); + x_1399 = lean_box(0); +} +x_1400 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_1394); +lean_inc(x_1397); +x_1401 = l_Lean_addMacroScope(x_1397, x_1400, x_1394); +x_1402 = lean_box(0); +x_1403 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1404 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_1405 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1405, 0, x_1403); +lean_ctor_set(x_1405, 1, x_1404); +lean_ctor_set(x_1405, 2, x_1401); +lean_ctor_set(x_1405, 3, x_1402); +x_1406 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1407 = lean_array_push(x_1406, x_1405); +x_1408 = lean_mk_syntax_ident(x_1374); +x_1409 = lean_array_push(x_1385, x_1408); +x_1410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1410, 0, x_1387); +lean_ctor_set(x_1410, 1, x_1409); +x_1411 = lean_array_push(x_1407, x_1410); +x_1412 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_1413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1413, 0, x_1412); +lean_ctor_set(x_1413, 1, x_1411); +x_1414 = lean_array_push(x_1385, x_1413); +x_1415 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1415, 0, x_1387); +lean_ctor_set(x_1415, 1, x_1414); +x_1416 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_1417 = lean_array_push(x_1416, x_1415); +x_1418 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1419 = lean_array_push(x_1417, x_1418); +x_1420 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_1421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1421, 0, x_1420); +lean_ctor_set(x_1421, 1, x_1419); +x_1422 = lean_array_push(x_1385, x_1421); +x_1423 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1423, 0, x_1387); +lean_ctor_set(x_1423, 1, x_1422); +x_1424 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1425 = lean_array_push(x_1424, x_1423); +x_1426 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1427 = lean_array_push(x_1425, x_1426); +x_1428 = lean_array_push(x_1427, x_1426); +x_1429 = lean_array_push(x_1428, x_1426); +x_1430 = lean_array_push(x_1429, x_1426); +x_1431 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_1432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1432, 0, x_1431); +lean_ctor_set(x_1432, 1, x_1430); +x_1433 = lean_array_push(x_1385, x_1432); +x_1434 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_1394); +lean_inc(x_1397); +x_1435 = l_Lean_addMacroScope(x_1397, x_1434, x_1394); +x_1436 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_1437 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1437, 0, x_1403); +lean_ctor_set(x_1437, 1, x_1436); +lean_ctor_set(x_1437, 2, x_1435); +lean_ctor_set(x_1437, 3, x_1402); +x_1438 = lean_array_push(x_1385, x_1437); +x_1439 = lean_array_push(x_1438, x_1426); +x_1440 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_1441 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1441, 0, x_1440); +lean_ctor_set(x_1441, 1, x_1439); +x_1442 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_1443 = lean_array_push(x_1442, x_1441); +x_1444 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_1394); +lean_inc(x_1397); +x_1445 = l_Lean_addMacroScope(x_1397, x_1444, x_1394); +x_1446 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_1447 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1448 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1448, 0, x_1403); +lean_ctor_set(x_1448, 1, x_1446); +lean_ctor_set(x_1448, 2, x_1445); +lean_ctor_set(x_1448, 3, x_1447); +x_1449 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1450 = lean_array_push(x_1449, x_1448); +x_1451 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1452 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1452, 0, x_1451); +lean_ctor_set(x_1452, 1, x_1450); +x_1453 = lean_array_push(x_1385, x_1452); x_1454 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1454, 0, x_1378); +lean_ctor_set(x_1454, 0, x_1387); lean_ctor_set(x_1454, 1, x_1453); -x_1455 = lean_array_push(x_1376, x_1454); -x_1456 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1457 = lean_array_push(x_1455, x_1456); -x_1458 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1459 = lean_array_push(x_1458, x_1452); -x_1460 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1461 = lean_array_push(x_1459, x_1460); -x_1462 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_1463 = lean_array_push(x_1462, x_1383); -x_1464 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_1465 = lean_array_push(x_1463, x_1464); -x_1466 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1467 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1467, 0, x_1466); -lean_ctor_set(x_1467, 1, x_1465); -x_1468 = lean_array_push(x_1376, x_1467); -x_1469 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1469, 0, x_1378); -lean_ctor_set(x_1469, 1, x_1468); -x_1470 = lean_array_push(x_1376, x_1469); -x_1471 = lean_array_push(x_1470, x_1456); -x_1472 = lean_array_push(x_1462, x_1); -x_1473 = lean_array_push(x_1472, x_1464); -x_1474 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1474, 0, x_1466); -lean_ctor_set(x_1474, 1, x_1473); -x_1475 = lean_array_push(x_1471, x_1474); -x_1476 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1455 = lean_array_push(x_1424, x_1454); +x_1456 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_1457 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1457, 0, x_1456); +lean_ctor_set(x_1457, 1, x_1455); +x_1458 = lean_array_push(x_1443, x_1457); +x_1459 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_1394); +lean_inc(x_1397); +x_1460 = l_Lean_addMacroScope(x_1397, x_1459, x_1394); +x_1461 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1462 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1462, 0, x_1403); +lean_ctor_set(x_1462, 1, x_1461); +lean_ctor_set(x_1462, 2, x_1460); +lean_ctor_set(x_1462, 3, x_1402); +lean_inc(x_1462); +x_1463 = lean_array_push(x_1385, x_1462); +x_1464 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1464, 0, x_1387); +lean_ctor_set(x_1464, 1, x_1463); +x_1465 = lean_array_push(x_1385, x_1464); +x_1466 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1467 = lean_array_push(x_1465, x_1466); +x_1468 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1469 = lean_array_push(x_1468, x_1462); +x_1470 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1471 = lean_array_push(x_1469, x_1470); +x_1472 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1473 = lean_array_push(x_1472, x_1392); +x_1474 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1475 = lean_array_push(x_1473, x_1474); +x_1476 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_1477 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1477, 0, x_1476); lean_ctor_set(x_1477, 1, x_1475); -x_1478 = lean_array_push(x_1376, x_1477); -x_1479 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1480 = lean_array_push(x_1478, x_1479); -x_1481 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_1482 = l_Lean_addMacroScope(x_1388, x_1481, x_1385); -x_1483 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1484 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_1485 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1485, 0, x_1394); -lean_ctor_set(x_1485, 1, x_1483); -lean_ctor_set(x_1485, 2, x_1482); -lean_ctor_set(x_1485, 3, x_1484); -x_1486 = lean_array_push(x_1376, x_1485); -x_1487 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_1488 = lean_array_push(x_1486, x_1487); -x_1489 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1489, 0, x_1382); -lean_ctor_set(x_1489, 1, x_1488); -x_1490 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1491 = lean_array_push(x_1490, x_1489); -x_1492 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1492, 0, x_1476); -lean_ctor_set(x_1492, 1, x_1491); -x_1493 = lean_array_push(x_1480, x_1492); -x_1494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1494, 0, x_1378); -lean_ctor_set(x_1494, 1, x_1493); -x_1495 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1496 = lean_array_push(x_1495, x_1494); -x_1497 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1498 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1498, 0, x_1497); -lean_ctor_set(x_1498, 1, x_1496); -x_1499 = lean_array_push(x_1461, x_1498); -x_1500 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1501, 0, x_1500); -lean_ctor_set(x_1501, 1, x_1499); -x_1502 = lean_array_push(x_1457, x_1501); -x_1503 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1478 = lean_array_push(x_1385, x_1477); +x_1479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1479, 0, x_1387); +lean_ctor_set(x_1479, 1, x_1478); +x_1480 = lean_array_push(x_1385, x_1479); +x_1481 = lean_array_push(x_1480, x_1466); +x_1482 = lean_array_push(x_1472, x_1); +x_1483 = lean_array_push(x_1482, x_1474); +x_1484 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1484, 0, x_1476); +lean_ctor_set(x_1484, 1, x_1483); +x_1485 = lean_array_push(x_1481, x_1484); +x_1486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1487 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1487, 0, x_1486); +lean_ctor_set(x_1487, 1, x_1485); +x_1488 = lean_array_push(x_1385, x_1487); +x_1489 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1490 = lean_array_push(x_1488, x_1489); +x_1491 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1492 = l_Lean_addMacroScope(x_1397, x_1491, x_1394); +x_1493 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1494 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1495 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1495, 0, x_1403); +lean_ctor_set(x_1495, 1, x_1493); +lean_ctor_set(x_1495, 2, x_1492); +lean_ctor_set(x_1495, 3, x_1494); +x_1496 = lean_array_push(x_1385, x_1495); +x_1497 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1498 = lean_array_push(x_1496, x_1497); +x_1499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1499, 0, x_1391); +lean_ctor_set(x_1499, 1, x_1498); +x_1500 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1501 = lean_array_push(x_1500, x_1499); +x_1502 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1502, 0, x_1486); +lean_ctor_set(x_1502, 1, x_1501); +x_1503 = lean_array_push(x_1490, x_1502); x_1504 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1504, 0, x_1503); -lean_ctor_set(x_1504, 1, x_1502); -x_1505 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +lean_ctor_set(x_1504, 0, x_1387); +lean_ctor_set(x_1504, 1, x_1503); +x_1505 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1506 = lean_array_push(x_1505, x_1504); -x_1507 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1507 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; x_1508 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1508, 0, x_1507); lean_ctor_set(x_1508, 1, x_1506); -x_1509 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1510 = lean_array_push(x_1509, x_1508); -x_1511 = lean_array_push(x_1510, x_1416); -x_1512 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_1513 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1513, 0, x_1512); -lean_ctor_set(x_1513, 1, x_1511); -x_1514 = lean_array_push(x_1448, x_1513); -x_1515 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_1516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1516, 0, x_1515); -lean_ctor_set(x_1516, 1, x_1514); -x_1517 = lean_array_push(x_1423, x_1516); -x_1518 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_1519 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1519, 0, x_1518); -lean_ctor_set(x_1519, 1, x_1517); -x_1520 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1520, 0, x_1519); -if (lean_is_scalar(x_1390)) { - x_1521 = lean_alloc_ctor(0, 2, 0); +x_1509 = lean_array_push(x_1471, x_1508); +x_1510 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1511, 0, x_1510); +lean_ctor_set(x_1511, 1, x_1509); +x_1512 = lean_array_push(x_1467, x_1511); +x_1513 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1514, 0, x_1513); +lean_ctor_set(x_1514, 1, x_1512); +x_1515 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1516 = lean_array_push(x_1515, x_1514); +x_1517 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1518, 0, x_1517); +lean_ctor_set(x_1518, 1, x_1516); +x_1519 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1520 = lean_array_push(x_1519, x_1518); +x_1521 = lean_array_push(x_1520, x_1426); +x_1522 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_1523 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1523, 0, x_1522); +lean_ctor_set(x_1523, 1, x_1521); +x_1524 = lean_array_push(x_1458, x_1523); +x_1525 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1526 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1526, 0, x_1525); +lean_ctor_set(x_1526, 1, x_1524); +x_1527 = lean_array_push(x_1433, x_1526); +x_1528 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1529 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1529, 0, x_1528); +lean_ctor_set(x_1529, 1, x_1527); +x_1530 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1530, 0, x_1529); +if (lean_is_scalar(x_1399)) { + x_1531 = lean_alloc_ctor(0, 2, 0); } else { - x_1521 = x_1390; + x_1531 = x_1399; } -lean_ctor_set(x_1521, 0, x_1520); -lean_ctor_set(x_1521, 1, x_1389); -return x_1521; +lean_ctor_set(x_1531, 0, x_1530); +lean_ctor_set(x_1531, 1, x_1398); +return x_1531; } } else { -uint8_t x_1522; -x_1522 = lean_nat_dec_le(x_1366, x_1366); -if (x_1522 == 0) +uint8_t x_1532; +x_1532 = lean_nat_dec_le(x_1375, x_1375); +if (x_1532 == 0) { -uint8_t x_1523; -lean_dec(x_1366); -x_1523 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1367); -if (x_1523 == 0) +uint8_t x_1533; +lean_dec(x_1375); +x_1533 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1376); +if (x_1533 == 0) { -lean_object* x_1524; lean_object* x_1525; -lean_dec(x_1365); +lean_object* x_1534; lean_object* x_1535; +lean_dec(x_1374); lean_dec(x_1); -x_1524 = lean_box(0); -if (lean_is_scalar(x_1364)) { - x_1525 = lean_alloc_ctor(0, 2, 0); +x_1534 = lean_box(0); +if (lean_is_scalar(x_1373)) { + x_1535 = lean_alloc_ctor(0, 2, 0); } else { - x_1525 = x_1364; + x_1535 = x_1373; } -lean_ctor_set(x_1525, 0, x_1524); -lean_ctor_set(x_1525, 1, x_1363); -return x_1525; +lean_ctor_set(x_1535, 0, x_1534); +lean_ctor_set(x_1535, 1, x_1372); +return x_1535; } else { -lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; -lean_dec(x_1364); -x_1526 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1363); -x_1527 = lean_ctor_get(x_1526, 1); -lean_inc(x_1527); -lean_dec(x_1526); -x_1528 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1527); -x_1529 = lean_ctor_get(x_1528, 1); -lean_inc(x_1529); -lean_dec(x_1528); -x_1530 = l_Array_empty___closed__1; -x_1531 = l_Array_appendCore___rarg(x_1530, x_3); -x_1532 = l_Lean_nullKind___closed__2; -x_1533 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1533, 0, x_1532); -lean_ctor_set(x_1533, 1, x_1531); -x_1534 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_1535 = lean_array_push(x_1534, x_1533); -x_1536 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1537 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1537, 0, x_1536); -lean_ctor_set(x_1537, 1, x_1535); -x_1538 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1529); -x_1539 = lean_ctor_get(x_1538, 0); +lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; +lean_dec(x_1373); +x_1536 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1372); +x_1537 = lean_ctor_get(x_1536, 1); +lean_inc(x_1537); +lean_dec(x_1536); +x_1538 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1537); +x_1539 = lean_ctor_get(x_1538, 1); lean_inc(x_1539); -x_1540 = lean_ctor_get(x_1538, 1); -lean_inc(x_1540); lean_dec(x_1538); -x_1541 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1540); -x_1542 = lean_ctor_get(x_1541, 0); -lean_inc(x_1542); -x_1543 = lean_ctor_get(x_1541, 1); -lean_inc(x_1543); -if (lean_is_exclusive(x_1541)) { - lean_ctor_release(x_1541, 0); - lean_ctor_release(x_1541, 1); - x_1544 = x_1541; +x_1540 = l_Array_empty___closed__1; +x_1541 = l_Array_appendCore___rarg(x_1540, x_3); +x_1542 = l_Lean_nullKind___closed__2; +x_1543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1543, 0, x_1542); +lean_ctor_set(x_1543, 1, x_1541); +x_1544 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_1545 = lean_array_push(x_1544, x_1543); +x_1546 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1547 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1547, 0, x_1546); +lean_ctor_set(x_1547, 1, x_1545); +x_1548 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1539); +x_1549 = lean_ctor_get(x_1548, 0); +lean_inc(x_1549); +x_1550 = lean_ctor_get(x_1548, 1); +lean_inc(x_1550); +lean_dec(x_1548); +x_1551 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1550); +x_1552 = lean_ctor_get(x_1551, 0); +lean_inc(x_1552); +x_1553 = lean_ctor_get(x_1551, 1); +lean_inc(x_1553); +if (lean_is_exclusive(x_1551)) { + lean_ctor_release(x_1551, 0); + lean_ctor_release(x_1551, 1); + x_1554 = x_1551; } else { - lean_dec_ref(x_1541); - x_1544 = lean_box(0); + lean_dec_ref(x_1551); + x_1554 = lean_box(0); } -x_1545 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_1539); -lean_inc(x_1542); -x_1546 = l_Lean_addMacroScope(x_1542, x_1545, x_1539); -x_1547 = lean_box(0); -x_1548 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1549 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_1550 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1550, 0, x_1548); -lean_ctor_set(x_1550, 1, x_1549); -lean_ctor_set(x_1550, 2, x_1546); -lean_ctor_set(x_1550, 3, x_1547); -x_1551 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_1552 = lean_array_push(x_1551, x_1550); -x_1553 = lean_mk_syntax_ident(x_1365); -x_1554 = lean_array_push(x_1530, x_1553); -x_1555 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1555, 0, x_1532); -lean_ctor_set(x_1555, 1, x_1554); -x_1556 = lean_array_push(x_1552, x_1555); -x_1557 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_1558 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1558, 0, x_1557); -lean_ctor_set(x_1558, 1, x_1556); -x_1559 = lean_array_push(x_1530, x_1558); -x_1560 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1560, 0, x_1532); +x_1555 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_1549); +lean_inc(x_1552); +x_1556 = l_Lean_addMacroScope(x_1552, x_1555, x_1549); +x_1557 = lean_box(0); +x_1558 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1559 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_1560 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1560, 0, x_1558); lean_ctor_set(x_1560, 1, x_1559); -x_1561 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +lean_ctor_set(x_1560, 2, x_1556); +lean_ctor_set(x_1560, 3, x_1557); +x_1561 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; x_1562 = lean_array_push(x_1561, x_1560); -x_1563 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1564 = lean_array_push(x_1562, x_1563); -x_1565 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_1566 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1566, 0, x_1565); -lean_ctor_set(x_1566, 1, x_1564); -x_1567 = lean_array_push(x_1530, x_1566); +x_1563 = lean_mk_syntax_ident(x_1374); +x_1564 = lean_array_push(x_1540, x_1563); +x_1565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1565, 0, x_1542); +lean_ctor_set(x_1565, 1, x_1564); +x_1566 = lean_array_push(x_1562, x_1565); +x_1567 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; x_1568 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1568, 0, x_1532); -lean_ctor_set(x_1568, 1, x_1567); -x_1569 = lean_array_push(x_1551, x_1568); -x_1570 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_1571 = lean_array_push(x_1569, x_1570); +lean_ctor_set(x_1568, 0, x_1567); +lean_ctor_set(x_1568, 1, x_1566); +x_1569 = lean_array_push(x_1540, x_1568); +x_1570 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1570, 0, x_1542); +lean_ctor_set(x_1570, 1, x_1569); +x_1571 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; x_1572 = lean_array_push(x_1571, x_1570); -x_1573 = lean_array_push(x_1572, x_1570); -x_1574 = lean_array_push(x_1573, x_1570); -x_1575 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_1573 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1574 = lean_array_push(x_1572, x_1573); +x_1575 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; x_1576 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1576, 0, x_1575); lean_ctor_set(x_1576, 1, x_1574); -x_1577 = lean_array_push(x_1530, x_1576); -x_1578 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1539); -lean_inc(x_1542); -x_1579 = l_Lean_addMacroScope(x_1542, x_1578, x_1539); -x_1580 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_1581 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1581, 0, x_1548); -lean_ctor_set(x_1581, 1, x_1580); -lean_ctor_set(x_1581, 2, x_1579); -lean_ctor_set(x_1581, 3, x_1547); -x_1582 = lean_array_push(x_1530, x_1581); -x_1583 = lean_array_push(x_1582, x_1570); -x_1584 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_1585 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1585, 0, x_1584); -lean_ctor_set(x_1585, 1, x_1583); -x_1586 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_1587 = lean_array_push(x_1586, x_1585); -x_1588 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_1539); -lean_inc(x_1542); -x_1589 = l_Lean_addMacroScope(x_1542, x_1588, x_1539); -x_1590 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_1591 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1577 = lean_array_push(x_1540, x_1576); +x_1578 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1578, 0, x_1542); +lean_ctor_set(x_1578, 1, x_1577); +x_1579 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1580 = lean_array_push(x_1579, x_1578); +x_1581 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1582 = lean_array_push(x_1580, x_1581); +x_1583 = lean_array_push(x_1582, x_1581); +x_1584 = lean_array_push(x_1583, x_1581); +x_1585 = lean_array_push(x_1584, x_1581); +x_1586 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_1587 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1587, 0, x_1586); +lean_ctor_set(x_1587, 1, x_1585); +x_1588 = lean_array_push(x_1540, x_1587); +x_1589 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_1549); +lean_inc(x_1552); +x_1590 = l_Lean_addMacroScope(x_1552, x_1589, x_1549); +x_1591 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; x_1592 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1592, 0, x_1548); -lean_ctor_set(x_1592, 1, x_1590); -lean_ctor_set(x_1592, 2, x_1589); -lean_ctor_set(x_1592, 3, x_1591); -x_1593 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1594 = lean_array_push(x_1593, x_1592); -x_1595 = l_Lean_expandExplicitBindersAux_loop___closed__8; +lean_ctor_set(x_1592, 0, x_1558); +lean_ctor_set(x_1592, 1, x_1591); +lean_ctor_set(x_1592, 2, x_1590); +lean_ctor_set(x_1592, 3, x_1557); +x_1593 = lean_array_push(x_1540, x_1592); +x_1594 = lean_array_push(x_1593, x_1581); +x_1595 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; x_1596 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1596, 0, x_1595); lean_ctor_set(x_1596, 1, x_1594); -x_1597 = lean_array_push(x_1530, x_1596); -x_1598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1598, 0, x_1532); -lean_ctor_set(x_1598, 1, x_1597); -x_1599 = lean_array_push(x_1551, x_1598); -x_1600 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_1601 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1601, 0, x_1600); -lean_ctor_set(x_1601, 1, x_1599); -x_1602 = lean_array_push(x_1587, x_1601); -x_1603 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_1539); -lean_inc(x_1542); -x_1604 = l_Lean_addMacroScope(x_1542, x_1603, x_1539); -x_1605 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1606 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1606, 0, x_1548); -lean_ctor_set(x_1606, 1, x_1605); -lean_ctor_set(x_1606, 2, x_1604); -lean_ctor_set(x_1606, 3, x_1547); -lean_inc(x_1606); -x_1607 = lean_array_push(x_1530, x_1606); -x_1608 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1608, 0, x_1532); -lean_ctor_set(x_1608, 1, x_1607); -x_1609 = lean_array_push(x_1530, x_1608); -x_1610 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1611 = lean_array_push(x_1609, x_1610); -x_1612 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1613 = lean_array_push(x_1612, x_1606); -x_1614 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1615 = lean_array_push(x_1613, x_1614); -x_1616 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_1617 = lean_array_push(x_1616, x_1537); -x_1618 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_1619 = lean_array_push(x_1617, x_1618); -x_1620 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1621 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1621, 0, x_1620); -lean_ctor_set(x_1621, 1, x_1619); -x_1622 = lean_array_push(x_1530, x_1621); -x_1623 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1623, 0, x_1532); -lean_ctor_set(x_1623, 1, x_1622); -x_1624 = lean_array_push(x_1530, x_1623); -x_1625 = lean_array_push(x_1624, x_1610); -x_1626 = lean_array_push(x_1616, x_1); -x_1627 = lean_array_push(x_1626, x_1618); -x_1628 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1628, 0, x_1620); -lean_ctor_set(x_1628, 1, x_1627); -x_1629 = lean_array_push(x_1625, x_1628); -x_1630 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_1631 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1631, 0, x_1630); -lean_ctor_set(x_1631, 1, x_1629); -x_1632 = lean_array_push(x_1530, x_1631); -x_1633 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1634 = lean_array_push(x_1632, x_1633); -x_1635 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_1636 = l_Lean_addMacroScope(x_1542, x_1635, x_1539); -x_1637 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1638 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_1639 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1639, 0, x_1548); -lean_ctor_set(x_1639, 1, x_1637); -lean_ctor_set(x_1639, 2, x_1636); -lean_ctor_set(x_1639, 3, x_1638); -x_1640 = lean_array_push(x_1530, x_1639); -x_1641 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_1642 = lean_array_push(x_1640, x_1641); -x_1643 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1643, 0, x_1536); -lean_ctor_set(x_1643, 1, x_1642); -x_1644 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1645 = lean_array_push(x_1644, x_1643); -x_1646 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1646, 0, x_1630); -lean_ctor_set(x_1646, 1, x_1645); -x_1647 = lean_array_push(x_1634, x_1646); -x_1648 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1648, 0, x_1532); -lean_ctor_set(x_1648, 1, x_1647); -x_1649 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1650 = lean_array_push(x_1649, x_1648); -x_1651 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1652 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1652, 0, x_1651); -lean_ctor_set(x_1652, 1, x_1650); -x_1653 = lean_array_push(x_1615, x_1652); -x_1654 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1655 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1655, 0, x_1654); -lean_ctor_set(x_1655, 1, x_1653); -x_1656 = lean_array_push(x_1611, x_1655); -x_1657 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1658 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1658, 0, x_1657); -lean_ctor_set(x_1658, 1, x_1656); -x_1659 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_1660 = lean_array_push(x_1659, x_1658); -x_1661 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1662 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1662, 0, x_1661); -lean_ctor_set(x_1662, 1, x_1660); -x_1663 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1664 = lean_array_push(x_1663, x_1662); -x_1665 = lean_array_push(x_1664, x_1570); -x_1666 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_1667 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1667, 0, x_1666); -lean_ctor_set(x_1667, 1, x_1665); -x_1668 = lean_array_push(x_1602, x_1667); -x_1669 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_1670 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1670, 0, x_1669); -lean_ctor_set(x_1670, 1, x_1668); -x_1671 = lean_array_push(x_1577, x_1670); -x_1672 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1597 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_1598 = lean_array_push(x_1597, x_1596); +x_1599 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_1549); +lean_inc(x_1552); +x_1600 = l_Lean_addMacroScope(x_1552, x_1599, x_1549); +x_1601 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_1602 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1603 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1603, 0, x_1558); +lean_ctor_set(x_1603, 1, x_1601); +lean_ctor_set(x_1603, 2, x_1600); +lean_ctor_set(x_1603, 3, x_1602); +x_1604 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1605 = lean_array_push(x_1604, x_1603); +x_1606 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1607 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1607, 0, x_1606); +lean_ctor_set(x_1607, 1, x_1605); +x_1608 = lean_array_push(x_1540, x_1607); +x_1609 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1609, 0, x_1542); +lean_ctor_set(x_1609, 1, x_1608); +x_1610 = lean_array_push(x_1579, x_1609); +x_1611 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_1612 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1612, 0, x_1611); +lean_ctor_set(x_1612, 1, x_1610); +x_1613 = lean_array_push(x_1598, x_1612); +x_1614 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_1549); +lean_inc(x_1552); +x_1615 = l_Lean_addMacroScope(x_1552, x_1614, x_1549); +x_1616 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1617 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1617, 0, x_1558); +lean_ctor_set(x_1617, 1, x_1616); +lean_ctor_set(x_1617, 2, x_1615); +lean_ctor_set(x_1617, 3, x_1557); +lean_inc(x_1617); +x_1618 = lean_array_push(x_1540, x_1617); +x_1619 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1619, 0, x_1542); +lean_ctor_set(x_1619, 1, x_1618); +x_1620 = lean_array_push(x_1540, x_1619); +x_1621 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1622 = lean_array_push(x_1620, x_1621); +x_1623 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1624 = lean_array_push(x_1623, x_1617); +x_1625 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1626 = lean_array_push(x_1624, x_1625); +x_1627 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1628 = lean_array_push(x_1627, x_1547); +x_1629 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1630 = lean_array_push(x_1628, x_1629); +x_1631 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1632 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1632, 0, x_1631); +lean_ctor_set(x_1632, 1, x_1630); +x_1633 = lean_array_push(x_1540, x_1632); +x_1634 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1634, 0, x_1542); +lean_ctor_set(x_1634, 1, x_1633); +x_1635 = lean_array_push(x_1540, x_1634); +x_1636 = lean_array_push(x_1635, x_1621); +x_1637 = lean_array_push(x_1627, x_1); +x_1638 = lean_array_push(x_1637, x_1629); +x_1639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1639, 0, x_1631); +lean_ctor_set(x_1639, 1, x_1638); +x_1640 = lean_array_push(x_1636, x_1639); +x_1641 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1642 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1642, 0, x_1641); +lean_ctor_set(x_1642, 1, x_1640); +x_1643 = lean_array_push(x_1540, x_1642); +x_1644 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1645 = lean_array_push(x_1643, x_1644); +x_1646 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1647 = l_Lean_addMacroScope(x_1552, x_1646, x_1549); +x_1648 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1649 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1650 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1650, 0, x_1558); +lean_ctor_set(x_1650, 1, x_1648); +lean_ctor_set(x_1650, 2, x_1647); +lean_ctor_set(x_1650, 3, x_1649); +x_1651 = lean_array_push(x_1540, x_1650); +x_1652 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1653 = lean_array_push(x_1651, x_1652); +x_1654 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1654, 0, x_1546); +lean_ctor_set(x_1654, 1, x_1653); +x_1655 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1656 = lean_array_push(x_1655, x_1654); +x_1657 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1657, 0, x_1641); +lean_ctor_set(x_1657, 1, x_1656); +x_1658 = lean_array_push(x_1645, x_1657); +x_1659 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1659, 0, x_1542); +lean_ctor_set(x_1659, 1, x_1658); +x_1660 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1661 = lean_array_push(x_1660, x_1659); +x_1662 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1663 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1663, 0, x_1662); +lean_ctor_set(x_1663, 1, x_1661); +x_1664 = lean_array_push(x_1626, x_1663); +x_1665 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1666 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1666, 0, x_1665); +lean_ctor_set(x_1666, 1, x_1664); +x_1667 = lean_array_push(x_1622, x_1666); +x_1668 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1669 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1669, 0, x_1668); +lean_ctor_set(x_1669, 1, x_1667); +x_1670 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1671 = lean_array_push(x_1670, x_1669); +x_1672 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; x_1673 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1673, 0, x_1672); lean_ctor_set(x_1673, 1, x_1671); -x_1674 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1674, 0, x_1673); -if (lean_is_scalar(x_1544)) { - x_1675 = lean_alloc_ctor(0, 2, 0); -} else { - x_1675 = x_1544; -} -lean_ctor_set(x_1675, 0, x_1674); -lean_ctor_set(x_1675, 1, x_1543); -return x_1675; -} -} -else -{ -size_t x_1676; size_t x_1677; uint8_t x_1678; -x_1676 = 0; -x_1677 = lean_usize_of_nat(x_1366); -lean_dec(x_1366); -x_1678 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_3, x_1676, x_1677); -if (x_1678 == 0) -{ -uint8_t x_1679; -x_1679 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1367); -if (x_1679 == 0) -{ -lean_object* x_1680; lean_object* x_1681; -lean_dec(x_1365); -lean_dec(x_1); -x_1680 = lean_box(0); -if (lean_is_scalar(x_1364)) { - x_1681 = lean_alloc_ctor(0, 2, 0); -} else { - x_1681 = x_1364; -} +x_1674 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1675 = lean_array_push(x_1674, x_1673); +x_1676 = lean_array_push(x_1675, x_1581); +x_1677 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_1678 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1678, 0, x_1677); +lean_ctor_set(x_1678, 1, x_1676); +x_1679 = lean_array_push(x_1613, x_1678); +x_1680 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1681 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1681, 0, x_1680); -lean_ctor_set(x_1681, 1, x_1363); -return x_1681; +lean_ctor_set(x_1681, 1, x_1679); +x_1682 = lean_array_push(x_1588, x_1681); +x_1683 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1684 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1684, 0, x_1683); +lean_ctor_set(x_1684, 1, x_1682); +x_1685 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1685, 0, x_1684); +if (lean_is_scalar(x_1554)) { + x_1686 = lean_alloc_ctor(0, 2, 0); +} else { + x_1686 = x_1554; +} +lean_ctor_set(x_1686, 0, x_1685); +lean_ctor_set(x_1686, 1, x_1553); +return x_1686; +} } else { -lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; -lean_dec(x_1364); -x_1682 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1363); -x_1683 = lean_ctor_get(x_1682, 1); -lean_inc(x_1683); -lean_dec(x_1682); -x_1684 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1683); -x_1685 = lean_ctor_get(x_1684, 1); -lean_inc(x_1685); -lean_dec(x_1684); -x_1686 = l_Array_empty___closed__1; -x_1687 = l_Array_appendCore___rarg(x_1686, x_3); -x_1688 = l_Lean_nullKind___closed__2; -x_1689 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1689, 0, x_1688); -lean_ctor_set(x_1689, 1, x_1687); -x_1690 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; -x_1691 = lean_array_push(x_1690, x_1689); -x_1692 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1693 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1693, 0, x_1692); -lean_ctor_set(x_1693, 1, x_1691); -x_1694 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1685); -x_1695 = lean_ctor_get(x_1694, 0); -lean_inc(x_1695); -x_1696 = lean_ctor_get(x_1694, 1); -lean_inc(x_1696); -lean_dec(x_1694); -x_1697 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1696); -x_1698 = lean_ctor_get(x_1697, 0); -lean_inc(x_1698); -x_1699 = lean_ctor_get(x_1697, 1); -lean_inc(x_1699); -if (lean_is_exclusive(x_1697)) { - lean_ctor_release(x_1697, 0); - lean_ctor_release(x_1697, 1); - x_1700 = x_1697; +size_t x_1687; size_t x_1688; uint8_t x_1689; +x_1687 = 0; +x_1688 = lean_usize_of_nat(x_1375); +lean_dec(x_1375); +x_1689 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_3, x_1687, x_1688); +if (x_1689 == 0) +{ +uint8_t x_1690; +x_1690 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1376); +if (x_1690 == 0) +{ +lean_object* x_1691; lean_object* x_1692; +lean_dec(x_1374); +lean_dec(x_1); +x_1691 = lean_box(0); +if (lean_is_scalar(x_1373)) { + x_1692 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_1697); - x_1700 = lean_box(0); + x_1692 = x_1373; } -x_1701 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; -lean_inc(x_1695); -lean_inc(x_1698); -x_1702 = l_Lean_addMacroScope(x_1698, x_1701, x_1695); -x_1703 = lean_box(0); -x_1704 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1705 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -x_1706 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1706, 0, x_1704); -lean_ctor_set(x_1706, 1, x_1705); -lean_ctor_set(x_1706, 2, x_1702); -lean_ctor_set(x_1706, 3, x_1703); -x_1707 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -x_1708 = lean_array_push(x_1707, x_1706); -x_1709 = lean_mk_syntax_ident(x_1365); -x_1710 = lean_array_push(x_1686, x_1709); -x_1711 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1711, 0, x_1688); -lean_ctor_set(x_1711, 1, x_1710); -x_1712 = lean_array_push(x_1708, x_1711); -x_1713 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_1714 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1714, 0, x_1713); -lean_ctor_set(x_1714, 1, x_1712); -x_1715 = lean_array_push(x_1686, x_1714); -x_1716 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1716, 0, x_1688); -lean_ctor_set(x_1716, 1, x_1715); -x_1717 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_1718 = lean_array_push(x_1717, x_1716); -x_1719 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1720 = lean_array_push(x_1718, x_1719); -x_1721 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +lean_ctor_set(x_1692, 0, x_1691); +lean_ctor_set(x_1692, 1, x_1372); +return x_1692; +} +else +{ +lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; lean_object* x_1843; +lean_dec(x_1373); +x_1693 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1372); +x_1694 = lean_ctor_get(x_1693, 1); +lean_inc(x_1694); +lean_dec(x_1693); +x_1695 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1694); +x_1696 = lean_ctor_get(x_1695, 1); +lean_inc(x_1696); +lean_dec(x_1695); +x_1697 = l_Array_empty___closed__1; +x_1698 = l_Array_appendCore___rarg(x_1697, x_3); +x_1699 = l_Lean_nullKind___closed__2; +x_1700 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1700, 0, x_1699); +lean_ctor_set(x_1700, 1, x_1698); +x_1701 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_1702 = lean_array_push(x_1701, x_1700); +x_1703 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1704 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1704, 0, x_1703); +lean_ctor_set(x_1704, 1, x_1702); +x_1705 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1696); +x_1706 = lean_ctor_get(x_1705, 0); +lean_inc(x_1706); +x_1707 = lean_ctor_get(x_1705, 1); +lean_inc(x_1707); +lean_dec(x_1705); +x_1708 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1707); +x_1709 = lean_ctor_get(x_1708, 0); +lean_inc(x_1709); +x_1710 = lean_ctor_get(x_1708, 1); +lean_inc(x_1710); +if (lean_is_exclusive(x_1708)) { + lean_ctor_release(x_1708, 0); + lean_ctor_release(x_1708, 1); + x_1711 = x_1708; +} else { + lean_dec_ref(x_1708); + x_1711 = lean_box(0); +} +x_1712 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +lean_inc(x_1706); +lean_inc(x_1709); +x_1713 = l_Lean_addMacroScope(x_1709, x_1712, x_1706); +x_1714 = lean_box(0); +x_1715 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1716 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; +x_1717 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1717, 0, x_1715); +lean_ctor_set(x_1717, 1, x_1716); +lean_ctor_set(x_1717, 2, x_1713); +lean_ctor_set(x_1717, 3, x_1714); +x_1718 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1719 = lean_array_push(x_1718, x_1717); +x_1720 = lean_mk_syntax_ident(x_1374); +x_1721 = lean_array_push(x_1697, x_1720); x_1722 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1722, 0, x_1721); -lean_ctor_set(x_1722, 1, x_1720); -x_1723 = lean_array_push(x_1686, x_1722); -x_1724 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1724, 0, x_1688); -lean_ctor_set(x_1724, 1, x_1723); -x_1725 = lean_array_push(x_1707, x_1724); -x_1726 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_1727 = lean_array_push(x_1725, x_1726); -x_1728 = lean_array_push(x_1727, x_1726); -x_1729 = lean_array_push(x_1728, x_1726); -x_1730 = lean_array_push(x_1729, x_1726); -x_1731 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_1732 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1732, 0, x_1731); -lean_ctor_set(x_1732, 1, x_1730); -x_1733 = lean_array_push(x_1686, x_1732); -x_1734 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1695); -lean_inc(x_1698); -x_1735 = l_Lean_addMacroScope(x_1698, x_1734, x_1695); -x_1736 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; -x_1737 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1737, 0, x_1704); -lean_ctor_set(x_1737, 1, x_1736); -lean_ctor_set(x_1737, 2, x_1735); -lean_ctor_set(x_1737, 3, x_1703); -x_1738 = lean_array_push(x_1686, x_1737); -x_1739 = lean_array_push(x_1738, x_1726); -x_1740 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_1741 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1741, 0, x_1740); -lean_ctor_set(x_1741, 1, x_1739); -x_1742 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_1743 = lean_array_push(x_1742, x_1741); -x_1744 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -lean_inc(x_1695); -lean_inc(x_1698); -x_1745 = l_Lean_addMacroScope(x_1698, x_1744, x_1695); -x_1746 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -x_1747 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_1748 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1748, 0, x_1704); -lean_ctor_set(x_1748, 1, x_1746); -lean_ctor_set(x_1748, 2, x_1745); -lean_ctor_set(x_1748, 3, x_1747); -x_1749 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1750 = lean_array_push(x_1749, x_1748); -x_1751 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1752 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1752, 0, x_1751); -lean_ctor_set(x_1752, 1, x_1750); -x_1753 = lean_array_push(x_1686, x_1752); -x_1754 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1754, 0, x_1688); -lean_ctor_set(x_1754, 1, x_1753); -x_1755 = lean_array_push(x_1707, x_1754); -x_1756 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_1757 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1757, 0, x_1756); -lean_ctor_set(x_1757, 1, x_1755); -x_1758 = lean_array_push(x_1743, x_1757); -x_1759 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_1695); -lean_inc(x_1698); -x_1760 = l_Lean_addMacroScope(x_1698, x_1759, x_1695); -x_1761 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1762 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1762, 0, x_1704); -lean_ctor_set(x_1762, 1, x_1761); -lean_ctor_set(x_1762, 2, x_1760); -lean_ctor_set(x_1762, 3, x_1703); -lean_inc(x_1762); -x_1763 = lean_array_push(x_1686, x_1762); +lean_ctor_set(x_1722, 0, x_1699); +lean_ctor_set(x_1722, 1, x_1721); +x_1723 = lean_array_push(x_1719, x_1722); +x_1724 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_1725 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1725, 0, x_1724); +lean_ctor_set(x_1725, 1, x_1723); +x_1726 = lean_array_push(x_1697, x_1725); +x_1727 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1727, 0, x_1699); +lean_ctor_set(x_1727, 1, x_1726); +x_1728 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_1729 = lean_array_push(x_1728, x_1727); +x_1730 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1731 = lean_array_push(x_1729, x_1730); +x_1732 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_1733 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1733, 0, x_1732); +lean_ctor_set(x_1733, 1, x_1731); +x_1734 = lean_array_push(x_1697, x_1733); +x_1735 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1735, 0, x_1699); +lean_ctor_set(x_1735, 1, x_1734); +x_1736 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1737 = lean_array_push(x_1736, x_1735); +x_1738 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1739 = lean_array_push(x_1737, x_1738); +x_1740 = lean_array_push(x_1739, x_1738); +x_1741 = lean_array_push(x_1740, x_1738); +x_1742 = lean_array_push(x_1741, x_1738); +x_1743 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_1744 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1744, 0, x_1743); +lean_ctor_set(x_1744, 1, x_1742); +x_1745 = lean_array_push(x_1697, x_1744); +x_1746 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_inc(x_1706); +lean_inc(x_1709); +x_1747 = l_Lean_addMacroScope(x_1709, x_1746, x_1706); +x_1748 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_1749 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1749, 0, x_1715); +lean_ctor_set(x_1749, 1, x_1748); +lean_ctor_set(x_1749, 2, x_1747); +lean_ctor_set(x_1749, 3, x_1714); +x_1750 = lean_array_push(x_1697, x_1749); +x_1751 = lean_array_push(x_1750, x_1738); +x_1752 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_1753 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1753, 0, x_1752); +lean_ctor_set(x_1753, 1, x_1751); +x_1754 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_1755 = lean_array_push(x_1754, x_1753); +x_1756 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; +lean_inc(x_1706); +lean_inc(x_1709); +x_1757 = l_Lean_addMacroScope(x_1709, x_1756, x_1706); +x_1758 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_1759 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1760 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1760, 0, x_1715); +lean_ctor_set(x_1760, 1, x_1758); +lean_ctor_set(x_1760, 2, x_1757); +lean_ctor_set(x_1760, 3, x_1759); +x_1761 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1762 = lean_array_push(x_1761, x_1760); +x_1763 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_1764 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1764, 0, x_1688); -lean_ctor_set(x_1764, 1, x_1763); -x_1765 = lean_array_push(x_1686, x_1764); -x_1766 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1767 = lean_array_push(x_1765, x_1766); -x_1768 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1769 = lean_array_push(x_1768, x_1762); -x_1770 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1771 = lean_array_push(x_1769, x_1770); -x_1772 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_1773 = lean_array_push(x_1772, x_1693); -x_1774 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_1775 = lean_array_push(x_1773, x_1774); -x_1776 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1777 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1777, 0, x_1776); -lean_ctor_set(x_1777, 1, x_1775); -x_1778 = lean_array_push(x_1686, x_1777); -x_1779 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1779, 0, x_1688); -lean_ctor_set(x_1779, 1, x_1778); -x_1780 = lean_array_push(x_1686, x_1779); -x_1781 = lean_array_push(x_1780, x_1766); -x_1782 = lean_array_push(x_1772, x_1); -x_1783 = lean_array_push(x_1782, x_1774); -x_1784 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1784, 0, x_1776); -lean_ctor_set(x_1784, 1, x_1783); -x_1785 = lean_array_push(x_1781, x_1784); -x_1786 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_1787 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1787, 0, x_1786); -lean_ctor_set(x_1787, 1, x_1785); -x_1788 = lean_array_push(x_1686, x_1787); -x_1789 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1790 = lean_array_push(x_1788, x_1789); -x_1791 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; -x_1792 = l_Lean_addMacroScope(x_1698, x_1791, x_1695); -x_1793 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1794 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; -x_1795 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1795, 0, x_1704); -lean_ctor_set(x_1795, 1, x_1793); -lean_ctor_set(x_1795, 2, x_1792); -lean_ctor_set(x_1795, 3, x_1794); -x_1796 = lean_array_push(x_1686, x_1795); -x_1797 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; -x_1798 = lean_array_push(x_1796, x_1797); +lean_ctor_set(x_1764, 0, x_1763); +lean_ctor_set(x_1764, 1, x_1762); +x_1765 = lean_array_push(x_1697, x_1764); +x_1766 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1766, 0, x_1699); +lean_ctor_set(x_1766, 1, x_1765); +x_1767 = lean_array_push(x_1736, x_1766); +x_1768 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_1769 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1769, 0, x_1768); +lean_ctor_set(x_1769, 1, x_1767); +x_1770 = lean_array_push(x_1755, x_1769); +x_1771 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_1706); +lean_inc(x_1709); +x_1772 = l_Lean_addMacroScope(x_1709, x_1771, x_1706); +x_1773 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1774 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1774, 0, x_1715); +lean_ctor_set(x_1774, 1, x_1773); +lean_ctor_set(x_1774, 2, x_1772); +lean_ctor_set(x_1774, 3, x_1714); +lean_inc(x_1774); +x_1775 = lean_array_push(x_1697, x_1774); +x_1776 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1776, 0, x_1699); +lean_ctor_set(x_1776, 1, x_1775); +x_1777 = lean_array_push(x_1697, x_1776); +x_1778 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1779 = lean_array_push(x_1777, x_1778); +x_1780 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1781 = lean_array_push(x_1780, x_1774); +x_1782 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1783 = lean_array_push(x_1781, x_1782); +x_1784 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1785 = lean_array_push(x_1784, x_1704); +x_1786 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1787 = lean_array_push(x_1785, x_1786); +x_1788 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1789, 0, x_1788); +lean_ctor_set(x_1789, 1, x_1787); +x_1790 = lean_array_push(x_1697, x_1789); +x_1791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1791, 0, x_1699); +lean_ctor_set(x_1791, 1, x_1790); +x_1792 = lean_array_push(x_1697, x_1791); +x_1793 = lean_array_push(x_1792, x_1778); +x_1794 = lean_array_push(x_1784, x_1); +x_1795 = lean_array_push(x_1794, x_1786); +x_1796 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1796, 0, x_1788); +lean_ctor_set(x_1796, 1, x_1795); +x_1797 = lean_array_push(x_1793, x_1796); +x_1798 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; x_1799 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1799, 0, x_1692); -lean_ctor_set(x_1799, 1, x_1798); -x_1800 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1801 = lean_array_push(x_1800, x_1799); -x_1802 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1802, 0, x_1786); -lean_ctor_set(x_1802, 1, x_1801); -x_1803 = lean_array_push(x_1790, x_1802); -x_1804 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1804, 0, x_1688); -lean_ctor_set(x_1804, 1, x_1803); -x_1805 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1806 = lean_array_push(x_1805, x_1804); -x_1807 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1808 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1808, 0, x_1807); -lean_ctor_set(x_1808, 1, x_1806); -x_1809 = lean_array_push(x_1771, x_1808); -x_1810 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_ctor_set(x_1799, 0, x_1798); +lean_ctor_set(x_1799, 1, x_1797); +x_1800 = lean_array_push(x_1697, x_1799); +x_1801 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1802 = lean_array_push(x_1800, x_1801); +x_1803 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1804 = l_Lean_addMacroScope(x_1709, x_1803, x_1706); +x_1805 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_1806 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1807 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1807, 0, x_1715); +lean_ctor_set(x_1807, 1, x_1805); +lean_ctor_set(x_1807, 2, x_1804); +lean_ctor_set(x_1807, 3, x_1806); +x_1808 = lean_array_push(x_1697, x_1807); +x_1809 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1810 = lean_array_push(x_1808, x_1809); x_1811 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1811, 0, x_1810); -lean_ctor_set(x_1811, 1, x_1809); -x_1812 = lean_array_push(x_1767, x_1811); -x_1813 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +lean_ctor_set(x_1811, 0, x_1703); +lean_ctor_set(x_1811, 1, x_1810); +x_1812 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1813 = lean_array_push(x_1812, x_1811); x_1814 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1814, 0, x_1813); -lean_ctor_set(x_1814, 1, x_1812); -x_1815 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_1816 = lean_array_push(x_1815, x_1814); -x_1817 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1818 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1818, 0, x_1817); -lean_ctor_set(x_1818, 1, x_1816); -x_1819 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1820 = lean_array_push(x_1819, x_1818); -x_1821 = lean_array_push(x_1820, x_1726); -x_1822 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +lean_ctor_set(x_1814, 0, x_1798); +lean_ctor_set(x_1814, 1, x_1813); +x_1815 = lean_array_push(x_1802, x_1814); +x_1816 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1816, 0, x_1699); +lean_ctor_set(x_1816, 1, x_1815); +x_1817 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1818 = lean_array_push(x_1817, x_1816); +x_1819 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1820, 0, x_1819); +lean_ctor_set(x_1820, 1, x_1818); +x_1821 = lean_array_push(x_1783, x_1820); +x_1822 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_1823 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1823, 0, x_1822); lean_ctor_set(x_1823, 1, x_1821); -x_1824 = lean_array_push(x_1758, x_1823); -x_1825 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1824 = lean_array_push(x_1779, x_1823); +x_1825 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; x_1826 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1826, 0, x_1825); lean_ctor_set(x_1826, 1, x_1824); -x_1827 = lean_array_push(x_1733, x_1826); -x_1828 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_1829 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1829, 0, x_1828); -lean_ctor_set(x_1829, 1, x_1827); -x_1830 = lean_alloc_ctor(1, 1, 0); +x_1827 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1828 = lean_array_push(x_1827, x_1826); +x_1829 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1830 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1830, 0, x_1829); -if (lean_is_scalar(x_1700)) { - x_1831 = lean_alloc_ctor(0, 2, 0); -} else { - x_1831 = x_1700; -} -lean_ctor_set(x_1831, 0, x_1830); -lean_ctor_set(x_1831, 1, x_1699); -return x_1831; -} -} -else -{ -lean_object* x_1832; lean_object* x_1833; -lean_dec(x_1365); -lean_dec(x_1); -x_1832 = lean_box(0); -if (lean_is_scalar(x_1364)) { - x_1833 = lean_alloc_ctor(0, 2, 0); -} else { - x_1833 = x_1364; -} -lean_ctor_set(x_1833, 0, x_1832); -lean_ctor_set(x_1833, 1, x_1363); -return x_1833; -} -} -} -} -else -{ -lean_object* x_1834; lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; -lean_dec(x_1362); -lean_dec(x_1360); -lean_dec(x_1); -x_1834 = lean_ctor_get(x_8, 1); -lean_inc(x_1834); -if (lean_is_exclusive(x_8)) { - lean_ctor_release(x_8, 0); - lean_ctor_release(x_8, 1); - x_1835 = x_8; -} else { - lean_dec_ref(x_8); - x_1835 = lean_box(0); -} -x_1836 = lean_box(0); -if (lean_is_scalar(x_1835)) { - x_1837 = lean_alloc_ctor(0, 2, 0); -} else { - x_1837 = x_1835; -} -lean_ctor_set(x_1837, 0, x_1836); -lean_ctor_set(x_1837, 1, x_1834); -return x_1837; -} -} -else -{ -lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; -lean_dec(x_1361); -lean_dec(x_1360); -lean_dec(x_1355); -lean_dec(x_1); -x_1838 = lean_ctor_get(x_8, 1); -lean_inc(x_1838); -if (lean_is_exclusive(x_8)) { - lean_ctor_release(x_8, 0); - lean_ctor_release(x_8, 1); - x_1839 = x_8; -} else { - lean_dec_ref(x_8); - x_1839 = lean_box(0); -} -x_1840 = lean_box(0); -if (lean_is_scalar(x_1839)) { - x_1841 = lean_alloc_ctor(0, 2, 0); -} else { - x_1841 = x_1839; -} +lean_ctor_set(x_1830, 1, x_1828); +x_1831 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1832 = lean_array_push(x_1831, x_1830); +x_1833 = lean_array_push(x_1832, x_1738); +x_1834 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_1835 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1835, 0, x_1834); +lean_ctor_set(x_1835, 1, x_1833); +x_1836 = lean_array_push(x_1770, x_1835); +x_1837 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1838 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1838, 0, x_1837); +lean_ctor_set(x_1838, 1, x_1836); +x_1839 = lean_array_push(x_1745, x_1838); +x_1840 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1841 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1841, 0, x_1840); -lean_ctor_set(x_1841, 1, x_1838); -return x_1841; +lean_ctor_set(x_1841, 1, x_1839); +x_1842 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1842, 0, x_1841); +if (lean_is_scalar(x_1711)) { + x_1843 = lean_alloc_ctor(0, 2, 0); +} else { + x_1843 = x_1711; +} +lean_ctor_set(x_1843, 0, x_1842); +lean_ctor_set(x_1843, 1, x_1710); +return x_1843; +} +} +else +{ +lean_object* x_1844; lean_object* x_1845; +lean_dec(x_1374); +lean_dec(x_1); +x_1844 = lean_box(0); +if (lean_is_scalar(x_1373)) { + x_1845 = lean_alloc_ctor(0, 2, 0); +} else { + x_1845 = x_1373; +} +lean_ctor_set(x_1845, 0, x_1844); +lean_ctor_set(x_1845, 1, x_1372); +return x_1845; +} +} +} +} +else +{ +lean_object* x_1846; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; +lean_dec(x_1371); +lean_dec(x_1369); +lean_dec(x_1); +x_1846 = lean_ctor_get(x_8, 1); +lean_inc(x_1846); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_1847 = x_8; +} else { + lean_dec_ref(x_8); + x_1847 = lean_box(0); +} +x_1848 = lean_box(0); +if (lean_is_scalar(x_1847)) { + x_1849 = lean_alloc_ctor(0, 2, 0); +} else { + x_1849 = x_1847; +} +lean_ctor_set(x_1849, 0, x_1848); +lean_ctor_set(x_1849, 1, x_1846); +return x_1849; +} +} +else +{ +lean_object* x_1850; lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; +lean_dec(x_1370); +lean_dec(x_1369); +lean_dec(x_1364); +lean_dec(x_1); +x_1850 = lean_ctor_get(x_8, 1); +lean_inc(x_1850); +if (lean_is_exclusive(x_8)) { + lean_ctor_release(x_8, 0); + lean_ctor_release(x_8, 1); + x_1851 = x_8; +} else { + lean_dec_ref(x_8); + x_1851 = lean_box(0); +} +x_1852 = lean_box(0); +if (lean_is_scalar(x_1851)) { + x_1853 = lean_alloc_ctor(0, 2, 0); +} else { + x_1853 = x_1851; +} +lean_ctor_set(x_1853, 0, x_1852); +lean_ctor_set(x_1853, 1, x_1850); +return x_1853; } } } @@ -23876,7 +24035,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; x_6 = lean_array_uget(x_1, x_2); lean_inc(x_6); x_7 = l_Lean_Syntax_getKind(x_6); -x_8 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__14; +x_8 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__16; x_9 = lean_name_eq(x_7, x_8); lean_dec(x_7); x_10 = 1; @@ -24070,9 +24229,9 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Lean_Parser_categoryParserFnImpl___closed__1; -x_3 = lean_alloc_ctor(2, 2, 0); +x_1 = l_Lean_Elab_mkAttrKindGlobal___closed__2; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; @@ -24082,7 +24241,7 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1 = l_Array_empty___closed__1; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -24092,9 +24251,11 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_3 = lean_array_push(x_1, x_2); +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Lean_Parser_categoryParserFnImpl___closed__1; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); return x_3; } } @@ -24102,8 +24263,8 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__13; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -24122,8 +24283,8 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__22; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1; +x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -24138,6 +24299,26 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___boxed__const__1() { _start: { @@ -24292,7 +24473,7 @@ x_67 = l_Lean_nullKind___closed__2; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); -x_69 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__3; +x_69 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__5; x_70 = lean_array_push(x_69, x_68); x_71 = l_Array_appendCore___rarg(x_52, x_20); lean_dec(x_20); @@ -24345,7 +24526,7 @@ x_100 = l_Lean_nullKind___closed__2; 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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__5; +x_102 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7; x_103 = lean_array_push(x_102, x_101); x_104 = l_Array_appendCore___rarg(x_85, x_20); lean_dec(x_20); @@ -24398,7 +24579,7 @@ x_133 = l_Lean_nullKind___closed__2; 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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7; +x_135 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9; x_136 = lean_array_push(x_135, x_134); x_137 = l_Array_appendCore___rarg(x_118, x_20); lean_dec(x_20); @@ -24449,7 +24630,7 @@ x_157 = l_Lean_nullKind___closed__2; x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); -x_159 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_159 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__4; x_160 = lean_array_push(x_159, x_158); x_161 = l_Lean_mkIdentFrom(x_1, x_27); x_162 = lean_array_push(x_155, x_161); @@ -24516,7 +24697,7 @@ x_198 = l_Lean_nullKind___closed__2; 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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__4; +x_200 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; x_201 = lean_array_push(x_200, x_199); x_202 = l_Lean_mkIdentFrom(x_1, x_27); x_203 = lean_array_push(x_196, x_202); @@ -24583,7 +24764,7 @@ x_239 = l_Lean_nullKind___closed__2; 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___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_241 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8; x_242 = lean_array_push(x_241, x_240); x_243 = l_Lean_mkIdentFrom(x_1, x_27); x_244 = lean_array_push(x_237, x_243); @@ -24775,7 +24956,7 @@ x_5 = lean_unsigned_to_nat(0u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); x_7 = l_Lean_Elab_toAttributeKind(x_6); lean_dec(x_6); -x_8 = l_Lean_mkOptionalNode___closed__1; +x_8 = l_Lean_Elab_mkAttrKindGlobal; x_9 = l_Lean_Syntax_setArg(x_1, x_5, x_8); x_10 = l_Lean_Elab_Command_getScope___rarg(x_3, x_4); x_11 = lean_ctor_get(x_10, 0); @@ -24822,7 +25003,7 @@ else { lean_object* x_22; lean_object* x_23; uint8_t x_24; x_22 = l_Lean_Syntax_getArg(x_9, x_5); -x_23 = l_Lean_nullKind___closed__2; +x_23 = l_Lean_Elab_mkAttrKindGlobal___closed__2; lean_inc(x_22); x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); if (x_24 == 0) @@ -24838,346 +25019,386 @@ return x_25; } else { -lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; x_26 = l_Lean_Syntax_getArgs(x_22); -lean_dec(x_22); x_27 = lean_array_get_size(x_26); lean_dec(x_26); -x_28 = lean_nat_dec_eq(x_27, x_5); +x_28 = lean_unsigned_to_nat(1u); +x_29 = lean_nat_dec_eq(x_27, x_28); lean_dec(x_27); -if (x_28 == 0) +if (x_29 == 0) { -lean_object* x_29; +lean_object* x_30; +lean_dec(x_22); lean_dec(x_13); lean_dec(x_9); lean_dec(x_3); lean_dec(x_2); -x_29 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_29; +x_30 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_30; } else { -lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_30 = lean_unsigned_to_nat(2u); -x_31 = l_Lean_Syntax_getArg(x_9, x_30); +lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_31 = l_Lean_Syntax_getArg(x_22, x_5); +lean_dec(x_22); +x_32 = l_Lean_nullKind___closed__2; lean_inc(x_31); -x_32 = l_Lean_Syntax_isOfKind(x_31, x_23); -if (x_32 == 0) +x_33 = l_Lean_Syntax_isOfKind(x_31, x_32); +if (x_33 == 0) { -lean_object* x_33; +lean_object* x_34; lean_dec(x_31); lean_dec(x_13); lean_dec(x_9); lean_dec(x_3); lean_dec(x_2); -x_33 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_33; +x_34 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_34; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_34 = l_Lean_Syntax_getArgs(x_31); -x_35 = lean_array_get_size(x_34); -lean_dec(x_34); -x_36 = lean_unsigned_to_nat(1u); -x_37 = lean_nat_dec_eq(x_35, x_36); +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = l_Lean_Syntax_getArgs(x_31); +lean_dec(x_31); +x_36 = lean_array_get_size(x_35); +lean_dec(x_35); +x_37 = lean_nat_dec_eq(x_36, x_5); +lean_dec(x_36); if (x_37 == 0) { -uint8_t x_38; -lean_dec(x_31); -x_38 = lean_nat_dec_eq(x_35, x_5); -lean_dec(x_35); -if (x_38 == 0) -{ -lean_object* x_39; +lean_object* x_38; lean_dec(x_13); lean_dec(x_9); lean_dec(x_3); lean_dec(x_2); -x_39 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_39; +x_38 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_38; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_62; -x_40 = lean_unsigned_to_nat(3u); -x_41 = l_Lean_Syntax_getArg(x_9, x_40); -lean_inc(x_41); -x_62 = l_Lean_Syntax_isOfKind(x_41, x_23); -if (x_62 == 0) +lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_39 = lean_unsigned_to_nat(2u); +x_40 = l_Lean_Syntax_getArg(x_9, x_39); +lean_inc(x_40); +x_41 = l_Lean_Syntax_isOfKind(x_40, x_32); +if (x_41 == 0) { -lean_object* x_63; -x_63 = lean_box(0); -x_42 = x_63; -goto block_61; -} -else -{ -lean_object* x_64; lean_object* x_65; uint8_t x_66; -x_64 = l_Lean_Syntax_getArgs(x_41); -x_65 = lean_array_get_size(x_64); -lean_dec(x_64); -x_66 = lean_nat_dec_eq(x_65, x_5); -lean_dec(x_65); -if (x_66 == 0) -{ -lean_object* x_67; -x_67 = lean_box(0); -x_42 = x_67; -goto block_61; -} -else -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -lean_dec(x_41); -x_68 = lean_unsigned_to_nat(4u); -x_69 = l_Lean_Syntax_getArg(x_9, x_68); -x_70 = lean_unsigned_to_nat(6u); -x_71 = l_Lean_Syntax_getArg(x_9, x_70); -x_72 = l_Lean_Syntax_getArgs(x_69); -lean_dec(x_69); -x_73 = lean_box(0); -x_74 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_73, x_5, x_72, x_71, x_2, x_3, x_12); -lean_dec(x_13); -lean_dec(x_9); -return x_74; -} -} -block_61: -{ -uint8_t x_43; -lean_dec(x_42); -lean_inc(x_41); -x_43 = l_Lean_Syntax_isOfKind(x_41, x_23); -if (x_43 == 0) -{ -lean_object* x_44; -lean_dec(x_41); +lean_object* x_42; +lean_dec(x_40); lean_dec(x_13); lean_dec(x_9); lean_dec(x_3); lean_dec(x_2); -x_44 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_44; +x_42 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_42; } else { -lean_object* x_45; lean_object* x_46; uint8_t x_47; -x_45 = l_Lean_Syntax_getArgs(x_41); -x_46 = lean_array_get_size(x_45); -lean_dec(x_45); -x_47 = lean_nat_dec_eq(x_46, x_40); -lean_dec(x_46); -if (x_47 == 0) +lean_object* x_43; lean_object* x_44; uint8_t x_45; +x_43 = l_Lean_Syntax_getArgs(x_40); +x_44 = lean_array_get_size(x_43); +lean_dec(x_43); +x_45 = lean_nat_dec_eq(x_44, x_28); +if (x_45 == 0) { -lean_object* x_48; -lean_dec(x_41); +uint8_t x_46; +lean_dec(x_40); +x_46 = lean_nat_dec_eq(x_44, x_5); +lean_dec(x_44); +if (x_46 == 0) +{ +lean_object* x_47; lean_dec(x_13); lean_dec(x_9); lean_dec(x_3); lean_dec(x_2); -x_48 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_48; +x_47 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_47; } else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_49 = l_Lean_Syntax_getArg(x_41, x_36); -lean_dec(x_41); -x_50 = lean_unsigned_to_nat(4u); -x_51 = l_Lean_Syntax_getArg(x_9, x_50); -x_52 = lean_unsigned_to_nat(6u); -x_53 = l_Lean_Syntax_getArg(x_9, x_52); -x_54 = l_Lean_Syntax_getArgs(x_51); -lean_dec(x_51); -x_55 = lean_box(0); -x_56 = l_Lean_numLitKind; -x_57 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_56, x_49); +lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_70; +x_48 = lean_unsigned_to_nat(3u); +x_49 = l_Lean_Syntax_getArg(x_9, x_48); +lean_inc(x_49); +x_70 = l_Lean_Syntax_isOfKind(x_49, x_32); +if (x_70 == 0) +{ +lean_object* x_71; +x_71 = lean_box(0); +x_50 = x_71; +goto block_69; +} +else +{ +lean_object* x_72; lean_object* x_73; uint8_t x_74; +x_72 = l_Lean_Syntax_getArgs(x_49); +x_73 = lean_array_get_size(x_72); +lean_dec(x_72); +x_74 = lean_nat_dec_eq(x_73, x_5); +lean_dec(x_73); +if (x_74 == 0) +{ +lean_object* x_75; +x_75 = lean_box(0); +x_50 = x_75; +goto block_69; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_dec(x_49); -if (lean_obj_tag(x_57) == 0) -{ -lean_object* x_58; -x_58 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_55, x_5, x_54, x_53, x_2, x_3, x_12); +x_76 = lean_unsigned_to_nat(4u); +x_77 = l_Lean_Syntax_getArg(x_9, x_76); +x_78 = lean_unsigned_to_nat(6u); +x_79 = l_Lean_Syntax_getArg(x_9, x_78); +x_80 = l_Lean_Syntax_getArgs(x_77); +lean_dec(x_77); +x_81 = lean_box(0); +x_82 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_81, x_5, x_80, x_79, x_2, x_3, x_12); lean_dec(x_13); lean_dec(x_9); -return x_58; -} -else -{ -lean_object* x_59; lean_object* x_60; -x_59 = lean_ctor_get(x_57, 0); -lean_inc(x_59); -lean_dec(x_57); -x_60 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_55, x_59, x_54, x_53, x_2, x_3, x_12); -lean_dec(x_13); -lean_dec(x_9); -return x_60; -} -} -} -} -} -} -else -{ -lean_object* x_75; lean_object* x_76; uint8_t x_77; -lean_dec(x_35); -x_75 = l_Lean_Syntax_getArg(x_31, x_5); -lean_dec(x_31); -x_76 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; -lean_inc(x_75); -x_77 = l_Lean_Syntax_isOfKind(x_75, x_76); -if (x_77 == 0) -{ -lean_object* x_78; -lean_dec(x_75); -lean_dec(x_13); -lean_dec(x_9); -lean_dec(x_3); -lean_dec(x_2); -x_78 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_78; -} -else -{ -lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_79 = l_Lean_Syntax_getArgs(x_75); -x_80 = lean_array_get_size(x_79); -lean_dec(x_79); -x_81 = lean_nat_dec_eq(x_80, x_30); -lean_dec(x_80); -if (x_81 == 0) -{ -lean_object* x_82; -lean_dec(x_75); -lean_dec(x_13); -lean_dec(x_9); -lean_dec(x_3); -lean_dec(x_2); -x_82 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); return x_82; } -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_106; -x_83 = l_Lean_Syntax_getArg(x_75, x_36); -lean_dec(x_75); -x_84 = lean_unsigned_to_nat(3u); -x_85 = l_Lean_Syntax_getArg(x_9, x_84); -lean_inc(x_85); -x_106 = l_Lean_Syntax_isOfKind(x_85, x_23); -if (x_106 == 0) -{ -lean_object* x_107; -x_107 = lean_box(0); -x_86 = x_107; -goto block_105; } -else +block_69: { -lean_object* x_108; lean_object* x_109; uint8_t x_110; -x_108 = l_Lean_Syntax_getArgs(x_85); -x_109 = lean_array_get_size(x_108); -lean_dec(x_108); -x_110 = lean_nat_dec_eq(x_109, x_5); -lean_dec(x_109); -if (x_110 == 0) +uint8_t x_51; +lean_dec(x_50); +lean_inc(x_49); +x_51 = l_Lean_Syntax_isOfKind(x_49, x_32); +if (x_51 == 0) { -lean_object* x_111; -x_111 = lean_box(0); -x_86 = x_111; -goto block_105; -} -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_dec(x_85); -x_112 = lean_unsigned_to_nat(4u); -x_113 = l_Lean_Syntax_getArg(x_9, x_112); -x_114 = lean_unsigned_to_nat(6u); -x_115 = l_Lean_Syntax_getArg(x_9, x_114); -x_116 = l_Lean_Syntax_getArgs(x_113); -lean_dec(x_113); -x_117 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_117, 0, x_83); -x_118 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_117, x_5, x_116, x_115, x_2, x_3, x_12); +lean_object* x_52; +lean_dec(x_49); lean_dec(x_13); lean_dec(x_9); -return x_118; +lean_dec(x_3); +lean_dec(x_2); +x_52 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_53 = l_Lean_Syntax_getArgs(x_49); +x_54 = lean_array_get_size(x_53); +lean_dec(x_53); +x_55 = lean_nat_dec_eq(x_54, x_48); +lean_dec(x_54); +if (x_55 == 0) +{ +lean_object* x_56; +lean_dec(x_49); +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_3); +lean_dec(x_2); +x_56 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_57 = l_Lean_Syntax_getArg(x_49, x_28); +lean_dec(x_49); +x_58 = lean_unsigned_to_nat(4u); +x_59 = l_Lean_Syntax_getArg(x_9, x_58); +x_60 = lean_unsigned_to_nat(6u); +x_61 = l_Lean_Syntax_getArg(x_9, x_60); +x_62 = l_Lean_Syntax_getArgs(x_59); +lean_dec(x_59); +x_63 = lean_box(0); +x_64 = l_Lean_numLitKind; +x_65 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_64, x_57); +lean_dec(x_57); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; +x_66 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_63, x_5, x_62, x_61, x_2, x_3, x_12); +lean_dec(x_13); +lean_dec(x_9); +return x_66; +} +else +{ +lean_object* x_67; lean_object* x_68; +x_67 = lean_ctor_get(x_65, 0); +lean_inc(x_67); +lean_dec(x_65); +x_68 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_63, x_67, x_62, x_61, x_2, x_3, x_12); +lean_dec(x_13); +lean_dec(x_9); +return x_68; } } -block_105: +} +} +} +} +else { -uint8_t x_87; -lean_dec(x_86); -lean_inc(x_85); -x_87 = l_Lean_Syntax_isOfKind(x_85, x_23); -if (x_87 == 0) +lean_object* x_83; lean_object* x_84; uint8_t x_85; +lean_dec(x_44); +x_83 = l_Lean_Syntax_getArg(x_40, x_5); +lean_dec(x_40); +x_84 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__8; +lean_inc(x_83); +x_85 = l_Lean_Syntax_isOfKind(x_83, x_84); +if (x_85 == 0) { -lean_object* x_88; -lean_dec(x_85); +lean_object* x_86; lean_dec(x_83); lean_dec(x_13); lean_dec(x_9); lean_dec(x_3); lean_dec(x_2); -x_88 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_88; +x_86 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_86; } else { -lean_object* x_89; lean_object* x_90; uint8_t x_91; -x_89 = l_Lean_Syntax_getArgs(x_85); -x_90 = lean_array_get_size(x_89); -lean_dec(x_89); -x_91 = lean_nat_dec_eq(x_90, x_84); -lean_dec(x_90); -if (x_91 == 0) +lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_87 = l_Lean_Syntax_getArgs(x_83); +x_88 = lean_array_get_size(x_87); +lean_dec(x_87); +x_89 = lean_nat_dec_eq(x_88, x_39); +lean_dec(x_88); +if (x_89 == 0) { -lean_object* x_92; -lean_dec(x_85); +lean_object* x_90; lean_dec(x_83); lean_dec(x_13); lean_dec(x_9); lean_dec(x_3); lean_dec(x_2); -x_92 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); -return x_92; +x_90 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_90; } else { -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_93 = l_Lean_Syntax_getArg(x_85, x_36); -lean_dec(x_85); -x_94 = lean_unsigned_to_nat(4u); -x_95 = l_Lean_Syntax_getArg(x_9, x_94); -x_96 = lean_unsigned_to_nat(6u); -x_97 = l_Lean_Syntax_getArg(x_9, x_96); -x_98 = l_Lean_Syntax_getArgs(x_95); -lean_dec(x_95); -x_99 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_99, 0, x_83); -x_100 = l_Lean_numLitKind; -x_101 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_100, x_93); +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_114; +x_91 = l_Lean_Syntax_getArg(x_83, x_28); +lean_dec(x_83); +x_92 = lean_unsigned_to_nat(3u); +x_93 = l_Lean_Syntax_getArg(x_9, x_92); +lean_inc(x_93); +x_114 = l_Lean_Syntax_isOfKind(x_93, x_32); +if (x_114 == 0) +{ +lean_object* x_115; +x_115 = lean_box(0); +x_94 = x_115; +goto block_113; +} +else +{ +lean_object* x_116; lean_object* x_117; uint8_t x_118; +x_116 = l_Lean_Syntax_getArgs(x_93); +x_117 = lean_array_get_size(x_116); +lean_dec(x_116); +x_118 = lean_nat_dec_eq(x_117, x_5); +lean_dec(x_117); +if (x_118 == 0) +{ +lean_object* x_119; +x_119 = lean_box(0); +x_94 = x_119; +goto block_113; +} +else +{ +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_dec(x_93); -if (lean_obj_tag(x_101) == 0) -{ -lean_object* x_102; -x_102 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_99, x_5, x_98, x_97, x_2, x_3, x_12); +x_120 = lean_unsigned_to_nat(4u); +x_121 = l_Lean_Syntax_getArg(x_9, x_120); +x_122 = lean_unsigned_to_nat(6u); +x_123 = l_Lean_Syntax_getArg(x_9, x_122); +x_124 = l_Lean_Syntax_getArgs(x_121); +lean_dec(x_121); +x_125 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_125, 0, x_91); +x_126 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_125, x_5, x_124, x_123, x_2, x_3, x_12); lean_dec(x_13); lean_dec(x_9); -return x_102; +return x_126; +} +} +block_113: +{ +uint8_t x_95; +lean_dec(x_94); +lean_inc(x_93); +x_95 = l_Lean_Syntax_isOfKind(x_93, x_32); +if (x_95 == 0) +{ +lean_object* x_96; +lean_dec(x_93); +lean_dec(x_91); +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_3); +lean_dec(x_2); +x_96 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_96; } else { -lean_object* x_103; lean_object* x_104; -x_103 = lean_ctor_get(x_101, 0); -lean_inc(x_103); -lean_dec(x_101); -x_104 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_99, x_103, x_98, x_97, x_2, x_3, x_12); +lean_object* x_97; lean_object* x_98; uint8_t x_99; +x_97 = l_Lean_Syntax_getArgs(x_93); +x_98 = lean_array_get_size(x_97); +lean_dec(x_97); +x_99 = lean_nat_dec_eq(x_98, x_92); +lean_dec(x_98); +if (x_99 == 0) +{ +lean_object* x_100; +lean_dec(x_93); +lean_dec(x_91); lean_dec(x_13); lean_dec(x_9); -return x_104; +lean_dec(x_3); +lean_dec(x_2); +x_100 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_12); +return x_100; +} +else +{ +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; +x_101 = l_Lean_Syntax_getArg(x_93, x_28); +lean_dec(x_93); +x_102 = lean_unsigned_to_nat(4u); +x_103 = l_Lean_Syntax_getArg(x_9, x_102); +x_104 = lean_unsigned_to_nat(6u); +x_105 = l_Lean_Syntax_getArg(x_9, x_104); +x_106 = l_Lean_Syntax_getArgs(x_103); +lean_dec(x_103); +x_107 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_107, 0, x_91); +x_108 = l_Lean_numLitKind; +x_109 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_108, x_101); +lean_dec(x_101); +if (lean_obj_tag(x_109) == 0) +{ +lean_object* x_110; +x_110 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_107, x_5, x_106, x_105, x_2, x_3, x_12); +lean_dec(x_13); +lean_dec(x_9); +return x_110; +} +else +{ +lean_object* x_111; lean_object* x_112; +x_111 = lean_ctor_get(x_109, 0); +lean_inc(x_111); +lean_dec(x_109); +x_112 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_9, x_13, x_7, x_107, x_111, x_106, x_105, x_2, x_3, x_12); +lean_dec(x_13); +lean_dec(x_9); +return x_112; +} +} } } } @@ -25682,8 +25903,8 @@ static lean_object* _init_l_Lean_Elab_Command_expandMacro___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1; +x_1 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -27036,7 +27257,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_14160____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -27046,11 +27267,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_14160_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634_(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_14160____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -27743,7 +27964,7 @@ return x_2; lean_object* l_Lean_Elab_Command_expandElab(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; 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_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; +lean_object* x_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_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; x_6 = lean_unsigned_to_nat(1u); x_7 = l_Lean_Syntax_getArg(x_2, x_6); x_8 = l_Lean_Syntax_getArgs(x_7); @@ -27765,127 +27986,127 @@ x_20 = l_Lean_Syntax_getArg(x_2, x_19); x_21 = lean_unsigned_to_nat(9u); x_22 = l_Lean_Syntax_getArg(x_2, x_21); x_23 = l_Lean_Syntax_getId(x_18); -x_1542 = lean_st_ref_get(x_4, x_5); -x_1543 = lean_ctor_get(x_1542, 0); -lean_inc(x_1543); -x_1544 = lean_ctor_get(x_1542, 1); -lean_inc(x_1544); -lean_dec(x_1542); -x_1545 = lean_ctor_get(x_1543, 0); -lean_inc(x_1545); -lean_dec(x_1543); -x_1546 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1544); -x_1547 = lean_ctor_get(x_1546, 0); -lean_inc(x_1547); -x_1548 = lean_ctor_get(x_1546, 1); -lean_inc(x_1548); -lean_dec(x_1546); -x_1549 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1548); -x_1550 = lean_ctor_get(x_1549, 0); -lean_inc(x_1550); -x_1551 = lean_ctor_get(x_1549, 1); +x_1550 = lean_st_ref_get(x_4, x_5); +x_1551 = lean_ctor_get(x_1550, 0); lean_inc(x_1551); -lean_dec(x_1549); -x_1552 = lean_ctor_get(x_3, 2); +x_1552 = lean_ctor_get(x_1550, 1); lean_inc(x_1552); -x_1553 = lean_st_ref_get(x_4, x_1551); -x_1554 = lean_ctor_get(x_1553, 0); -lean_inc(x_1554); -x_1555 = lean_ctor_get(x_1553, 1); +lean_dec(x_1550); +x_1553 = lean_ctor_get(x_1551, 0); +lean_inc(x_1553); +lean_dec(x_1551); +x_1554 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1552); +x_1555 = lean_ctor_get(x_1554, 0); lean_inc(x_1555); -lean_dec(x_1553); -x_1556 = lean_ctor_get(x_1554, 4); +x_1556 = lean_ctor_get(x_1554, 1); lean_inc(x_1556); lean_dec(x_1554); -x_1557 = lean_st_ref_get(x_4, x_1555); +x_1557 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1556); x_1558 = lean_ctor_get(x_1557, 0); lean_inc(x_1558); x_1559 = lean_ctor_get(x_1557, 1); lean_inc(x_1559); lean_dec(x_1557); -x_1560 = lean_ctor_get(x_1558, 3); +x_1560 = lean_ctor_get(x_3, 2); lean_inc(x_1560); -lean_dec(x_1558); -lean_inc(x_1545); -x_1561 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1561, 0, x_1545); -x_1562 = x_1561; -x_1563 = lean_environment_main_module(x_1545); -x_1564 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1564, 0, x_1562); -lean_ctor_set(x_1564, 1, x_1563); -lean_ctor_set(x_1564, 2, x_1550); -lean_ctor_set(x_1564, 3, x_1552); -lean_ctor_set(x_1564, 4, x_1556); -lean_ctor_set(x_1564, 5, x_1547); -lean_inc(x_13); -x_1565 = l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem(x_13, x_1564, x_1560); -lean_dec(x_1564); -if (lean_obj_tag(x_1565) == 0) -{ -lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; uint8_t x_1571; +x_1561 = lean_st_ref_get(x_4, x_1559); +x_1562 = lean_ctor_get(x_1561, 0); +lean_inc(x_1562); +x_1563 = lean_ctor_get(x_1561, 1); +lean_inc(x_1563); +lean_dec(x_1561); +x_1564 = lean_ctor_get(x_1562, 4); +lean_inc(x_1564); +lean_dec(x_1562); +x_1565 = lean_st_ref_get(x_4, x_1563); x_1566 = lean_ctor_get(x_1565, 0); lean_inc(x_1566); x_1567 = lean_ctor_get(x_1565, 1); lean_inc(x_1567); lean_dec(x_1565); -x_1568 = lean_st_ref_take(x_4, x_1559); -x_1569 = lean_ctor_get(x_1568, 0); -lean_inc(x_1569); -x_1570 = lean_ctor_get(x_1568, 1); -lean_inc(x_1570); -lean_dec(x_1568); -x_1571 = !lean_is_exclusive(x_1569); -if (x_1571 == 0) -{ -lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; -x_1572 = lean_ctor_get(x_1569, 3); +x_1568 = lean_ctor_get(x_1566, 3); +lean_inc(x_1568); +lean_dec(x_1566); +lean_inc(x_1553); +x_1569 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1569, 0, x_1553); +x_1570 = x_1569; +x_1571 = lean_environment_main_module(x_1553); +x_1572 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1572, 0, x_1570); +lean_ctor_set(x_1572, 1, x_1571); +lean_ctor_set(x_1572, 2, x_1558); +lean_ctor_set(x_1572, 3, x_1560); +lean_ctor_set(x_1572, 4, x_1564); +lean_ctor_set(x_1572, 5, x_1555); +lean_inc(x_13); +x_1573 = l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem(x_13, x_1572, x_1568); lean_dec(x_1572); -lean_ctor_set(x_1569, 3, x_1567); -x_1573 = lean_st_ref_set(x_4, x_1569, x_1570); -x_1574 = lean_ctor_get(x_1573, 1); +if (lean_obj_tag(x_1573) == 0) +{ +lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; uint8_t x_1579; +x_1574 = lean_ctor_get(x_1573, 0); lean_inc(x_1574); -lean_dec(x_1573); -x_24 = x_1566; -x_25 = x_1574; -goto block_1541; -} -else -{ -lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; -x_1575 = lean_ctor_get(x_1569, 0); -x_1576 = lean_ctor_get(x_1569, 1); -x_1577 = lean_ctor_get(x_1569, 2); -x_1578 = lean_ctor_get(x_1569, 4); -x_1579 = lean_ctor_get(x_1569, 5); -x_1580 = lean_ctor_get(x_1569, 6); -lean_inc(x_1580); -lean_inc(x_1579); -lean_inc(x_1578); -lean_inc(x_1577); -lean_inc(x_1576); +x_1575 = lean_ctor_get(x_1573, 1); lean_inc(x_1575); -lean_dec(x_1569); -x_1581 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1581, 0, x_1575); -lean_ctor_set(x_1581, 1, x_1576); -lean_ctor_set(x_1581, 2, x_1577); -lean_ctor_set(x_1581, 3, x_1567); -lean_ctor_set(x_1581, 4, x_1578); -lean_ctor_set(x_1581, 5, x_1579); -lean_ctor_set(x_1581, 6, x_1580); -x_1582 = lean_st_ref_set(x_4, x_1581, x_1570); -x_1583 = lean_ctor_get(x_1582, 1); +lean_dec(x_1573); +x_1576 = lean_st_ref_take(x_4, x_1567); +x_1577 = lean_ctor_get(x_1576, 0); +lean_inc(x_1577); +x_1578 = lean_ctor_get(x_1576, 1); +lean_inc(x_1578); +lean_dec(x_1576); +x_1579 = !lean_is_exclusive(x_1577); +if (x_1579 == 0) +{ +lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; +x_1580 = lean_ctor_get(x_1577, 3); +lean_dec(x_1580); +lean_ctor_set(x_1577, 3, x_1575); +x_1581 = lean_st_ref_set(x_4, x_1577, x_1578); +x_1582 = lean_ctor_get(x_1581, 1); +lean_inc(x_1582); +lean_dec(x_1581); +x_24 = x_1574; +x_25 = x_1582; +goto block_1549; +} +else +{ +lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; +x_1583 = lean_ctor_get(x_1577, 0); +x_1584 = lean_ctor_get(x_1577, 1); +x_1585 = lean_ctor_get(x_1577, 2); +x_1586 = lean_ctor_get(x_1577, 4); +x_1587 = lean_ctor_get(x_1577, 5); +x_1588 = lean_ctor_get(x_1577, 6); +lean_inc(x_1588); +lean_inc(x_1587); +lean_inc(x_1586); +lean_inc(x_1585); +lean_inc(x_1584); lean_inc(x_1583); -lean_dec(x_1582); -x_24 = x_1566; -x_25 = x_1583; -goto block_1541; +lean_dec(x_1577); +x_1589 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1589, 0, x_1583); +lean_ctor_set(x_1589, 1, x_1584); +lean_ctor_set(x_1589, 2, x_1585); +lean_ctor_set(x_1589, 3, x_1575); +lean_ctor_set(x_1589, 4, x_1586); +lean_ctor_set(x_1589, 5, x_1587); +lean_ctor_set(x_1589, 6, x_1588); +x_1590 = lean_st_ref_set(x_4, x_1589, x_1578); +x_1591 = lean_ctor_get(x_1590, 1); +lean_inc(x_1591); +lean_dec(x_1590); +x_24 = x_1574; +x_25 = x_1591; +goto block_1549; } } else { -lean_object* x_1584; +lean_object* x_1592; lean_dec(x_23); lean_dec(x_22); lean_dec(x_20); @@ -27894,201 +28115,201 @@ lean_dec(x_16); lean_dec(x_13); lean_dec(x_11); lean_dec(x_8); -x_1584 = lean_ctor_get(x_1565, 0); -lean_inc(x_1584); -lean_dec(x_1565); -if (lean_obj_tag(x_1584) == 0) -{ -lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; uint8_t x_1590; -x_1585 = lean_ctor_get(x_1584, 0); -lean_inc(x_1585); -x_1586 = lean_ctor_get(x_1584, 1); -lean_inc(x_1586); -lean_dec(x_1584); -x_1587 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1587, 0, x_1586); -x_1588 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1588, 0, x_1587); -x_1589 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1585, x_1588, x_3, x_4, x_1559); -lean_dec(x_1585); -x_1590 = !lean_is_exclusive(x_1589); -if (x_1590 == 0) -{ -return x_1589; -} -else -{ -lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; -x_1591 = lean_ctor_get(x_1589, 0); -x_1592 = lean_ctor_get(x_1589, 1); +x_1592 = lean_ctor_get(x_1573, 0); lean_inc(x_1592); -lean_inc(x_1591); -lean_dec(x_1589); -x_1593 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1593, 0, x_1591); -lean_ctor_set(x_1593, 1, x_1592); -return x_1593; +lean_dec(x_1573); +if (lean_obj_tag(x_1592) == 0) +{ +lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; uint8_t x_1598; +x_1593 = lean_ctor_get(x_1592, 0); +lean_inc(x_1593); +x_1594 = lean_ctor_get(x_1592, 1); +lean_inc(x_1594); +lean_dec(x_1592); +x_1595 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1595, 0, x_1594); +x_1596 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1596, 0, x_1595); +x_1597 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1593, x_1596, x_3, x_4, x_1567); +lean_dec(x_1593); +x_1598 = !lean_is_exclusive(x_1597); +if (x_1598 == 0) +{ +return x_1597; +} +else +{ +lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; +x_1599 = lean_ctor_get(x_1597, 0); +x_1600 = lean_ctor_get(x_1597, 1); +lean_inc(x_1600); +lean_inc(x_1599); +lean_dec(x_1597); +x_1601 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1601, 0, x_1599); +lean_ctor_set(x_1601, 1, x_1600); +return x_1601; } } else { -lean_object* x_1594; uint8_t x_1595; +lean_object* x_1602; uint8_t x_1603; lean_dec(x_3); -x_1594 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1559); -x_1595 = !lean_is_exclusive(x_1594); -if (x_1595 == 0) +x_1602 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1567); +x_1603 = !lean_is_exclusive(x_1602); +if (x_1603 == 0) { -return x_1594; +return x_1602; } else { -lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; -x_1596 = lean_ctor_get(x_1594, 0); -x_1597 = lean_ctor_get(x_1594, 1); -lean_inc(x_1597); -lean_inc(x_1596); -lean_dec(x_1594); -x_1598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1598, 0, x_1596); -lean_ctor_set(x_1598, 1, x_1597); -return x_1598; +lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; +x_1604 = lean_ctor_get(x_1602, 0); +x_1605 = lean_ctor_get(x_1602, 1); +lean_inc(x_1605); +lean_inc(x_1604); +lean_dec(x_1602); +x_1606 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1606, 0, x_1604); +lean_ctor_set(x_1606, 1, x_1605); +return x_1606; } } } -block_1541: +block_1549: { -lean_object* x_26; lean_object* x_27; lean_object* x_1477; size_t x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; -x_1477 = lean_array_get_size(x_16); -x_1478 = lean_usize_of_nat(x_1477); -lean_dec(x_1477); +lean_object* x_26; lean_object* x_27; lean_object* x_1485; size_t x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; +x_1485 = lean_array_get_size(x_16); +x_1486 = lean_usize_of_nat(x_1485); +lean_dec(x_1485); lean_inc(x_16); -x_1479 = x_16; -x_1480 = lean_box_usize(x_1478); -x_1481 = l_Lean_Elab_Command_expandElab___boxed__const__1; -x_1482 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed), 5, 3); -lean_closure_set(x_1482, 0, x_1480); -lean_closure_set(x_1482, 1, x_1481); -lean_closure_set(x_1482, 2, x_1479); -x_1483 = lean_st_ref_get(x_4, x_25); -x_1484 = lean_ctor_get(x_1483, 0); -lean_inc(x_1484); -x_1485 = lean_ctor_get(x_1483, 1); -lean_inc(x_1485); -lean_dec(x_1483); -x_1486 = lean_ctor_get(x_1484, 0); -lean_inc(x_1486); -lean_dec(x_1484); -x_1487 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1485); -x_1488 = lean_ctor_get(x_1487, 0); -lean_inc(x_1488); -x_1489 = lean_ctor_get(x_1487, 1); -lean_inc(x_1489); -lean_dec(x_1487); -x_1490 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1489); -x_1491 = lean_ctor_get(x_1490, 0); -lean_inc(x_1491); -x_1492 = lean_ctor_get(x_1490, 1); +x_1487 = x_16; +x_1488 = lean_box_usize(x_1486); +x_1489 = l_Lean_Elab_Command_expandElab___boxed__const__1; +x_1490 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed), 5, 3); +lean_closure_set(x_1490, 0, x_1488); +lean_closure_set(x_1490, 1, x_1489); +lean_closure_set(x_1490, 2, x_1487); +x_1491 = lean_st_ref_get(x_4, x_25); +x_1492 = lean_ctor_get(x_1491, 0); lean_inc(x_1492); -lean_dec(x_1490); -x_1493 = lean_ctor_get(x_3, 2); +x_1493 = lean_ctor_get(x_1491, 1); lean_inc(x_1493); -x_1494 = lean_st_ref_get(x_4, x_1492); -x_1495 = lean_ctor_get(x_1494, 0); -lean_inc(x_1495); -x_1496 = lean_ctor_get(x_1494, 1); +lean_dec(x_1491); +x_1494 = lean_ctor_get(x_1492, 0); +lean_inc(x_1494); +lean_dec(x_1492); +x_1495 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1493); +x_1496 = lean_ctor_get(x_1495, 0); lean_inc(x_1496); -lean_dec(x_1494); -x_1497 = lean_ctor_get(x_1495, 4); +x_1497 = lean_ctor_get(x_1495, 1); lean_inc(x_1497); lean_dec(x_1495); -x_1498 = lean_st_ref_get(x_4, x_1496); +x_1498 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1497); x_1499 = lean_ctor_get(x_1498, 0); lean_inc(x_1499); x_1500 = lean_ctor_get(x_1498, 1); lean_inc(x_1500); lean_dec(x_1498); -x_1501 = lean_ctor_get(x_1499, 3); +x_1501 = lean_ctor_get(x_3, 2); lean_inc(x_1501); -lean_dec(x_1499); -lean_inc(x_1486); -x_1502 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1502, 0, x_1486); -x_1503 = x_1502; -x_1504 = lean_environment_main_module(x_1486); -x_1505 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1505, 0, x_1503); -lean_ctor_set(x_1505, 1, x_1504); -lean_ctor_set(x_1505, 2, x_1491); -lean_ctor_set(x_1505, 3, x_1493); -lean_ctor_set(x_1505, 4, x_1497); -lean_ctor_set(x_1505, 5, x_1488); -x_1506 = x_1482; -x_1507 = lean_apply_2(x_1506, x_1505, x_1501); -if (lean_obj_tag(x_1507) == 0) -{ -lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; uint8_t x_1513; -x_1508 = lean_ctor_get(x_1507, 0); +x_1502 = lean_st_ref_get(x_4, x_1500); +x_1503 = lean_ctor_get(x_1502, 0); +lean_inc(x_1503); +x_1504 = lean_ctor_get(x_1502, 1); +lean_inc(x_1504); +lean_dec(x_1502); +x_1505 = lean_ctor_get(x_1503, 4); +lean_inc(x_1505); +lean_dec(x_1503); +x_1506 = lean_st_ref_get(x_4, x_1504); +x_1507 = lean_ctor_get(x_1506, 0); +lean_inc(x_1507); +x_1508 = lean_ctor_get(x_1506, 1); lean_inc(x_1508); -x_1509 = lean_ctor_get(x_1507, 1); +lean_dec(x_1506); +x_1509 = lean_ctor_get(x_1507, 3); lean_inc(x_1509); lean_dec(x_1507); -x_1510 = lean_st_ref_take(x_4, x_1500); -x_1511 = lean_ctor_get(x_1510, 0); -lean_inc(x_1511); -x_1512 = lean_ctor_get(x_1510, 1); -lean_inc(x_1512); -lean_dec(x_1510); -x_1513 = !lean_is_exclusive(x_1511); -if (x_1513 == 0) +lean_inc(x_1494); +x_1510 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1510, 0, x_1494); +x_1511 = x_1510; +x_1512 = lean_environment_main_module(x_1494); +x_1513 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1513, 0, x_1511); +lean_ctor_set(x_1513, 1, x_1512); +lean_ctor_set(x_1513, 2, x_1499); +lean_ctor_set(x_1513, 3, x_1501); +lean_ctor_set(x_1513, 4, x_1505); +lean_ctor_set(x_1513, 5, x_1496); +x_1514 = x_1490; +x_1515 = lean_apply_2(x_1514, x_1513, x_1509); +if (lean_obj_tag(x_1515) == 0) { -lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; -x_1514 = lean_ctor_get(x_1511, 3); -lean_dec(x_1514); -lean_ctor_set(x_1511, 3, x_1509); -x_1515 = lean_st_ref_set(x_4, x_1511, x_1512); -x_1516 = lean_ctor_get(x_1515, 1); +lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; uint8_t x_1521; +x_1516 = lean_ctor_get(x_1515, 0); lean_inc(x_1516); -lean_dec(x_1515); -x_26 = x_1508; -x_27 = x_1516; -goto block_1476; -} -else -{ -lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; -x_1517 = lean_ctor_get(x_1511, 0); -x_1518 = lean_ctor_get(x_1511, 1); -x_1519 = lean_ctor_get(x_1511, 2); -x_1520 = lean_ctor_get(x_1511, 4); -x_1521 = lean_ctor_get(x_1511, 5); -x_1522 = lean_ctor_get(x_1511, 6); -lean_inc(x_1522); -lean_inc(x_1521); -lean_inc(x_1520); -lean_inc(x_1519); -lean_inc(x_1518); +x_1517 = lean_ctor_get(x_1515, 1); lean_inc(x_1517); -lean_dec(x_1511); -x_1523 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1523, 0, x_1517); -lean_ctor_set(x_1523, 1, x_1518); -lean_ctor_set(x_1523, 2, x_1519); -lean_ctor_set(x_1523, 3, x_1509); -lean_ctor_set(x_1523, 4, x_1520); -lean_ctor_set(x_1523, 5, x_1521); -lean_ctor_set(x_1523, 6, x_1522); -x_1524 = lean_st_ref_set(x_4, x_1523, x_1512); -x_1525 = lean_ctor_get(x_1524, 1); +lean_dec(x_1515); +x_1518 = lean_st_ref_take(x_4, x_1508); +x_1519 = lean_ctor_get(x_1518, 0); +lean_inc(x_1519); +x_1520 = lean_ctor_get(x_1518, 1); +lean_inc(x_1520); +lean_dec(x_1518); +x_1521 = !lean_is_exclusive(x_1519); +if (x_1521 == 0) +{ +lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; +x_1522 = lean_ctor_get(x_1519, 3); +lean_dec(x_1522); +lean_ctor_set(x_1519, 3, x_1517); +x_1523 = lean_st_ref_set(x_4, x_1519, x_1520); +x_1524 = lean_ctor_get(x_1523, 1); +lean_inc(x_1524); +lean_dec(x_1523); +x_26 = x_1516; +x_27 = x_1524; +goto block_1484; +} +else +{ +lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; +x_1525 = lean_ctor_get(x_1519, 0); +x_1526 = lean_ctor_get(x_1519, 1); +x_1527 = lean_ctor_get(x_1519, 2); +x_1528 = lean_ctor_get(x_1519, 4); +x_1529 = lean_ctor_get(x_1519, 5); +x_1530 = lean_ctor_get(x_1519, 6); +lean_inc(x_1530); +lean_inc(x_1529); +lean_inc(x_1528); +lean_inc(x_1527); +lean_inc(x_1526); lean_inc(x_1525); -lean_dec(x_1524); -x_26 = x_1508; -x_27 = x_1525; -goto block_1476; +lean_dec(x_1519); +x_1531 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1531, 0, x_1525); +lean_ctor_set(x_1531, 1, x_1526); +lean_ctor_set(x_1531, 2, x_1527); +lean_ctor_set(x_1531, 3, x_1517); +lean_ctor_set(x_1531, 4, x_1528); +lean_ctor_set(x_1531, 5, x_1529); +lean_ctor_set(x_1531, 6, x_1530); +x_1532 = lean_st_ref_set(x_4, x_1531, x_1520); +x_1533 = lean_ctor_get(x_1532, 1); +lean_inc(x_1533); +lean_dec(x_1532); +x_26 = x_1516; +x_27 = x_1533; +goto block_1484; } } else { -lean_object* x_1526; +lean_object* x_1534; lean_dec(x_24); lean_dec(x_23); lean_dec(x_22); @@ -28098,70 +28319,70 @@ lean_dec(x_16); lean_dec(x_13); lean_dec(x_11); lean_dec(x_8); -x_1526 = lean_ctor_get(x_1507, 0); -lean_inc(x_1526); -lean_dec(x_1507); -if (lean_obj_tag(x_1526) == 0) -{ -lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; uint8_t x_1532; -x_1527 = lean_ctor_get(x_1526, 0); -lean_inc(x_1527); -x_1528 = lean_ctor_get(x_1526, 1); -lean_inc(x_1528); -lean_dec(x_1526); -x_1529 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1529, 0, x_1528); -x_1530 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1530, 0, x_1529); -x_1531 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1527, x_1530, x_3, x_4, x_1500); -lean_dec(x_1527); -x_1532 = !lean_is_exclusive(x_1531); -if (x_1532 == 0) -{ -return x_1531; -} -else -{ -lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; -x_1533 = lean_ctor_get(x_1531, 0); -x_1534 = lean_ctor_get(x_1531, 1); +x_1534 = lean_ctor_get(x_1515, 0); lean_inc(x_1534); -lean_inc(x_1533); -lean_dec(x_1531); -x_1535 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1535, 0, x_1533); -lean_ctor_set(x_1535, 1, x_1534); -return x_1535; +lean_dec(x_1515); +if (lean_obj_tag(x_1534) == 0) +{ +lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; uint8_t x_1540; +x_1535 = lean_ctor_get(x_1534, 0); +lean_inc(x_1535); +x_1536 = lean_ctor_get(x_1534, 1); +lean_inc(x_1536); +lean_dec(x_1534); +x_1537 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1537, 0, x_1536); +x_1538 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1538, 0, x_1537); +x_1539 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1535, x_1538, x_3, x_4, x_1508); +lean_dec(x_1535); +x_1540 = !lean_is_exclusive(x_1539); +if (x_1540 == 0) +{ +return x_1539; +} +else +{ +lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; +x_1541 = lean_ctor_get(x_1539, 0); +x_1542 = lean_ctor_get(x_1539, 1); +lean_inc(x_1542); +lean_inc(x_1541); +lean_dec(x_1539); +x_1543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1543, 0, x_1541); +lean_ctor_set(x_1543, 1, x_1542); +return x_1543; } } else { -lean_object* x_1536; uint8_t x_1537; +lean_object* x_1544; uint8_t x_1545; lean_dec(x_3); -x_1536 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1500); -x_1537 = !lean_is_exclusive(x_1536); -if (x_1537 == 0) +x_1544 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1508); +x_1545 = !lean_is_exclusive(x_1544); +if (x_1545 == 0) { -return x_1536; +return x_1544; } else { -lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; -x_1538 = lean_ctor_get(x_1536, 0); -x_1539 = lean_ctor_get(x_1536, 1); -lean_inc(x_1539); -lean_inc(x_1538); -lean_dec(x_1536); -x_1540 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1540, 0, x_1538); -lean_ctor_set(x_1540, 1, x_1539); -return x_1540; +lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; +x_1546 = lean_ctor_get(x_1544, 0); +x_1547 = lean_ctor_get(x_1544, 1); +lean_inc(x_1547); +lean_inc(x_1546); +lean_dec(x_1544); +x_1548 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1548, 0, x_1546); +lean_ctor_set(x_1548, 1, x_1547); +return x_1548; } } } -block_1476: +block_1484: { -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_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; +lean_object* x_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_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; x_28 = l_Lean_mkOptionalNode___closed__2; x_29 = lean_array_push(x_28, x_24); x_30 = l_Array_append___rarg(x_29, x_26); @@ -28179,127 +28400,127 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_1429 = lean_st_ref_get(x_4, x_35); -x_1430 = lean_ctor_get(x_1429, 0); -lean_inc(x_1430); -x_1431 = lean_ctor_get(x_1429, 1); -lean_inc(x_1431); -lean_dec(x_1429); -x_1432 = lean_ctor_get(x_1430, 0); -lean_inc(x_1432); -lean_dec(x_1430); -x_1433 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1431); -x_1434 = lean_ctor_get(x_1433, 0); -lean_inc(x_1434); -x_1435 = lean_ctor_get(x_1433, 1); -lean_inc(x_1435); -lean_dec(x_1433); -x_1436 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1435); -x_1437 = lean_ctor_get(x_1436, 0); -lean_inc(x_1437); -x_1438 = lean_ctor_get(x_1436, 1); +x_1437 = lean_st_ref_get(x_4, x_35); +x_1438 = lean_ctor_get(x_1437, 0); lean_inc(x_1438); -lean_dec(x_1436); -x_1439 = lean_ctor_get(x_3, 2); +x_1439 = lean_ctor_get(x_1437, 1); lean_inc(x_1439); -x_1440 = lean_st_ref_get(x_4, x_1438); -x_1441 = lean_ctor_get(x_1440, 0); -lean_inc(x_1441); -x_1442 = lean_ctor_get(x_1440, 1); +lean_dec(x_1437); +x_1440 = lean_ctor_get(x_1438, 0); +lean_inc(x_1440); +lean_dec(x_1438); +x_1441 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1439); +x_1442 = lean_ctor_get(x_1441, 0); lean_inc(x_1442); -lean_dec(x_1440); -x_1443 = lean_ctor_get(x_1441, 4); +x_1443 = lean_ctor_get(x_1441, 1); lean_inc(x_1443); lean_dec(x_1441); -x_1444 = lean_st_ref_get(x_4, x_1442); +x_1444 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1443); x_1445 = lean_ctor_get(x_1444, 0); lean_inc(x_1445); x_1446 = lean_ctor_get(x_1444, 1); lean_inc(x_1446); lean_dec(x_1444); -x_1447 = lean_ctor_get(x_1445, 3); +x_1447 = lean_ctor_get(x_3, 2); lean_inc(x_1447); -lean_dec(x_1445); -lean_inc(x_1432); -x_1448 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1448, 0, x_1432); -x_1449 = x_1448; -x_1450 = lean_environment_main_module(x_1432); -x_1451 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1451, 0, x_1449); -lean_ctor_set(x_1451, 1, x_1450); -lean_ctor_set(x_1451, 2, x_1437); -lean_ctor_set(x_1451, 3, x_1439); -lean_ctor_set(x_1451, 4, x_1443); -lean_ctor_set(x_1451, 5, x_1434); -x_1452 = l_Lean_Elab_Command_expandMacroHeadIntoPattern(x_13, x_1451, x_1447); -lean_dec(x_1451); -if (lean_obj_tag(x_1452) == 0) -{ -lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; uint8_t x_1458; +x_1448 = lean_st_ref_get(x_4, x_1446); +x_1449 = lean_ctor_get(x_1448, 0); +lean_inc(x_1449); +x_1450 = lean_ctor_get(x_1448, 1); +lean_inc(x_1450); +lean_dec(x_1448); +x_1451 = lean_ctor_get(x_1449, 4); +lean_inc(x_1451); +lean_dec(x_1449); +x_1452 = lean_st_ref_get(x_4, x_1450); x_1453 = lean_ctor_get(x_1452, 0); lean_inc(x_1453); x_1454 = lean_ctor_get(x_1452, 1); lean_inc(x_1454); lean_dec(x_1452); -x_1455 = lean_st_ref_take(x_4, x_1446); -x_1456 = lean_ctor_get(x_1455, 0); -lean_inc(x_1456); -x_1457 = lean_ctor_get(x_1455, 1); -lean_inc(x_1457); -lean_dec(x_1455); -x_1458 = !lean_is_exclusive(x_1456); -if (x_1458 == 0) -{ -lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; -x_1459 = lean_ctor_get(x_1456, 3); +x_1455 = lean_ctor_get(x_1453, 3); +lean_inc(x_1455); +lean_dec(x_1453); +lean_inc(x_1440); +x_1456 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1456, 0, x_1440); +x_1457 = x_1456; +x_1458 = lean_environment_main_module(x_1440); +x_1459 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1459, 0, x_1457); +lean_ctor_set(x_1459, 1, x_1458); +lean_ctor_set(x_1459, 2, x_1445); +lean_ctor_set(x_1459, 3, x_1447); +lean_ctor_set(x_1459, 4, x_1451); +lean_ctor_set(x_1459, 5, x_1442); +x_1460 = l_Lean_Elab_Command_expandMacroHeadIntoPattern(x_13, x_1459, x_1455); lean_dec(x_1459); -lean_ctor_set(x_1456, 3, x_1454); -x_1460 = lean_st_ref_set(x_4, x_1456, x_1457); -x_1461 = lean_ctor_get(x_1460, 1); +if (lean_obj_tag(x_1460) == 0) +{ +lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; uint8_t x_1466; +x_1461 = lean_ctor_get(x_1460, 0); lean_inc(x_1461); -lean_dec(x_1460); -x_36 = x_1453; -x_37 = x_1461; -goto block_1428; -} -else -{ -lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; -x_1462 = lean_ctor_get(x_1456, 0); -x_1463 = lean_ctor_get(x_1456, 1); -x_1464 = lean_ctor_get(x_1456, 2); -x_1465 = lean_ctor_get(x_1456, 4); -x_1466 = lean_ctor_get(x_1456, 5); -x_1467 = lean_ctor_get(x_1456, 6); -lean_inc(x_1467); -lean_inc(x_1466); -lean_inc(x_1465); -lean_inc(x_1464); -lean_inc(x_1463); +x_1462 = lean_ctor_get(x_1460, 1); lean_inc(x_1462); -lean_dec(x_1456); -x_1468 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1468, 0, x_1462); -lean_ctor_set(x_1468, 1, x_1463); -lean_ctor_set(x_1468, 2, x_1464); -lean_ctor_set(x_1468, 3, x_1454); -lean_ctor_set(x_1468, 4, x_1465); -lean_ctor_set(x_1468, 5, x_1466); -lean_ctor_set(x_1468, 6, x_1467); -x_1469 = lean_st_ref_set(x_4, x_1468, x_1457); -x_1470 = lean_ctor_get(x_1469, 1); +lean_dec(x_1460); +x_1463 = lean_st_ref_take(x_4, x_1454); +x_1464 = lean_ctor_get(x_1463, 0); +lean_inc(x_1464); +x_1465 = lean_ctor_get(x_1463, 1); +lean_inc(x_1465); +lean_dec(x_1463); +x_1466 = !lean_is_exclusive(x_1464); +if (x_1466 == 0) +{ +lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; +x_1467 = lean_ctor_get(x_1464, 3); +lean_dec(x_1467); +lean_ctor_set(x_1464, 3, x_1462); +x_1468 = lean_st_ref_set(x_4, x_1464, x_1465); +x_1469 = lean_ctor_get(x_1468, 1); +lean_inc(x_1469); +lean_dec(x_1468); +x_36 = x_1461; +x_37 = x_1469; +goto block_1436; +} +else +{ +lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; +x_1470 = lean_ctor_get(x_1464, 0); +x_1471 = lean_ctor_get(x_1464, 1); +x_1472 = lean_ctor_get(x_1464, 2); +x_1473 = lean_ctor_get(x_1464, 4); +x_1474 = lean_ctor_get(x_1464, 5); +x_1475 = lean_ctor_get(x_1464, 6); +lean_inc(x_1475); +lean_inc(x_1474); +lean_inc(x_1473); +lean_inc(x_1472); +lean_inc(x_1471); lean_inc(x_1470); -lean_dec(x_1469); -x_36 = x_1453; -x_37 = x_1470; -goto block_1428; +lean_dec(x_1464); +x_1476 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1476, 0, x_1470); +lean_ctor_set(x_1476, 1, x_1471); +lean_ctor_set(x_1476, 2, x_1472); +lean_ctor_set(x_1476, 3, x_1462); +lean_ctor_set(x_1476, 4, x_1473); +lean_ctor_set(x_1476, 5, x_1474); +lean_ctor_set(x_1476, 6, x_1475); +x_1477 = lean_st_ref_set(x_4, x_1476, x_1465); +x_1478 = lean_ctor_get(x_1477, 1); +lean_inc(x_1478); +lean_dec(x_1477); +x_36 = x_1461; +x_37 = x_1478; +goto block_1436; } } else { -lean_object* x_1471; uint8_t x_1472; -lean_dec(x_1452); +lean_object* x_1479; uint8_t x_1480; +lean_dec(x_1460); lean_dec(x_34); lean_dec(x_30); lean_dec(x_23); @@ -28310,159 +28531,159 @@ lean_dec(x_16); lean_dec(x_11); lean_dec(x_8); lean_dec(x_3); -x_1471 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1446); -x_1472 = !lean_is_exclusive(x_1471); -if (x_1472 == 0) +x_1479 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1454); +x_1480 = !lean_is_exclusive(x_1479); +if (x_1480 == 0) { -return x_1471; +return x_1479; } else { -lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; -x_1473 = lean_ctor_get(x_1471, 0); -x_1474 = lean_ctor_get(x_1471, 1); -lean_inc(x_1474); -lean_inc(x_1473); -lean_dec(x_1471); -x_1475 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1475, 0, x_1473); -lean_ctor_set(x_1475, 1, x_1474); -return x_1475; +lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; +x_1481 = lean_ctor_get(x_1479, 0); +x_1482 = lean_ctor_get(x_1479, 1); +lean_inc(x_1482); +lean_inc(x_1481); +lean_dec(x_1479); +x_1483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1483, 0, x_1481); +lean_ctor_set(x_1483, 1, x_1482); +return x_1483; } } -block_1428: +block_1436: { -lean_object* x_38; lean_object* x_39; lean_object* x_1364; size_t 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_object* x_1393; lean_object* x_1394; -x_1364 = lean_array_get_size(x_16); -x_1365 = lean_usize_of_nat(x_1364); -lean_dec(x_1364); -x_1366 = x_16; -x_1367 = lean_box_usize(x_1365); -x_1368 = l_Lean_Elab_Command_expandElab___boxed__const__1; -x_1369 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); -lean_closure_set(x_1369, 0, x_1367); -lean_closure_set(x_1369, 1, x_1368); -lean_closure_set(x_1369, 2, x_1366); -x_1370 = lean_st_ref_get(x_4, x_37); -x_1371 = lean_ctor_get(x_1370, 0); -lean_inc(x_1371); -x_1372 = lean_ctor_get(x_1370, 1); -lean_inc(x_1372); -lean_dec(x_1370); -x_1373 = lean_ctor_get(x_1371, 0); -lean_inc(x_1373); -lean_dec(x_1371); -x_1374 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1372); -x_1375 = lean_ctor_get(x_1374, 0); -lean_inc(x_1375); -x_1376 = lean_ctor_get(x_1374, 1); -lean_inc(x_1376); -lean_dec(x_1374); -x_1377 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1376); -x_1378 = lean_ctor_get(x_1377, 0); -lean_inc(x_1378); -x_1379 = lean_ctor_get(x_1377, 1); +lean_object* x_38; lean_object* x_39; lean_object* x_1372; size_t 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_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; +x_1372 = lean_array_get_size(x_16); +x_1373 = lean_usize_of_nat(x_1372); +lean_dec(x_1372); +x_1374 = x_16; +x_1375 = lean_box_usize(x_1373); +x_1376 = l_Lean_Elab_Command_expandElab___boxed__const__1; +x_1377 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); +lean_closure_set(x_1377, 0, x_1375); +lean_closure_set(x_1377, 1, x_1376); +lean_closure_set(x_1377, 2, x_1374); +x_1378 = lean_st_ref_get(x_4, x_37); +x_1379 = lean_ctor_get(x_1378, 0); lean_inc(x_1379); -lean_dec(x_1377); -x_1380 = lean_ctor_get(x_3, 2); +x_1380 = lean_ctor_get(x_1378, 1); lean_inc(x_1380); -x_1381 = lean_st_ref_get(x_4, x_1379); -x_1382 = lean_ctor_get(x_1381, 0); -lean_inc(x_1382); -x_1383 = lean_ctor_get(x_1381, 1); +lean_dec(x_1378); +x_1381 = lean_ctor_get(x_1379, 0); +lean_inc(x_1381); +lean_dec(x_1379); +x_1382 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1380); +x_1383 = lean_ctor_get(x_1382, 0); lean_inc(x_1383); -lean_dec(x_1381); -x_1384 = lean_ctor_get(x_1382, 4); +x_1384 = lean_ctor_get(x_1382, 1); lean_inc(x_1384); lean_dec(x_1382); -x_1385 = lean_st_ref_get(x_4, x_1383); +x_1385 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1384); x_1386 = lean_ctor_get(x_1385, 0); lean_inc(x_1386); x_1387 = lean_ctor_get(x_1385, 1); lean_inc(x_1387); lean_dec(x_1385); -x_1388 = lean_ctor_get(x_1386, 3); +x_1388 = lean_ctor_get(x_3, 2); lean_inc(x_1388); -lean_dec(x_1386); -lean_inc(x_1373); -x_1389 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1389, 0, x_1373); -x_1390 = x_1389; -x_1391 = lean_environment_main_module(x_1373); -x_1392 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1392, 0, x_1390); -lean_ctor_set(x_1392, 1, x_1391); -lean_ctor_set(x_1392, 2, x_1378); -lean_ctor_set(x_1392, 3, x_1380); -lean_ctor_set(x_1392, 4, x_1384); -lean_ctor_set(x_1392, 5, x_1375); -x_1393 = x_1369; -x_1394 = lean_apply_2(x_1393, x_1392, x_1388); -if (lean_obj_tag(x_1394) == 0) -{ -lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; uint8_t x_1400; -x_1395 = lean_ctor_get(x_1394, 0); +x_1389 = lean_st_ref_get(x_4, x_1387); +x_1390 = lean_ctor_get(x_1389, 0); +lean_inc(x_1390); +x_1391 = lean_ctor_get(x_1389, 1); +lean_inc(x_1391); +lean_dec(x_1389); +x_1392 = lean_ctor_get(x_1390, 4); +lean_inc(x_1392); +lean_dec(x_1390); +x_1393 = lean_st_ref_get(x_4, x_1391); +x_1394 = lean_ctor_get(x_1393, 0); +lean_inc(x_1394); +x_1395 = lean_ctor_get(x_1393, 1); lean_inc(x_1395); -x_1396 = lean_ctor_get(x_1394, 1); +lean_dec(x_1393); +x_1396 = lean_ctor_get(x_1394, 3); lean_inc(x_1396); lean_dec(x_1394); -x_1397 = lean_st_ref_take(x_4, x_1387); -x_1398 = lean_ctor_get(x_1397, 0); -lean_inc(x_1398); -x_1399 = lean_ctor_get(x_1397, 1); -lean_inc(x_1399); -lean_dec(x_1397); -x_1400 = !lean_is_exclusive(x_1398); -if (x_1400 == 0) +lean_inc(x_1381); +x_1397 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1397, 0, x_1381); +x_1398 = x_1397; +x_1399 = lean_environment_main_module(x_1381); +x_1400 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1400, 0, x_1398); +lean_ctor_set(x_1400, 1, x_1399); +lean_ctor_set(x_1400, 2, x_1386); +lean_ctor_set(x_1400, 3, x_1388); +lean_ctor_set(x_1400, 4, x_1392); +lean_ctor_set(x_1400, 5, x_1383); +x_1401 = x_1377; +x_1402 = lean_apply_2(x_1401, x_1400, x_1396); +if (lean_obj_tag(x_1402) == 0) { -lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; -x_1401 = lean_ctor_get(x_1398, 3); -lean_dec(x_1401); -lean_ctor_set(x_1398, 3, x_1396); -x_1402 = lean_st_ref_set(x_4, x_1398, x_1399); -x_1403 = lean_ctor_get(x_1402, 1); +lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; uint8_t x_1408; +x_1403 = lean_ctor_get(x_1402, 0); lean_inc(x_1403); -lean_dec(x_1402); -x_38 = x_1395; -x_39 = x_1403; -goto block_1363; -} -else -{ -lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; -x_1404 = lean_ctor_get(x_1398, 0); -x_1405 = lean_ctor_get(x_1398, 1); -x_1406 = lean_ctor_get(x_1398, 2); -x_1407 = lean_ctor_get(x_1398, 4); -x_1408 = lean_ctor_get(x_1398, 5); -x_1409 = lean_ctor_get(x_1398, 6); -lean_inc(x_1409); -lean_inc(x_1408); -lean_inc(x_1407); -lean_inc(x_1406); -lean_inc(x_1405); +x_1404 = lean_ctor_get(x_1402, 1); lean_inc(x_1404); -lean_dec(x_1398); -x_1410 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1410, 0, x_1404); -lean_ctor_set(x_1410, 1, x_1405); -lean_ctor_set(x_1410, 2, x_1406); -lean_ctor_set(x_1410, 3, x_1396); -lean_ctor_set(x_1410, 4, x_1407); -lean_ctor_set(x_1410, 5, x_1408); -lean_ctor_set(x_1410, 6, x_1409); -x_1411 = lean_st_ref_set(x_4, x_1410, x_1399); -x_1412 = lean_ctor_get(x_1411, 1); +lean_dec(x_1402); +x_1405 = lean_st_ref_take(x_4, x_1395); +x_1406 = lean_ctor_get(x_1405, 0); +lean_inc(x_1406); +x_1407 = lean_ctor_get(x_1405, 1); +lean_inc(x_1407); +lean_dec(x_1405); +x_1408 = !lean_is_exclusive(x_1406); +if (x_1408 == 0) +{ +lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; +x_1409 = lean_ctor_get(x_1406, 3); +lean_dec(x_1409); +lean_ctor_set(x_1406, 3, x_1404); +x_1410 = lean_st_ref_set(x_4, x_1406, x_1407); +x_1411 = lean_ctor_get(x_1410, 1); +lean_inc(x_1411); +lean_dec(x_1410); +x_38 = x_1403; +x_39 = x_1411; +goto block_1371; +} +else +{ +lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; +x_1412 = lean_ctor_get(x_1406, 0); +x_1413 = lean_ctor_get(x_1406, 1); +x_1414 = lean_ctor_get(x_1406, 2); +x_1415 = lean_ctor_get(x_1406, 4); +x_1416 = lean_ctor_get(x_1406, 5); +x_1417 = lean_ctor_get(x_1406, 6); +lean_inc(x_1417); +lean_inc(x_1416); +lean_inc(x_1415); +lean_inc(x_1414); +lean_inc(x_1413); lean_inc(x_1412); -lean_dec(x_1411); -x_38 = x_1395; -x_39 = x_1412; -goto block_1363; +lean_dec(x_1406); +x_1418 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1418, 0, x_1412); +lean_ctor_set(x_1418, 1, x_1413); +lean_ctor_set(x_1418, 2, x_1414); +lean_ctor_set(x_1418, 3, x_1404); +lean_ctor_set(x_1418, 4, x_1415); +lean_ctor_set(x_1418, 5, x_1416); +lean_ctor_set(x_1418, 6, x_1417); +x_1419 = lean_st_ref_set(x_4, x_1418, x_1407); +x_1420 = lean_ctor_get(x_1419, 1); +lean_inc(x_1420); +lean_dec(x_1419); +x_38 = x_1403; +x_39 = x_1420; +goto block_1371; } } else { -lean_object* x_1413; +lean_object* x_1421; lean_dec(x_36); lean_dec(x_34); lean_dec(x_30); @@ -28472,68 +28693,68 @@ lean_dec(x_20); lean_dec(x_18); lean_dec(x_11); lean_dec(x_8); -x_1413 = lean_ctor_get(x_1394, 0); -lean_inc(x_1413); -lean_dec(x_1394); -if (lean_obj_tag(x_1413) == 0) -{ -lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; uint8_t x_1419; -x_1414 = lean_ctor_get(x_1413, 0); -lean_inc(x_1414); -x_1415 = lean_ctor_get(x_1413, 1); -lean_inc(x_1415); -lean_dec(x_1413); -x_1416 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1416, 0, x_1415); -x_1417 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1417, 0, x_1416); -x_1418 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1414, x_1417, x_3, x_4, x_1387); -lean_dec(x_1414); -x_1419 = !lean_is_exclusive(x_1418); -if (x_1419 == 0) -{ -return x_1418; -} -else -{ -lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; -x_1420 = lean_ctor_get(x_1418, 0); -x_1421 = lean_ctor_get(x_1418, 1); +x_1421 = lean_ctor_get(x_1402, 0); lean_inc(x_1421); -lean_inc(x_1420); -lean_dec(x_1418); -x_1422 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1422, 0, x_1420); -lean_ctor_set(x_1422, 1, x_1421); -return x_1422; +lean_dec(x_1402); +if (lean_obj_tag(x_1421) == 0) +{ +lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; uint8_t x_1427; +x_1422 = lean_ctor_get(x_1421, 0); +lean_inc(x_1422); +x_1423 = lean_ctor_get(x_1421, 1); +lean_inc(x_1423); +lean_dec(x_1421); +x_1424 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1424, 0, x_1423); +x_1425 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1425, 0, x_1424); +x_1426 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1422, x_1425, x_3, x_4, x_1395); +lean_dec(x_1422); +x_1427 = !lean_is_exclusive(x_1426); +if (x_1427 == 0) +{ +return x_1426; +} +else +{ +lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; +x_1428 = lean_ctor_get(x_1426, 0); +x_1429 = lean_ctor_get(x_1426, 1); +lean_inc(x_1429); +lean_inc(x_1428); +lean_dec(x_1426); +x_1430 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1430, 0, x_1428); +lean_ctor_set(x_1430, 1, x_1429); +return x_1430; } } else { -lean_object* x_1423; uint8_t x_1424; +lean_object* x_1431; uint8_t x_1432; lean_dec(x_3); -x_1423 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1387); -x_1424 = !lean_is_exclusive(x_1423); -if (x_1424 == 0) +x_1431 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1395); +x_1432 = !lean_is_exclusive(x_1431); +if (x_1432 == 0) { -return x_1423; +return x_1431; } else { -lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; -x_1425 = lean_ctor_get(x_1423, 0); -x_1426 = lean_ctor_get(x_1423, 1); -lean_inc(x_1426); -lean_inc(x_1425); -lean_dec(x_1423); -x_1427 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1427, 0, x_1425); -lean_ctor_set(x_1427, 1, x_1426); -return x_1427; +lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; +x_1433 = lean_ctor_get(x_1431, 0); +x_1434 = lean_ctor_get(x_1431, 1); +lean_inc(x_1434); +lean_inc(x_1433); +lean_dec(x_1431); +x_1435 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1435, 0, x_1433); +lean_ctor_set(x_1435, 1, x_1434); +return x_1435; } } } -block_1363: +block_1371: { lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_inc(x_34); @@ -28600,7 +28821,7 @@ x_61 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_60); x_62 = !lean_is_exclusive(x_61); if (x_62 == 0) { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; 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_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; 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; x_63 = lean_ctor_get(x_61, 0); x_64 = l_Array_empty___closed__1; x_65 = l_Array_appendCore___rarg(x_64, x_8); @@ -28656,7 +28877,7 @@ lean_ctor_set(x_98, 0, x_75); lean_ctor_set(x_98, 1, x_97); lean_ctor_set(x_98, 2, x_95); lean_ctor_set(x_98, 3, x_96); -x_99 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_99 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; x_100 = lean_array_push(x_99, x_98); x_101 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_101, 0, x_66); @@ -28681,1471 +28902,1477 @@ x_112 = lean_array_push(x_64, x_111); x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_66); lean_ctor_set(x_113, 1, x_112); -x_114 = lean_array_push(x_99, x_113); -x_115 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_116 = lean_array_push(x_114, x_115); -x_117 = lean_array_push(x_116, x_115); -x_118 = lean_array_push(x_117, x_115); -x_119 = lean_array_push(x_118, x_115); -x_120 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_121, 0, x_120); -lean_ctor_set(x_121, 1, x_119); -x_122 = lean_array_push(x_64, x_121); -x_123 = l_Lean_Elab_Command_expandElab___closed__8; +x_114 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_115 = lean_array_push(x_114, x_113); +x_116 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_117 = lean_array_push(x_115, x_116); +x_118 = lean_array_push(x_117, x_116); +x_119 = lean_array_push(x_118, x_116); +x_120 = lean_array_push(x_119, x_116); +x_121 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_64, x_122); +x_124 = l_Lean_Elab_Command_expandElab___closed__8; lean_inc(x_59); lean_inc(x_63); -x_124 = l_Lean_addMacroScope(x_63, x_123, x_59); -x_125 = l_Lean_Elab_Command_expandElab___closed__7; -x_126 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_126, 0, x_75); -lean_ctor_set(x_126, 1, x_125); -lean_ctor_set(x_126, 2, x_124); -lean_ctor_set(x_126, 3, x_96); -x_127 = lean_array_push(x_64, x_126); -x_128 = lean_array_push(x_127, x_115); -x_129 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_128); -x_131 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_132 = lean_array_push(x_131, x_130); -x_133 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; +x_125 = l_Lean_addMacroScope(x_63, x_124, x_59); +x_126 = l_Lean_Elab_Command_expandElab___closed__7; +x_127 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_127, 0, x_75); +lean_ctor_set(x_127, 1, x_126); +lean_ctor_set(x_127, 2, x_125); +lean_ctor_set(x_127, 3, x_96); +x_128 = lean_array_push(x_64, x_127); +x_129 = lean_array_push(x_128, x_116); +x_130 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +x_132 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_133 = lean_array_push(x_132, x_131); +x_134 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; lean_inc(x_59); lean_inc(x_63); -x_134 = l_Lean_addMacroScope(x_63, x_133, x_59); -x_135 = l_Lean_Elab_Command_expandElab___closed__11; -x_136 = l_Lean_Elab_Command_expandElab___closed__13; -x_137 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_137, 0, x_75); -lean_ctor_set(x_137, 1, x_135); -lean_ctor_set(x_137, 2, x_134); -lean_ctor_set(x_137, 3, x_136); -x_138 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_139 = lean_array_push(x_138, x_137); -x_140 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_140); -lean_ctor_set(x_141, 1, x_139); -x_142 = lean_array_push(x_64, x_141); -x_143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_143, 0, x_66); -lean_ctor_set(x_143, 1, x_142); -x_144 = lean_array_push(x_99, x_143); -x_145 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_145); -lean_ctor_set(x_146, 1, x_144); -x_147 = lean_array_push(x_132, x_146); -x_148 = l_stx___x3c_x7c_x3e_____closed__4; +x_135 = l_Lean_addMacroScope(x_63, x_134, x_59); +x_136 = l_Lean_Elab_Command_expandElab___closed__11; +x_137 = l_Lean_Elab_Command_expandElab___closed__13; +x_138 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_138, 0, x_75); +lean_ctor_set(x_138, 1, x_136); +lean_ctor_set(x_138, 2, x_135); +lean_ctor_set(x_138, 3, x_137); +x_139 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_140 = lean_array_push(x_139, x_138); +x_141 = l_Lean_expandExplicitBindersAux_loop___closed__8; +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_64, x_142); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_66); +lean_ctor_set(x_144, 1, x_143); +x_145 = lean_array_push(x_114, x_144); +x_146 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_145); +x_148 = lean_array_push(x_133, x_147); +x_149 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_59); lean_inc(x_63); -x_149 = l_Lean_addMacroScope(x_63, x_148, x_59); -x_150 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_151 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_151, 0, x_75); -lean_ctor_set(x_151, 1, x_150); -lean_ctor_set(x_151, 2, x_149); -lean_ctor_set(x_151, 3, x_96); -lean_inc(x_151); -x_152 = lean_array_push(x_64, x_151); -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_66); -lean_ctor_set(x_153, 1, x_152); -x_154 = lean_array_push(x_64, x_153); -x_155 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_156 = lean_array_push(x_154, x_155); -x_157 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_158 = lean_array_push(x_157, x_151); -x_159 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_160 = lean_array_push(x_158, x_159); -x_161 = l_Lean_Elab_Command_expandElab___closed__16; -x_162 = lean_array_push(x_161, x_43); -x_163 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_164 = lean_array_push(x_162, x_163); -x_165 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -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_64, x_166); -x_168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_168, 0, x_66); -lean_ctor_set(x_168, 1, x_167); -x_169 = lean_array_push(x_64, x_168); -x_170 = lean_array_push(x_169, x_155); -x_171 = lean_array_push(x_170, x_22); -x_172 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -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_64, x_173); -x_175 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_176 = lean_array_push(x_174, x_175); -x_177 = l_Lean_Elab_Command_expandElab___closed__20; -x_178 = l_Lean_addMacroScope(x_63, x_177, x_59); -x_179 = l_Lean_Elab_Command_expandElab___closed__19; -x_180 = l_Lean_Elab_Command_expandElab___closed__23; -x_181 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_181, 0, x_75); -lean_ctor_set(x_181, 1, x_179); -lean_ctor_set(x_181, 2, x_178); -lean_ctor_set(x_181, 3, x_180); -x_182 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_183 = lean_array_push(x_182, x_181); -x_184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_184, 0, x_172); -lean_ctor_set(x_184, 1, x_183); -x_185 = lean_array_push(x_176, x_184); -x_186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_186, 0, x_66); -lean_ctor_set(x_186, 1, x_185); -x_187 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_188 = lean_array_push(x_187, x_186); -x_189 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_189); -lean_ctor_set(x_190, 1, x_188); -x_191 = lean_array_push(x_160, x_190); -x_192 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_191); -x_194 = lean_array_push(x_156, x_193); -x_195 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -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_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_198 = lean_array_push(x_197, x_196); -x_199 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_199); -lean_ctor_set(x_200, 1, x_198); -x_201 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_202 = lean_array_push(x_201, x_200); -x_203 = lean_array_push(x_202, x_115); -x_204 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_205, 0, x_204); -lean_ctor_set(x_205, 1, x_203); -x_206 = lean_array_push(x_147, x_205); -x_207 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_208, 0, x_207); -lean_ctor_set(x_208, 1, x_206); -x_209 = lean_array_push(x_122, x_208); -x_210 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_211, 0, x_210); -lean_ctor_set(x_211, 1, x_209); -x_212 = lean_array_push(x_94, x_211); -x_213 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_213, 0, x_66); -lean_ctor_set(x_213, 1, x_212); -lean_ctor_set(x_61, 0, x_213); +x_150 = l_Lean_addMacroScope(x_63, x_149, x_59); +x_151 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_152 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_152, 0, x_75); +lean_ctor_set(x_152, 1, x_151); +lean_ctor_set(x_152, 2, x_150); +lean_ctor_set(x_152, 3, x_96); +lean_inc(x_152); +x_153 = lean_array_push(x_64, x_152); +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_66); +lean_ctor_set(x_154, 1, x_153); +x_155 = lean_array_push(x_64, x_154); +x_156 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_157 = lean_array_push(x_155, x_156); +x_158 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_159 = lean_array_push(x_158, x_152); +x_160 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_161 = lean_array_push(x_159, x_160); +x_162 = l_Lean_Elab_Command_expandElab___closed__16; +x_163 = lean_array_push(x_162, x_43); +x_164 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_165 = lean_array_push(x_163, x_164); +x_166 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +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_64, x_167); +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_66); +lean_ctor_set(x_169, 1, x_168); +x_170 = lean_array_push(x_64, x_169); +x_171 = lean_array_push(x_170, x_156); +x_172 = lean_array_push(x_171, x_22); +x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_172); +x_175 = lean_array_push(x_64, x_174); +x_176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_177 = lean_array_push(x_175, x_176); +x_178 = l_Lean_Elab_Command_expandElab___closed__20; +x_179 = l_Lean_addMacroScope(x_63, x_178, x_59); +x_180 = l_Lean_Elab_Command_expandElab___closed__19; +x_181 = l_Lean_Elab_Command_expandElab___closed__23; +x_182 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_182, 0, x_75); +lean_ctor_set(x_182, 1, x_180); +lean_ctor_set(x_182, 2, x_179); +lean_ctor_set(x_182, 3, x_181); +x_183 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_184 = lean_array_push(x_183, x_182); +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_173); +lean_ctor_set(x_185, 1, x_184); +x_186 = lean_array_push(x_177, x_185); +x_187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_187, 0, x_66); +lean_ctor_set(x_187, 1, x_186); +x_188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_189 = lean_array_push(x_188, x_187); +x_190 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_189); +x_192 = lean_array_push(x_161, x_191); +x_193 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_192); +x_195 = lean_array_push(x_157, x_194); +x_196 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_199 = lean_array_push(x_198, x_197); +x_200 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_203 = lean_array_push(x_202, x_201); +x_204 = lean_array_push(x_203, x_116); +x_205 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_206 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_206, 0, x_205); +lean_ctor_set(x_206, 1, x_204); +x_207 = lean_array_push(x_148, x_206); +x_208 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_209, 0, x_208); +lean_ctor_set(x_209, 1, x_207); +x_210 = lean_array_push(x_123, x_209); +x_211 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_210); +x_213 = lean_array_push(x_94, x_212); +x_214 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_214, 0, x_66); +lean_ctor_set(x_214, 1, x_213); +lean_ctor_set(x_61, 0, x_214); return x_61; } else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_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; -x_214 = lean_ctor_get(x_61, 0); -x_215 = lean_ctor_get(x_61, 1); +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_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; +x_215 = lean_ctor_get(x_61, 0); +x_216 = lean_ctor_get(x_61, 1); +lean_inc(x_216); lean_inc(x_215); -lean_inc(x_214); lean_dec(x_61); -x_216 = l_Array_empty___closed__1; -x_217 = l_Array_appendCore___rarg(x_216, x_8); +x_217 = l_Array_empty___closed__1; +x_218 = l_Array_appendCore___rarg(x_217, x_8); lean_dec(x_8); -x_218 = l_Lean_nullKind___closed__2; -x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_218); -lean_ctor_set(x_219, 1, x_217); -x_220 = l_Lean_Elab_Command_expandMacro___closed__1; -x_221 = lean_array_push(x_220, x_219); -x_222 = lean_array_push(x_216, x_44); -x_223 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; -lean_inc(x_222); -x_224 = lean_array_push(x_222, x_223); -x_225 = l_Nat_repr(x_11); -x_226 = l_Lean_numLitKind; -x_227 = l_Lean_instInhabitedSourceInfo___closed__1; -x_228 = l_Lean_Syntax_mkLit(x_226, x_225, x_227); -x_229 = lean_array_push(x_224, x_228); -x_230 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -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_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_233 = lean_array_push(x_232, x_231); -x_234 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_235 = lean_array_push(x_233, x_234); -x_236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_236, 0, x_218); -lean_ctor_set(x_236, 1, x_235); -x_237 = lean_array_push(x_221, x_236); -x_238 = l_Array_appendCore___rarg(x_216, x_30); +x_219 = l_Lean_nullKind___closed__2; +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 = l_Lean_Elab_Command_expandMacro___closed__1; +x_222 = lean_array_push(x_221, x_220); +x_223 = lean_array_push(x_217, x_44); +x_224 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_inc(x_223); +x_225 = lean_array_push(x_223, x_224); +x_226 = l_Nat_repr(x_11); +x_227 = l_Lean_numLitKind; +x_228 = l_Lean_instInhabitedSourceInfo___closed__1; +x_229 = l_Lean_Syntax_mkLit(x_227, x_226, x_228); +x_230 = lean_array_push(x_225, x_229); +x_231 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_230); +x_233 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_234 = lean_array_push(x_233, x_232); +x_235 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_236 = lean_array_push(x_234, x_235); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_219); +lean_ctor_set(x_237, 1, x_236); +x_238 = lean_array_push(x_222, x_237); +x_239 = l_Array_appendCore___rarg(x_217, x_30); lean_dec(x_30); -x_239 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_239, 0, x_218); -lean_ctor_set(x_239, 1, x_238); -x_240 = lean_array_push(x_237, x_239); -x_241 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; -x_242 = lean_array_push(x_240, x_241); -x_243 = lean_array_push(x_242, x_18); -x_244 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set(x_245, 1, x_243); -x_246 = lean_array_push(x_216, x_245); +x_240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_240, 0, x_219); +lean_ctor_set(x_240, 1, x_239); +x_241 = lean_array_push(x_238, x_240); +x_242 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +x_243 = lean_array_push(x_241, x_242); +x_244 = lean_array_push(x_243, x_18); +x_245 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +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 = lean_array_push(x_217, x_246); lean_inc(x_59); -lean_inc(x_214); -x_247 = l_Lean_addMacroScope(x_214, x_50, x_59); -x_248 = lean_box(0); -x_249 = l_Lean_Elab_Command_expandElab___closed__4; -x_250 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_250, 0, x_227); -lean_ctor_set(x_250, 1, x_249); -lean_ctor_set(x_250, 2, x_247); -lean_ctor_set(x_250, 3, x_248); -x_251 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_252 = lean_array_push(x_251, x_250); -x_253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_253, 0, x_218); -lean_ctor_set(x_253, 1, x_222); -x_254 = lean_array_push(x_252, x_253); -x_255 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -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_216, x_256); -x_258 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_258, 0, x_218); -lean_ctor_set(x_258, 1, x_257); -x_259 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_260 = lean_array_push(x_259, x_258); -x_261 = lean_array_push(x_260, x_234); -x_262 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_263 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_263, 0, x_262); -lean_ctor_set(x_263, 1, x_261); -x_264 = lean_array_push(x_216, x_263); -x_265 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_265, 0, x_218); -lean_ctor_set(x_265, 1, x_264); -x_266 = lean_array_push(x_251, x_265); -x_267 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_268 = lean_array_push(x_266, x_267); -x_269 = lean_array_push(x_268, x_267); -x_270 = lean_array_push(x_269, x_267); -x_271 = lean_array_push(x_270, x_267); -x_272 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -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_216, x_273); -x_275 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_215); +x_248 = l_Lean_addMacroScope(x_215, x_50, x_59); +x_249 = lean_box(0); +x_250 = l_Lean_Elab_Command_expandElab___closed__4; +x_251 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_251, 0, x_228); +lean_ctor_set(x_251, 1, x_250); +lean_ctor_set(x_251, 2, x_248); +lean_ctor_set(x_251, 3, x_249); +x_252 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_253 = lean_array_push(x_252, x_251); +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_219); +lean_ctor_set(x_254, 1, x_223); +x_255 = lean_array_push(x_253, x_254); +x_256 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_255); +x_258 = lean_array_push(x_217, x_257); +x_259 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_259, 0, x_219); +lean_ctor_set(x_259, 1, x_258); +x_260 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_261 = lean_array_push(x_260, x_259); +x_262 = lean_array_push(x_261, x_235); +x_263 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set(x_264, 1, x_262); +x_265 = lean_array_push(x_217, x_264); +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_219); +lean_ctor_set(x_266, 1, x_265); +x_267 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_268 = lean_array_push(x_267, x_266); +x_269 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_270 = lean_array_push(x_268, x_269); +x_271 = lean_array_push(x_270, x_269); +x_272 = lean_array_push(x_271, x_269); +x_273 = lean_array_push(x_272, x_269); +x_274 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_275 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_275, 0, x_274); +lean_ctor_set(x_275, 1, x_273); +x_276 = lean_array_push(x_217, x_275); +x_277 = l_Lean_Elab_Command_expandElab___closed__8; lean_inc(x_59); -lean_inc(x_214); -x_276 = l_Lean_addMacroScope(x_214, x_275, x_59); -x_277 = l_Lean_Elab_Command_expandElab___closed__7; -x_278 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_278, 0, x_227); -lean_ctor_set(x_278, 1, x_277); -lean_ctor_set(x_278, 2, x_276); -lean_ctor_set(x_278, 3, x_248); -x_279 = lean_array_push(x_216, x_278); -x_280 = lean_array_push(x_279, x_267); -x_281 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set(x_282, 1, x_280); -x_283 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_284 = lean_array_push(x_283, x_282); -x_285 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; +lean_inc(x_215); +x_278 = l_Lean_addMacroScope(x_215, x_277, x_59); +x_279 = l_Lean_Elab_Command_expandElab___closed__7; +x_280 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_280, 0, x_228); +lean_ctor_set(x_280, 1, x_279); +lean_ctor_set(x_280, 2, x_278); +lean_ctor_set(x_280, 3, x_249); +x_281 = lean_array_push(x_217, x_280); +x_282 = lean_array_push(x_281, x_269); +x_283 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +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 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_286 = lean_array_push(x_285, x_284); +x_287 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; lean_inc(x_59); -lean_inc(x_214); -x_286 = l_Lean_addMacroScope(x_214, x_285, x_59); -x_287 = l_Lean_Elab_Command_expandElab___closed__11; -x_288 = l_Lean_Elab_Command_expandElab___closed__13; -x_289 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_289, 0, x_227); -lean_ctor_set(x_289, 1, x_287); -lean_ctor_set(x_289, 2, x_286); -lean_ctor_set(x_289, 3, x_288); -x_290 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_291 = lean_array_push(x_290, x_289); -x_292 = l_Lean_expandExplicitBindersAux_loop___closed__8; -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 = lean_array_push(x_216, x_293); +lean_inc(x_215); +x_288 = l_Lean_addMacroScope(x_215, x_287, x_59); +x_289 = l_Lean_Elab_Command_expandElab___closed__11; +x_290 = l_Lean_Elab_Command_expandElab___closed__13; +x_291 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_291, 0, x_228); +lean_ctor_set(x_291, 1, x_289); +lean_ctor_set(x_291, 2, x_288); +lean_ctor_set(x_291, 3, x_290); +x_292 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_293 = lean_array_push(x_292, x_291); +x_294 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_295, 0, x_218); -lean_ctor_set(x_295, 1, x_294); -x_296 = lean_array_push(x_251, x_295); -x_297 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_298 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_298, 0, x_297); -lean_ctor_set(x_298, 1, x_296); -x_299 = lean_array_push(x_284, x_298); -x_300 = l_stx___x3c_x7c_x3e_____closed__4; +lean_ctor_set(x_295, 0, x_294); +lean_ctor_set(x_295, 1, x_293); +x_296 = lean_array_push(x_217, x_295); +x_297 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_297, 0, x_219); +lean_ctor_set(x_297, 1, x_296); +x_298 = lean_array_push(x_267, x_297); +x_299 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_300, 0, x_299); +lean_ctor_set(x_300, 1, x_298); +x_301 = lean_array_push(x_286, x_300); +x_302 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_59); -lean_inc(x_214); -x_301 = l_Lean_addMacroScope(x_214, x_300, x_59); -x_302 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_303 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_303, 0, x_227); -lean_ctor_set(x_303, 1, x_302); -lean_ctor_set(x_303, 2, x_301); -lean_ctor_set(x_303, 3, x_248); -lean_inc(x_303); -x_304 = lean_array_push(x_216, x_303); -x_305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_305, 0, x_218); +lean_inc(x_215); +x_303 = l_Lean_addMacroScope(x_215, x_302, x_59); +x_304 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_305 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_305, 0, x_228); lean_ctor_set(x_305, 1, x_304); -x_306 = lean_array_push(x_216, x_305); -x_307 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_308 = lean_array_push(x_306, x_307); -x_309 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_310 = lean_array_push(x_309, x_303); -x_311 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_312 = lean_array_push(x_310, x_311); -x_313 = l_Lean_Elab_Command_expandElab___closed__16; -x_314 = lean_array_push(x_313, x_43); -x_315 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_316 = lean_array_push(x_314, x_315); -x_317 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -x_318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_318, 0, x_317); -lean_ctor_set(x_318, 1, x_316); -x_319 = lean_array_push(x_216, x_318); +lean_ctor_set(x_305, 2, x_303); +lean_ctor_set(x_305, 3, x_249); +lean_inc(x_305); +x_306 = lean_array_push(x_217, x_305); +x_307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_307, 0, x_219); +lean_ctor_set(x_307, 1, x_306); +x_308 = lean_array_push(x_217, x_307); +x_309 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_310 = lean_array_push(x_308, x_309); +x_311 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_312 = lean_array_push(x_311, x_305); +x_313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_314 = lean_array_push(x_312, x_313); +x_315 = l_Lean_Elab_Command_expandElab___closed__16; +x_316 = lean_array_push(x_315, x_43); +x_317 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_318 = lean_array_push(x_316, x_317); +x_319 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; x_320 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_320, 0, x_218); -lean_ctor_set(x_320, 1, x_319); -x_321 = lean_array_push(x_216, x_320); -x_322 = lean_array_push(x_321, x_307); -x_323 = lean_array_push(x_322, x_22); -x_324 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_325 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_325, 0, x_324); -lean_ctor_set(x_325, 1, x_323); -x_326 = lean_array_push(x_216, x_325); -x_327 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_328 = lean_array_push(x_326, x_327); -x_329 = l_Lean_Elab_Command_expandElab___closed__20; -x_330 = l_Lean_addMacroScope(x_214, x_329, x_59); -x_331 = l_Lean_Elab_Command_expandElab___closed__19; -x_332 = l_Lean_Elab_Command_expandElab___closed__23; -x_333 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_333, 0, x_227); -lean_ctor_set(x_333, 1, x_331); -lean_ctor_set(x_333, 2, x_330); -lean_ctor_set(x_333, 3, x_332); -x_334 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_335 = lean_array_push(x_334, x_333); -x_336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_337 = lean_array_push(x_328, x_336); +lean_ctor_set(x_320, 0, x_319); +lean_ctor_set(x_320, 1, x_318); +x_321 = lean_array_push(x_217, x_320); +x_322 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_322, 0, x_219); +lean_ctor_set(x_322, 1, x_321); +x_323 = lean_array_push(x_217, x_322); +x_324 = lean_array_push(x_323, x_309); +x_325 = lean_array_push(x_324, x_22); +x_326 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_327, 0, x_326); +lean_ctor_set(x_327, 1, x_325); +x_328 = lean_array_push(x_217, x_327); +x_329 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_330 = lean_array_push(x_328, x_329); +x_331 = l_Lean_Elab_Command_expandElab___closed__20; +x_332 = l_Lean_addMacroScope(x_215, x_331, x_59); +x_333 = l_Lean_Elab_Command_expandElab___closed__19; +x_334 = l_Lean_Elab_Command_expandElab___closed__23; +x_335 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_335, 0, x_228); +lean_ctor_set(x_335, 1, x_333); +lean_ctor_set(x_335, 2, x_332); +lean_ctor_set(x_335, 3, x_334); +x_336 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_337 = lean_array_push(x_336, x_335); x_338 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_338, 0, x_218); +lean_ctor_set(x_338, 0, x_326); lean_ctor_set(x_338, 1, x_337); -x_339 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_340 = lean_array_push(x_339, x_338); -x_341 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_342, 0, x_341); -lean_ctor_set(x_342, 1, x_340); -x_343 = lean_array_push(x_312, x_342); -x_344 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_345 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_345, 0, x_344); -lean_ctor_set(x_345, 1, x_343); -x_346 = lean_array_push(x_308, x_345); -x_347 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_348, 0, x_347); -lean_ctor_set(x_348, 1, x_346); -x_349 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_350 = lean_array_push(x_349, x_348); -x_351 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_354 = lean_array_push(x_353, x_352); -x_355 = lean_array_push(x_354, x_267); -x_356 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_357 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_357, 0, x_356); -lean_ctor_set(x_357, 1, x_355); -x_358 = lean_array_push(x_299, x_357); -x_359 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_360 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_360, 0, x_359); -lean_ctor_set(x_360, 1, x_358); -x_361 = lean_array_push(x_274, x_360); -x_362 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -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 = lean_array_push(x_246, x_363); +x_339 = lean_array_push(x_330, x_338); +x_340 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_340, 0, x_219); +lean_ctor_set(x_340, 1, x_339); +x_341 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_342 = lean_array_push(x_341, x_340); +x_343 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_344, 0, x_343); +lean_ctor_set(x_344, 1, x_342); +x_345 = lean_array_push(x_314, x_344); +x_346 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_346); +lean_ctor_set(x_347, 1, x_345); +x_348 = lean_array_push(x_310, x_347); +x_349 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_350 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_350, 0, x_349); +lean_ctor_set(x_350, 1, x_348); +x_351 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_352 = lean_array_push(x_351, x_350); +x_353 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_354, 0, x_353); +lean_ctor_set(x_354, 1, x_352); +x_355 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_356 = lean_array_push(x_355, x_354); +x_357 = lean_array_push(x_356, x_269); +x_358 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_359 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_359, 0, x_358); +lean_ctor_set(x_359, 1, x_357); +x_360 = lean_array_push(x_301, x_359); +x_361 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_362 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_362, 0, x_361); +lean_ctor_set(x_362, 1, x_360); +x_363 = lean_array_push(x_276, x_362); +x_364 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; x_365 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_365, 0, x_218); -lean_ctor_set(x_365, 1, x_364); -x_366 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_366, 0, x_365); -lean_ctor_set(x_366, 1, x_215); -return x_366; +lean_ctor_set(x_365, 0, x_364); +lean_ctor_set(x_365, 1, x_363); +x_366 = lean_array_push(x_247, x_365); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_219); +lean_ctor_set(x_367, 1, x_366); +x_368 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_368, 0, x_367); +lean_ctor_set(x_368, 1, x_216); +return x_368; } } } else { -lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; uint8_t x_371; +lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_dec(x_23); -x_367 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); +x_369 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); lean_dec(x_3); -x_368 = lean_ctor_get(x_367, 0); -lean_inc(x_368); -x_369 = lean_ctor_get(x_367, 1); -lean_inc(x_369); -lean_dec(x_367); -x_370 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_369); -x_371 = !lean_is_exclusive(x_370); -if (x_371 == 0) +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +lean_dec(x_369); +x_372 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_371); +x_373 = !lean_is_exclusive(x_372); +if (x_373 == 0) { -lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_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; -x_372 = lean_ctor_get(x_370, 0); -x_373 = l_Array_empty___closed__1; -x_374 = l_Array_appendCore___rarg(x_373, x_8); +lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; +x_374 = lean_ctor_get(x_372, 0); +x_375 = l_Array_empty___closed__1; +x_376 = l_Array_appendCore___rarg(x_375, x_8); lean_dec(x_8); -x_375 = l_Lean_nullKind___closed__2; -x_376 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_376, 0, x_375); -lean_ctor_set(x_376, 1, x_374); -x_377 = l_Lean_Elab_Command_expandMacro___closed__1; -x_378 = lean_array_push(x_377, x_376); -x_379 = lean_array_push(x_373, x_44); -x_380 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; -lean_inc(x_379); -x_381 = lean_array_push(x_379, x_380); -x_382 = l_Nat_repr(x_11); -x_383 = l_Lean_numLitKind; -x_384 = l_Lean_instInhabitedSourceInfo___closed__1; -x_385 = l_Lean_Syntax_mkLit(x_383, x_382, x_384); -x_386 = lean_array_push(x_381, x_385); -x_387 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_388 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_388, 0, x_387); -lean_ctor_set(x_388, 1, x_386); -x_389 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_390 = lean_array_push(x_389, x_388); -x_391 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_392 = lean_array_push(x_390, x_391); -x_393 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_393, 0, x_375); -lean_ctor_set(x_393, 1, x_392); -x_394 = lean_array_push(x_378, x_393); -x_395 = l_Array_appendCore___rarg(x_373, x_30); +x_377 = l_Lean_nullKind___closed__2; +x_378 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_378, 0, x_377); +lean_ctor_set(x_378, 1, x_376); +x_379 = l_Lean_Elab_Command_expandMacro___closed__1; +x_380 = lean_array_push(x_379, x_378); +x_381 = lean_array_push(x_375, x_44); +x_382 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_inc(x_381); +x_383 = lean_array_push(x_381, x_382); +x_384 = l_Nat_repr(x_11); +x_385 = l_Lean_numLitKind; +x_386 = l_Lean_instInhabitedSourceInfo___closed__1; +x_387 = l_Lean_Syntax_mkLit(x_385, x_384, x_386); +x_388 = lean_array_push(x_383, x_387); +x_389 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_390 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_390, 0, x_389); +lean_ctor_set(x_390, 1, x_388); +x_391 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_392 = lean_array_push(x_391, x_390); +x_393 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_394 = lean_array_push(x_392, x_393); +x_395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_395, 0, x_377); +lean_ctor_set(x_395, 1, x_394); +x_396 = lean_array_push(x_380, x_395); +x_397 = l_Array_appendCore___rarg(x_375, x_30); lean_dec(x_30); -x_396 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_396, 0, x_375); -lean_ctor_set(x_396, 1, x_395); -x_397 = lean_array_push(x_394, x_396); -x_398 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; -x_399 = lean_array_push(x_397, x_398); -x_400 = lean_array_push(x_399, x_18); -x_401 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_402 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_402, 0, x_401); -lean_ctor_set(x_402, 1, x_400); -x_403 = lean_array_push(x_373, x_402); -x_404 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_368); -lean_inc(x_372); -x_405 = l_Lean_addMacroScope(x_372, x_404, x_368); -x_406 = lean_box(0); -x_407 = l_Lean_Elab_Command_expandElab___closed__25; -x_408 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_408, 0, x_384); -lean_ctor_set(x_408, 1, x_407); -lean_ctor_set(x_408, 2, x_405); -lean_ctor_set(x_408, 3, x_406); -x_409 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_410 = lean_array_push(x_409, x_408); -x_411 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_411, 0, x_375); -lean_ctor_set(x_411, 1, x_379); -x_412 = lean_array_push(x_410, x_411); -x_413 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_414 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_414, 0, x_413); -lean_ctor_set(x_414, 1, x_412); -x_415 = lean_array_push(x_373, x_414); +x_398 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_398, 0, x_377); +lean_ctor_set(x_398, 1, x_397); +x_399 = lean_array_push(x_396, x_398); +x_400 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +x_401 = lean_array_push(x_399, x_400); +x_402 = lean_array_push(x_401, x_18); +x_403 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_404 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_404, 0, x_403); +lean_ctor_set(x_404, 1, x_402); +x_405 = lean_array_push(x_375, x_404); +x_406 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; +lean_inc(x_370); +lean_inc(x_374); +x_407 = l_Lean_addMacroScope(x_374, x_406, x_370); +x_408 = lean_box(0); +x_409 = l_Lean_Elab_Command_expandElab___closed__25; +x_410 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_410, 0, x_386); +lean_ctor_set(x_410, 1, x_409); +lean_ctor_set(x_410, 2, x_407); +lean_ctor_set(x_410, 3, x_408); +x_411 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_412 = lean_array_push(x_411, x_410); +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_377); +lean_ctor_set(x_413, 1, x_381); +x_414 = lean_array_push(x_412, x_413); +x_415 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; x_416 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_416, 0, x_375); -lean_ctor_set(x_416, 1, x_415); -x_417 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_418 = lean_array_push(x_417, x_416); -x_419 = lean_array_push(x_418, x_391); -x_420 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_421 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_421, 0, x_420); -lean_ctor_set(x_421, 1, x_419); -x_422 = lean_array_push(x_373, x_421); +lean_ctor_set(x_416, 0, x_415); +lean_ctor_set(x_416, 1, x_414); +x_417 = lean_array_push(x_375, x_416); +x_418 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_418, 0, x_377); +lean_ctor_set(x_418, 1, x_417); +x_419 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_420 = lean_array_push(x_419, x_418); +x_421 = lean_array_push(x_420, x_393); +x_422 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; x_423 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_423, 0, x_375); -lean_ctor_set(x_423, 1, x_422); -x_424 = lean_array_push(x_409, x_423); -x_425 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_426 = lean_array_push(x_424, x_425); +lean_ctor_set(x_423, 0, x_422); +lean_ctor_set(x_423, 1, x_421); +x_424 = lean_array_push(x_375, x_423); +x_425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_425, 0, x_377); +lean_ctor_set(x_425, 1, x_424); +x_426 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; x_427 = lean_array_push(x_426, x_425); -x_428 = lean_array_push(x_427, x_425); -x_429 = lean_array_push(x_428, x_425); -x_430 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_431 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_431, 0, x_430); -lean_ctor_set(x_431, 1, x_429); -x_432 = lean_array_push(x_373, x_431); -x_433 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_368); -lean_inc(x_372); -x_434 = l_Lean_addMacroScope(x_372, x_433, x_368); -x_435 = l_Lean_Elab_Command_expandElab___closed__7; -x_436 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_436, 0, x_384); -lean_ctor_set(x_436, 1, x_435); -lean_ctor_set(x_436, 2, x_434); -lean_ctor_set(x_436, 3, x_406); -x_437 = lean_array_push(x_373, x_436); -x_438 = lean_array_push(x_437, x_425); -x_439 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_440 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_440, 0, x_439); -lean_ctor_set(x_440, 1, x_438); -x_441 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_442 = lean_array_push(x_441, x_440); -x_443 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_368); -lean_inc(x_372); -x_444 = l_Lean_addMacroScope(x_372, x_443, x_368); -x_445 = l_Lean_Elab_Command_expandElab___closed__28; -x_446 = l_Lean_Elab_Command_expandElab___closed__30; -x_447 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_447, 0, x_384); -lean_ctor_set(x_447, 1, x_445); -lean_ctor_set(x_447, 2, x_444); -lean_ctor_set(x_447, 3, x_446); -x_448 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_449 = lean_array_push(x_448, x_447); -x_450 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_451 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_451, 0, x_450); -lean_ctor_set(x_451, 1, x_449); -x_452 = lean_array_push(x_373, x_451); -x_453 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_453, 0, x_375); -lean_ctor_set(x_453, 1, x_452); -x_454 = lean_array_push(x_409, x_453); -x_455 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_428 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_429 = lean_array_push(x_427, x_428); +x_430 = lean_array_push(x_429, x_428); +x_431 = lean_array_push(x_430, x_428); +x_432 = lean_array_push(x_431, x_428); +x_433 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_434 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_434, 0, x_433); +lean_ctor_set(x_434, 1, x_432); +x_435 = lean_array_push(x_375, x_434); +x_436 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_370); +lean_inc(x_374); +x_437 = l_Lean_addMacroScope(x_374, x_436, x_370); +x_438 = l_Lean_Elab_Command_expandElab___closed__7; +x_439 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_439, 0, x_386); +lean_ctor_set(x_439, 1, x_438); +lean_ctor_set(x_439, 2, x_437); +lean_ctor_set(x_439, 3, x_408); +x_440 = lean_array_push(x_375, x_439); +x_441 = lean_array_push(x_440, x_428); +x_442 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_443, 0, x_442); +lean_ctor_set(x_443, 1, x_441); +x_444 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_445 = lean_array_push(x_444, x_443); +x_446 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; +lean_inc(x_370); +lean_inc(x_374); +x_447 = l_Lean_addMacroScope(x_374, x_446, x_370); +x_448 = l_Lean_Elab_Command_expandElab___closed__28; +x_449 = l_Lean_Elab_Command_expandElab___closed__30; +x_450 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_450, 0, x_386); +lean_ctor_set(x_450, 1, x_448); +lean_ctor_set(x_450, 2, x_447); +lean_ctor_set(x_450, 3, x_449); +x_451 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_452 = lean_array_push(x_451, x_450); +x_453 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_454 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_454, 0, x_453); +lean_ctor_set(x_454, 1, x_452); +x_455 = lean_array_push(x_375, x_454); x_456 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_456, 0, x_455); -lean_ctor_set(x_456, 1, x_454); -x_457 = lean_array_push(x_442, x_456); -x_458 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_368); -lean_inc(x_372); -x_459 = l_Lean_addMacroScope(x_372, x_458, x_368); -x_460 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_461 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_461, 0, x_384); -lean_ctor_set(x_461, 1, x_460); -lean_ctor_set(x_461, 2, x_459); -lean_ctor_set(x_461, 3, x_406); -lean_inc(x_461); -x_462 = lean_array_push(x_373, x_461); -x_463 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_463, 0, x_375); -lean_ctor_set(x_463, 1, x_462); -x_464 = lean_array_push(x_373, x_463); -x_465 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_466 = lean_array_push(x_464, x_465); -x_467 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_468 = lean_array_push(x_467, x_461); -x_469 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_470 = lean_array_push(x_468, x_469); -x_471 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_472 = lean_array_push(x_471, x_43); -x_473 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_474 = lean_array_push(x_472, x_473); -x_475 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_476 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_476, 0, x_475); -lean_ctor_set(x_476, 1, x_474); -x_477 = lean_array_push(x_373, x_476); -x_478 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_478, 0, x_375); -lean_ctor_set(x_478, 1, x_477); -x_479 = lean_array_push(x_373, x_478); -x_480 = lean_array_push(x_479, x_465); -x_481 = lean_array_push(x_480, x_22); -x_482 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_483 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_483, 0, x_482); -lean_ctor_set(x_483, 1, x_481); -x_484 = lean_array_push(x_373, x_483); -x_485 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_486 = lean_array_push(x_484, x_485); -x_487 = l_Lean_Elab_Command_expandElab___closed__20; -x_488 = l_Lean_addMacroScope(x_372, x_487, x_368); -x_489 = l_Lean_Elab_Command_expandElab___closed__19; -x_490 = l_Lean_Elab_Command_expandElab___closed__23; -x_491 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_491, 0, x_384); -lean_ctor_set(x_491, 1, x_489); -lean_ctor_set(x_491, 2, x_488); -lean_ctor_set(x_491, 3, x_490); -x_492 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_493 = lean_array_push(x_492, x_491); -x_494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_494, 0, x_482); -lean_ctor_set(x_494, 1, x_493); -x_495 = lean_array_push(x_486, x_494); -x_496 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_496, 0, x_375); -lean_ctor_set(x_496, 1, x_495); -x_497 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_498 = lean_array_push(x_497, x_496); -x_499 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_500 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_500, 0, x_499); -lean_ctor_set(x_500, 1, x_498); -x_501 = lean_array_push(x_470, x_500); -x_502 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_ctor_set(x_456, 0, x_377); +lean_ctor_set(x_456, 1, x_455); +x_457 = lean_array_push(x_426, x_456); +x_458 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_459, 0, x_458); +lean_ctor_set(x_459, 1, x_457); +x_460 = lean_array_push(x_445, x_459); +x_461 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_370); +lean_inc(x_374); +x_462 = l_Lean_addMacroScope(x_374, x_461, x_370); +x_463 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_464 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_464, 0, x_386); +lean_ctor_set(x_464, 1, x_463); +lean_ctor_set(x_464, 2, x_462); +lean_ctor_set(x_464, 3, x_408); +lean_inc(x_464); +x_465 = lean_array_push(x_375, x_464); +x_466 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_466, 0, x_377); +lean_ctor_set(x_466, 1, x_465); +x_467 = lean_array_push(x_375, x_466); +x_468 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_469 = lean_array_push(x_467, x_468); +x_470 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_471 = lean_array_push(x_470, x_464); +x_472 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_473 = lean_array_push(x_471, x_472); +x_474 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_475 = lean_array_push(x_474, x_43); +x_476 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_477 = lean_array_push(x_475, x_476); +x_478 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_479, 0, x_478); +lean_ctor_set(x_479, 1, x_477); +x_480 = lean_array_push(x_375, x_479); +x_481 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_481, 0, x_377); +lean_ctor_set(x_481, 1, x_480); +x_482 = lean_array_push(x_375, x_481); +x_483 = lean_array_push(x_482, x_468); +x_484 = lean_array_push(x_483, x_22); +x_485 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_486, 0, x_485); +lean_ctor_set(x_486, 1, x_484); +x_487 = lean_array_push(x_375, x_486); +x_488 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_489 = lean_array_push(x_487, x_488); +x_490 = l_Lean_Elab_Command_expandElab___closed__20; +x_491 = l_Lean_addMacroScope(x_374, x_490, x_370); +x_492 = l_Lean_Elab_Command_expandElab___closed__19; +x_493 = l_Lean_Elab_Command_expandElab___closed__23; +x_494 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_494, 0, x_386); +lean_ctor_set(x_494, 1, x_492); +lean_ctor_set(x_494, 2, x_491); +lean_ctor_set(x_494, 3, x_493); +x_495 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_496 = lean_array_push(x_495, x_494); +x_497 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_497, 0, x_485); +lean_ctor_set(x_497, 1, x_496); +x_498 = lean_array_push(x_489, x_497); +x_499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_499, 0, x_377); +lean_ctor_set(x_499, 1, x_498); +x_500 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_501 = lean_array_push(x_500, x_499); +x_502 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; x_503 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_503, 0, x_502); lean_ctor_set(x_503, 1, x_501); -x_504 = lean_array_push(x_466, x_503); -x_505 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_504 = lean_array_push(x_473, x_503); +x_505 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_506 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_506, 0, x_505); lean_ctor_set(x_506, 1, x_504); -x_507 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_508 = lean_array_push(x_507, x_506); -x_509 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_510 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_510, 0, x_509); -lean_ctor_set(x_510, 1, x_508); -x_511 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_512 = lean_array_push(x_511, x_510); -x_513 = lean_array_push(x_512, x_425); -x_514 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_515 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_515, 0, x_514); -lean_ctor_set(x_515, 1, x_513); -x_516 = lean_array_push(x_457, x_515); -x_517 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_507 = lean_array_push(x_469, x_506); +x_508 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_511 = lean_array_push(x_510, x_509); +x_512 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_513 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_513, 0, x_512); +lean_ctor_set(x_513, 1, x_511); +x_514 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_515 = lean_array_push(x_514, x_513); +x_516 = lean_array_push(x_515, x_428); +x_517 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; 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 = lean_array_push(x_432, x_518); -x_520 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_519 = lean_array_push(x_460, x_518); +x_520 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; x_521 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_521, 0, x_520); lean_ctor_set(x_521, 1, x_519); -x_522 = lean_array_push(x_403, x_521); -x_523 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_523, 0, x_375); -lean_ctor_set(x_523, 1, x_522); -lean_ctor_set(x_370, 0, x_523); -return x_370; +x_522 = lean_array_push(x_435, x_521); +x_523 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_524 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_524, 0, x_523); +lean_ctor_set(x_524, 1, x_522); +x_525 = lean_array_push(x_405, x_524); +x_526 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_526, 0, x_377); +lean_ctor_set(x_526, 1, x_525); +lean_ctor_set(x_372, 0, x_526); +return x_372; } else { -lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; -x_524 = lean_ctor_get(x_370, 0); -x_525 = lean_ctor_get(x_370, 1); -lean_inc(x_525); -lean_inc(x_524); -lean_dec(x_370); -x_526 = l_Array_empty___closed__1; -x_527 = l_Array_appendCore___rarg(x_526, x_8); +lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; +x_527 = lean_ctor_get(x_372, 0); +x_528 = lean_ctor_get(x_372, 1); +lean_inc(x_528); +lean_inc(x_527); +lean_dec(x_372); +x_529 = l_Array_empty___closed__1; +x_530 = l_Array_appendCore___rarg(x_529, x_8); lean_dec(x_8); -x_528 = l_Lean_nullKind___closed__2; -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 = l_Lean_Elab_Command_expandMacro___closed__1; -x_531 = lean_array_push(x_530, x_529); -x_532 = lean_array_push(x_526, x_44); -x_533 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; -lean_inc(x_532); -x_534 = lean_array_push(x_532, x_533); -x_535 = l_Nat_repr(x_11); -x_536 = l_Lean_numLitKind; -x_537 = l_Lean_instInhabitedSourceInfo___closed__1; -x_538 = l_Lean_Syntax_mkLit(x_536, x_535, x_537); -x_539 = lean_array_push(x_534, x_538); -x_540 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_541 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_541, 0, x_540); -lean_ctor_set(x_541, 1, x_539); -x_542 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_543 = lean_array_push(x_542, x_541); -x_544 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_545 = lean_array_push(x_543, x_544); -x_546 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_546, 0, x_528); -lean_ctor_set(x_546, 1, x_545); -x_547 = lean_array_push(x_531, x_546); -x_548 = l_Array_appendCore___rarg(x_526, x_30); -lean_dec(x_30); +x_531 = l_Lean_nullKind___closed__2; +x_532 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_532, 0, x_531); +lean_ctor_set(x_532, 1, x_530); +x_533 = l_Lean_Elab_Command_expandMacro___closed__1; +x_534 = lean_array_push(x_533, x_532); +x_535 = lean_array_push(x_529, x_44); +x_536 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_inc(x_535); +x_537 = lean_array_push(x_535, x_536); +x_538 = l_Nat_repr(x_11); +x_539 = l_Lean_numLitKind; +x_540 = l_Lean_instInhabitedSourceInfo___closed__1; +x_541 = l_Lean_Syntax_mkLit(x_539, x_538, x_540); +x_542 = lean_array_push(x_537, x_541); +x_543 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +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_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_546 = lean_array_push(x_545, x_544); +x_547 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_548 = lean_array_push(x_546, x_547); x_549 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_549, 0, x_528); +lean_ctor_set(x_549, 0, x_531); lean_ctor_set(x_549, 1, x_548); -x_550 = lean_array_push(x_547, x_549); -x_551 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; -x_552 = lean_array_push(x_550, x_551); -x_553 = lean_array_push(x_552, x_18); -x_554 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_555 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_555, 0, x_554); -lean_ctor_set(x_555, 1, x_553); -x_556 = lean_array_push(x_526, x_555); -x_557 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_368); -lean_inc(x_524); -x_558 = l_Lean_addMacroScope(x_524, x_557, x_368); -x_559 = lean_box(0); -x_560 = l_Lean_Elab_Command_expandElab___closed__25; -x_561 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_561, 0, x_537); -lean_ctor_set(x_561, 1, x_560); -lean_ctor_set(x_561, 2, x_558); -lean_ctor_set(x_561, 3, x_559); -x_562 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_563 = lean_array_push(x_562, x_561); -x_564 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_564, 0, x_528); -lean_ctor_set(x_564, 1, x_532); -x_565 = lean_array_push(x_563, x_564); -x_566 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_550 = lean_array_push(x_534, x_549); +x_551 = l_Array_appendCore___rarg(x_529, x_30); +lean_dec(x_30); +x_552 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_552, 0, x_531); +lean_ctor_set(x_552, 1, x_551); +x_553 = lean_array_push(x_550, x_552); +x_554 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +x_555 = lean_array_push(x_553, x_554); +x_556 = lean_array_push(x_555, x_18); +x_557 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_558, 0, x_557); +lean_ctor_set(x_558, 1, x_556); +x_559 = lean_array_push(x_529, x_558); +x_560 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; +lean_inc(x_370); +lean_inc(x_527); +x_561 = l_Lean_addMacroScope(x_527, x_560, x_370); +x_562 = lean_box(0); +x_563 = l_Lean_Elab_Command_expandElab___closed__25; +x_564 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_564, 0, x_540); +lean_ctor_set(x_564, 1, x_563); +lean_ctor_set(x_564, 2, x_561); +lean_ctor_set(x_564, 3, x_562); +x_565 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_566 = lean_array_push(x_565, x_564); x_567 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_567, 0, x_566); -lean_ctor_set(x_567, 1, x_565); -x_568 = lean_array_push(x_526, x_567); -x_569 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_569, 0, x_528); -lean_ctor_set(x_569, 1, x_568); -x_570 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_571 = lean_array_push(x_570, x_569); -x_572 = lean_array_push(x_571, x_544); -x_573 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_574 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_574, 0, x_573); -lean_ctor_set(x_574, 1, x_572); -x_575 = lean_array_push(x_526, x_574); -x_576 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_576, 0, x_528); -lean_ctor_set(x_576, 1, x_575); -x_577 = lean_array_push(x_562, x_576); -x_578 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_579 = lean_array_push(x_577, x_578); -x_580 = lean_array_push(x_579, x_578); -x_581 = lean_array_push(x_580, x_578); -x_582 = lean_array_push(x_581, x_578); -x_583 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -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_526, x_584); -x_586 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_368); -lean_inc(x_524); -x_587 = l_Lean_addMacroScope(x_524, x_586, x_368); -x_588 = l_Lean_Elab_Command_expandElab___closed__7; -x_589 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_589, 0, x_537); -lean_ctor_set(x_589, 1, x_588); -lean_ctor_set(x_589, 2, x_587); -lean_ctor_set(x_589, 3, x_559); -x_590 = lean_array_push(x_526, x_589); -x_591 = lean_array_push(x_590, x_578); -x_592 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_593 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_593, 0, x_592); -lean_ctor_set(x_593, 1, x_591); -x_594 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_595 = lean_array_push(x_594, x_593); -x_596 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_368); -lean_inc(x_524); -x_597 = l_Lean_addMacroScope(x_524, x_596, x_368); -x_598 = l_Lean_Elab_Command_expandElab___closed__28; -x_599 = l_Lean_Elab_Command_expandElab___closed__30; -x_600 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_600, 0, x_537); -lean_ctor_set(x_600, 1, x_598); -lean_ctor_set(x_600, 2, x_597); -lean_ctor_set(x_600, 3, x_599); -x_601 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_602 = lean_array_push(x_601, x_600); -x_603 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_604 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_604, 0, x_603); +lean_ctor_set(x_567, 0, x_531); +lean_ctor_set(x_567, 1, x_535); +x_568 = lean_array_push(x_566, x_567); +x_569 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +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_529, x_570); +x_572 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_572, 0, x_531); +lean_ctor_set(x_572, 1, x_571); +x_573 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_574 = lean_array_push(x_573, x_572); +x_575 = lean_array_push(x_574, x_547); +x_576 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_577 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_577, 0, x_576); +lean_ctor_set(x_577, 1, x_575); +x_578 = lean_array_push(x_529, x_577); +x_579 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_579, 0, x_531); +lean_ctor_set(x_579, 1, x_578); +x_580 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_581 = lean_array_push(x_580, x_579); +x_582 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_583 = lean_array_push(x_581, x_582); +x_584 = lean_array_push(x_583, x_582); +x_585 = lean_array_push(x_584, x_582); +x_586 = lean_array_push(x_585, x_582); +x_587 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_529, x_588); +x_590 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_370); +lean_inc(x_527); +x_591 = l_Lean_addMacroScope(x_527, x_590, x_370); +x_592 = l_Lean_Elab_Command_expandElab___closed__7; +x_593 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_593, 0, x_540); +lean_ctor_set(x_593, 1, x_592); +lean_ctor_set(x_593, 2, x_591); +lean_ctor_set(x_593, 3, x_562); +x_594 = lean_array_push(x_529, x_593); +x_595 = lean_array_push(x_594, x_582); +x_596 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_597 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_597, 0, x_596); +lean_ctor_set(x_597, 1, x_595); +x_598 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_599 = lean_array_push(x_598, x_597); +x_600 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; +lean_inc(x_370); +lean_inc(x_527); +x_601 = l_Lean_addMacroScope(x_527, x_600, x_370); +x_602 = l_Lean_Elab_Command_expandElab___closed__28; +x_603 = l_Lean_Elab_Command_expandElab___closed__30; +x_604 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_604, 0, x_540); lean_ctor_set(x_604, 1, x_602); -x_605 = lean_array_push(x_526, x_604); -x_606 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_606, 0, x_528); -lean_ctor_set(x_606, 1, x_605); -x_607 = lean_array_push(x_562, x_606); -x_608 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_609 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_609, 0, x_608); -lean_ctor_set(x_609, 1, x_607); -x_610 = lean_array_push(x_595, x_609); -x_611 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_368); -lean_inc(x_524); -x_612 = l_Lean_addMacroScope(x_524, x_611, x_368); -x_613 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_614 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_614, 0, x_537); -lean_ctor_set(x_614, 1, x_613); -lean_ctor_set(x_614, 2, x_612); -lean_ctor_set(x_614, 3, x_559); -lean_inc(x_614); -x_615 = lean_array_push(x_526, x_614); -x_616 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_616, 0, x_528); -lean_ctor_set(x_616, 1, x_615); -x_617 = lean_array_push(x_526, x_616); -x_618 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_619 = lean_array_push(x_617, x_618); -x_620 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_621 = lean_array_push(x_620, x_614); -x_622 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +lean_ctor_set(x_604, 2, x_601); +lean_ctor_set(x_604, 3, x_603); +x_605 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_606 = lean_array_push(x_605, x_604); +x_607 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_608 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_608, 0, x_607); +lean_ctor_set(x_608, 1, x_606); +x_609 = lean_array_push(x_529, x_608); +x_610 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_610, 0, x_531); +lean_ctor_set(x_610, 1, x_609); +x_611 = lean_array_push(x_580, x_610); +x_612 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_613 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_613, 0, x_612); +lean_ctor_set(x_613, 1, x_611); +x_614 = lean_array_push(x_599, x_613); +x_615 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_370); +lean_inc(x_527); +x_616 = l_Lean_addMacroScope(x_527, x_615, x_370); +x_617 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_618 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_618, 0, x_540); +lean_ctor_set(x_618, 1, x_617); +lean_ctor_set(x_618, 2, x_616); +lean_ctor_set(x_618, 3, x_562); +lean_inc(x_618); +x_619 = lean_array_push(x_529, x_618); +x_620 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_620, 0, x_531); +lean_ctor_set(x_620, 1, x_619); +x_621 = lean_array_push(x_529, x_620); +x_622 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_623 = lean_array_push(x_621, x_622); -x_624 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_625 = lean_array_push(x_624, x_43); -x_626 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_624 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_625 = lean_array_push(x_624, x_618); +x_626 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_627 = lean_array_push(x_625, x_626); -x_628 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_629 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_629, 0, x_628); -lean_ctor_set(x_629, 1, x_627); -x_630 = lean_array_push(x_526, x_629); -x_631 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_631, 0, x_528); -lean_ctor_set(x_631, 1, x_630); -x_632 = lean_array_push(x_526, x_631); -x_633 = lean_array_push(x_632, x_618); -x_634 = lean_array_push(x_633, x_22); -x_635 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_636 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_636, 0, x_635); -lean_ctor_set(x_636, 1, x_634); -x_637 = lean_array_push(x_526, x_636); -x_638 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_639 = lean_array_push(x_637, x_638); -x_640 = l_Lean_Elab_Command_expandElab___closed__20; -x_641 = l_Lean_addMacroScope(x_524, x_640, x_368); -x_642 = l_Lean_Elab_Command_expandElab___closed__19; -x_643 = l_Lean_Elab_Command_expandElab___closed__23; -x_644 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_644, 0, x_537); -lean_ctor_set(x_644, 1, x_642); -lean_ctor_set(x_644, 2, x_641); -lean_ctor_set(x_644, 3, x_643); -x_645 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_646 = lean_array_push(x_645, x_644); -x_647 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_647, 0, x_635); -lean_ctor_set(x_647, 1, x_646); -x_648 = lean_array_push(x_639, x_647); -x_649 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_649, 0, x_528); -lean_ctor_set(x_649, 1, x_648); -x_650 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_651 = lean_array_push(x_650, x_649); -x_652 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_628 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_629 = lean_array_push(x_628, x_43); +x_630 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_631 = lean_array_push(x_629, x_630); +x_632 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_633 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_633, 0, x_632); +lean_ctor_set(x_633, 1, x_631); +x_634 = lean_array_push(x_529, x_633); +x_635 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_635, 0, x_531); +lean_ctor_set(x_635, 1, x_634); +x_636 = lean_array_push(x_529, x_635); +x_637 = lean_array_push(x_636, x_622); +x_638 = lean_array_push(x_637, x_22); +x_639 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_640 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_640, 0, x_639); +lean_ctor_set(x_640, 1, x_638); +x_641 = lean_array_push(x_529, x_640); +x_642 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_643 = lean_array_push(x_641, x_642); +x_644 = l_Lean_Elab_Command_expandElab___closed__20; +x_645 = l_Lean_addMacroScope(x_527, x_644, x_370); +x_646 = l_Lean_Elab_Command_expandElab___closed__19; +x_647 = l_Lean_Elab_Command_expandElab___closed__23; +x_648 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_648, 0, x_540); +lean_ctor_set(x_648, 1, x_646); +lean_ctor_set(x_648, 2, x_645); +lean_ctor_set(x_648, 3, x_647); +x_649 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_650 = lean_array_push(x_649, x_648); +x_651 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_651, 0, x_639); +lean_ctor_set(x_651, 1, x_650); +x_652 = lean_array_push(x_643, x_651); x_653 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_653, 0, x_652); -lean_ctor_set(x_653, 1, x_651); -x_654 = lean_array_push(x_623, x_653); -x_655 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_656 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_656, 0, x_655); -lean_ctor_set(x_656, 1, x_654); -x_657 = lean_array_push(x_619, x_656); -x_658 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_659 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_659, 0, x_658); -lean_ctor_set(x_659, 1, x_657); -x_660 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_661 = lean_array_push(x_660, x_659); -x_662 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +lean_ctor_set(x_653, 0, x_531); +lean_ctor_set(x_653, 1, x_652); +x_654 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_655 = lean_array_push(x_654, x_653); +x_656 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_657 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_657, 0, x_656); +lean_ctor_set(x_657, 1, x_655); +x_658 = lean_array_push(x_627, x_657); +x_659 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_660 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_660, 0, x_659); +lean_ctor_set(x_660, 1, x_658); +x_661 = lean_array_push(x_623, x_660); +x_662 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; x_663 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_663, 0, x_662); lean_ctor_set(x_663, 1, x_661); -x_664 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_664 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; x_665 = lean_array_push(x_664, x_663); -x_666 = lean_array_push(x_665, x_578); -x_667 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_668 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_668, 0, x_667); -lean_ctor_set(x_668, 1, x_666); -x_669 = lean_array_push(x_610, x_668); -x_670 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -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_585, x_671); -x_673 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -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_556, x_674); -x_676 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_676, 0, x_528); -lean_ctor_set(x_676, 1, x_675); -x_677 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_677, 0, x_676); -lean_ctor_set(x_677, 1, x_525); -return x_677; +x_666 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_667 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_667, 0, x_666); +lean_ctor_set(x_667, 1, x_665); +x_668 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_669 = lean_array_push(x_668, x_667); +x_670 = lean_array_push(x_669, x_582); +x_671 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_672 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_672, 0, x_671); +lean_ctor_set(x_672, 1, x_670); +x_673 = lean_array_push(x_614, x_672); +x_674 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_675 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_675, 0, x_674); +lean_ctor_set(x_675, 1, x_673); +x_676 = lean_array_push(x_589, x_675); +x_677 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_678 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_678, 0, x_677); +lean_ctor_set(x_678, 1, x_676); +x_679 = lean_array_push(x_559, x_678); +x_680 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_680, 0, x_531); +lean_ctor_set(x_680, 1, x_679); +x_681 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_681, 0, x_680); +lean_ctor_set(x_681, 1, x_528); +return x_681; } } } else { -lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; uint8_t x_682; +lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; uint8_t x_686; lean_dec(x_23); -x_678 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); +x_682 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); lean_dec(x_3); -x_679 = lean_ctor_get(x_678, 0); -lean_inc(x_679); -x_680 = lean_ctor_get(x_678, 1); -lean_inc(x_680); -lean_dec(x_678); -x_681 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_680); -x_682 = !lean_is_exclusive(x_681); -if (x_682 == 0) +x_683 = lean_ctor_get(x_682, 0); +lean_inc(x_683); +x_684 = lean_ctor_get(x_682, 1); +lean_inc(x_684); +lean_dec(x_682); +x_685 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_684); +x_686 = !lean_is_exclusive(x_685); +if (x_686 == 0) { -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_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; -x_683 = lean_ctor_get(x_681, 0); -x_684 = l_Array_empty___closed__1; -x_685 = l_Array_appendCore___rarg(x_684, x_8); +lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; 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; +x_687 = lean_ctor_get(x_685, 0); +x_688 = l_Array_empty___closed__1; +x_689 = l_Array_appendCore___rarg(x_688, x_8); lean_dec(x_8); -x_686 = l_Lean_nullKind___closed__2; -x_687 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_687, 0, x_686); -lean_ctor_set(x_687, 1, x_685); -x_688 = l_Lean_Elab_Command_expandMacro___closed__1; -x_689 = lean_array_push(x_688, x_687); -x_690 = lean_array_push(x_684, x_44); -x_691 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; -lean_inc(x_690); -x_692 = lean_array_push(x_690, x_691); -x_693 = l_Nat_repr(x_11); -x_694 = l_Lean_numLitKind; -x_695 = l_Lean_instInhabitedSourceInfo___closed__1; -x_696 = l_Lean_Syntax_mkLit(x_694, x_693, x_695); -x_697 = lean_array_push(x_692, x_696); -x_698 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -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 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_701 = lean_array_push(x_700, x_699); -x_702 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_703 = lean_array_push(x_701, x_702); -x_704 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_704, 0, x_686); -lean_ctor_set(x_704, 1, x_703); -x_705 = lean_array_push(x_689, x_704); -x_706 = l_Array_appendCore___rarg(x_684, x_30); +x_690 = l_Lean_nullKind___closed__2; +x_691 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_691, 0, x_690); +lean_ctor_set(x_691, 1, x_689); +x_692 = l_Lean_Elab_Command_expandMacro___closed__1; +x_693 = lean_array_push(x_692, x_691); +x_694 = lean_array_push(x_688, x_44); +x_695 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_inc(x_694); +x_696 = lean_array_push(x_694, x_695); +x_697 = l_Nat_repr(x_11); +x_698 = l_Lean_numLitKind; +x_699 = l_Lean_instInhabitedSourceInfo___closed__1; +x_700 = l_Lean_Syntax_mkLit(x_698, x_697, x_699); +x_701 = lean_array_push(x_696, x_700); +x_702 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_703 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_703, 0, x_702); +lean_ctor_set(x_703, 1, x_701); +x_704 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_705 = lean_array_push(x_704, x_703); +x_706 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_707 = lean_array_push(x_705, x_706); +x_708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_708, 0, x_690); +lean_ctor_set(x_708, 1, x_707); +x_709 = lean_array_push(x_693, x_708); +x_710 = l_Array_appendCore___rarg(x_688, x_30); lean_dec(x_30); -x_707 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_707, 0, x_686); -lean_ctor_set(x_707, 1, x_706); -x_708 = lean_array_push(x_705, x_707); -x_709 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; -x_710 = lean_array_push(x_708, x_709); -x_711 = lean_array_push(x_710, x_18); -x_712 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_713 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_713, 0, x_712); -lean_ctor_set(x_713, 1, x_711); -x_714 = lean_array_push(x_684, x_713); -x_715 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_679); +x_711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_711, 0, x_690); +lean_ctor_set(x_711, 1, x_710); +x_712 = lean_array_push(x_709, x_711); +x_713 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +x_714 = lean_array_push(x_712, x_713); +x_715 = lean_array_push(x_714, x_18); +x_716 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +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_688, x_717); +x_719 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; lean_inc(x_683); -x_716 = l_Lean_addMacroScope(x_683, x_715, x_679); -x_717 = lean_box(0); -x_718 = l_Lean_Elab_Command_expandElab___closed__32; -x_719 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_719, 0, x_695); -lean_ctor_set(x_719, 1, x_718); -lean_ctor_set(x_719, 2, x_716); -lean_ctor_set(x_719, 3, x_717); -x_720 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_721 = lean_array_push(x_720, x_719); -x_722 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_722, 0, x_686); -lean_ctor_set(x_722, 1, x_690); -x_723 = lean_array_push(x_721, x_722); -x_724 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_725 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_725, 0, x_724); -lean_ctor_set(x_725, 1, x_723); -x_726 = lean_array_push(x_684, x_725); -x_727 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_727, 0, x_686); -lean_ctor_set(x_727, 1, x_726); -x_728 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_729 = lean_array_push(x_728, x_727); -x_730 = lean_array_push(x_729, x_702); -x_731 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_732 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_732, 0, x_731); -lean_ctor_set(x_732, 1, x_730); -x_733 = lean_array_push(x_684, x_732); -x_734 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_734, 0, x_686); -lean_ctor_set(x_734, 1, x_733); -x_735 = lean_array_push(x_720, x_734); -x_736 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_737 = lean_array_push(x_735, x_736); -x_738 = lean_array_push(x_737, x_736); -x_739 = lean_array_push(x_738, x_736); -x_740 = lean_array_push(x_739, x_736); -x_741 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -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 = lean_array_push(x_684, x_742); -x_744 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_679); +lean_inc(x_687); +x_720 = l_Lean_addMacroScope(x_687, x_719, x_683); +x_721 = lean_box(0); +x_722 = l_Lean_Elab_Command_expandElab___closed__32; +x_723 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_723, 0, x_699); +lean_ctor_set(x_723, 1, x_722); +lean_ctor_set(x_723, 2, x_720); +lean_ctor_set(x_723, 3, x_721); +x_724 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_725 = lean_array_push(x_724, x_723); +x_726 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_726, 0, x_690); +lean_ctor_set(x_726, 1, x_694); +x_727 = lean_array_push(x_725, x_726); +x_728 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_729 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_729, 0, x_728); +lean_ctor_set(x_729, 1, x_727); +x_730 = lean_array_push(x_688, x_729); +x_731 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_731, 0, x_690); +lean_ctor_set(x_731, 1, x_730); +x_732 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_733 = lean_array_push(x_732, x_731); +x_734 = lean_array_push(x_733, x_706); +x_735 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_736 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_736, 0, x_735); +lean_ctor_set(x_736, 1, x_734); +x_737 = lean_array_push(x_688, x_736); +x_738 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_738, 0, x_690); +lean_ctor_set(x_738, 1, x_737); +x_739 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_740 = lean_array_push(x_739, x_738); +x_741 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_742 = lean_array_push(x_740, x_741); +x_743 = lean_array_push(x_742, x_741); +x_744 = lean_array_push(x_743, x_741); +x_745 = lean_array_push(x_744, x_741); +x_746 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_747 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_747, 0, x_746); +lean_ctor_set(x_747, 1, x_745); +x_748 = lean_array_push(x_688, x_747); +x_749 = l_Lean_Elab_Command_expandElab___closed__8; lean_inc(x_683); -x_745 = l_Lean_addMacroScope(x_683, x_744, x_679); -x_746 = l_Lean_Elab_Command_expandElab___closed__7; -x_747 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_747, 0, x_695); -lean_ctor_set(x_747, 1, x_746); -lean_ctor_set(x_747, 2, x_745); -lean_ctor_set(x_747, 3, x_717); -x_748 = lean_array_push(x_684, x_747); -x_749 = lean_array_push(x_748, x_736); -x_750 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_751 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_751, 0, x_750); -lean_ctor_set(x_751, 1, x_749); -x_752 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_753 = lean_array_push(x_752, x_751); -x_754 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_679); +lean_inc(x_687); +x_750 = l_Lean_addMacroScope(x_687, x_749, x_683); +x_751 = l_Lean_Elab_Command_expandElab___closed__7; +x_752 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_752, 0, x_699); +lean_ctor_set(x_752, 1, x_751); +lean_ctor_set(x_752, 2, x_750); +lean_ctor_set(x_752, 3, x_721); +x_753 = lean_array_push(x_688, x_752); +x_754 = lean_array_push(x_753, x_741); +x_755 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_756 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_756, 0, x_755); +lean_ctor_set(x_756, 1, x_754); +x_757 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_758 = lean_array_push(x_757, x_756); +x_759 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; lean_inc(x_683); -x_755 = l_Lean_addMacroScope(x_683, x_754, x_679); -x_756 = l_Lean_Elab_Command_expandElab___closed__35; -x_757 = l_Lean_Elab_Command_expandElab___closed__37; -x_758 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_758, 0, x_695); -lean_ctor_set(x_758, 1, x_756); -lean_ctor_set(x_758, 2, x_755); -lean_ctor_set(x_758, 3, x_757); -x_759 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_760 = lean_array_push(x_759, x_758); -x_761 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_762 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_762, 0, x_761); -lean_ctor_set(x_762, 1, x_760); -x_763 = lean_array_push(x_684, x_762); -x_764 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_764, 0, x_686); -lean_ctor_set(x_764, 1, x_763); -x_765 = lean_array_push(x_720, x_764); -x_766 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +lean_inc(x_687); +x_760 = l_Lean_addMacroScope(x_687, x_759, x_683); +x_761 = l_Lean_Elab_Command_expandElab___closed__35; +x_762 = l_Lean_Elab_Command_expandElab___closed__37; +x_763 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_763, 0, x_699); +lean_ctor_set(x_763, 1, x_761); +lean_ctor_set(x_763, 2, x_760); +lean_ctor_set(x_763, 3, x_762); +x_764 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_765 = lean_array_push(x_764, x_763); +x_766 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_767 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_767, 0, x_766); lean_ctor_set(x_767, 1, x_765); -x_768 = lean_array_push(x_753, x_767); -x_769 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_679); +x_768 = lean_array_push(x_688, x_767); +x_769 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_769, 0, x_690); +lean_ctor_set(x_769, 1, x_768); +x_770 = lean_array_push(x_739, x_769); +x_771 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +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_758, x_772); +x_774 = l_stx___x3c_x7c_x3e_____closed__4; lean_inc(x_683); -x_770 = l_Lean_addMacroScope(x_683, x_769, x_679); -x_771 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_772 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_772, 0, x_695); -lean_ctor_set(x_772, 1, x_771); -lean_ctor_set(x_772, 2, x_770); -lean_ctor_set(x_772, 3, x_717); -lean_inc(x_772); -x_773 = lean_array_push(x_684, x_772); -x_774 = l_myMacro____x40_Init_Notation___hyg_11836____closed__17; -x_775 = lean_array_push(x_773, x_774); -x_776 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_776, 0, x_686); -lean_ctor_set(x_776, 1, x_775); -x_777 = lean_array_push(x_684, x_776); -x_778 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_779 = lean_array_push(x_777, x_778); -x_780 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_781 = lean_array_push(x_780, x_772); -x_782 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_783 = lean_array_push(x_781, x_782); -x_784 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_785 = lean_array_push(x_784, x_43); -x_786 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_787 = lean_array_push(x_785, x_786); -x_788 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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_684, x_789); -x_791 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_791, 0, x_686); -lean_ctor_set(x_791, 1, x_790); -x_792 = lean_array_push(x_684, x_791); -x_793 = lean_array_push(x_792, x_778); -x_794 = lean_array_push(x_793, x_22); -x_795 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +lean_inc(x_687); +x_775 = l_Lean_addMacroScope(x_687, x_774, x_683); +x_776 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_777 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_777, 0, x_699); +lean_ctor_set(x_777, 1, x_776); +lean_ctor_set(x_777, 2, x_775); +lean_ctor_set(x_777, 3, x_721); +lean_inc(x_777); +x_778 = lean_array_push(x_688, x_777); +x_779 = l_myMacro____x40_Init_Notation___hyg_11836____closed__17; +x_780 = lean_array_push(x_778, x_779); +x_781 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_781, 0, x_690); +lean_ctor_set(x_781, 1, x_780); +x_782 = lean_array_push(x_688, x_781); +x_783 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_784 = lean_array_push(x_782, x_783); +x_785 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_786 = lean_array_push(x_785, x_777); +x_787 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_788 = lean_array_push(x_786, x_787); +x_789 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_790 = lean_array_push(x_789, x_43); +x_791 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_792 = lean_array_push(x_790, x_791); +x_793 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_794 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_794, 0, x_793); +lean_ctor_set(x_794, 1, x_792); +x_795 = lean_array_push(x_688, x_794); 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_684, x_796); -x_798 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_799 = lean_array_push(x_797, x_798); -x_800 = l_Lean_Elab_Command_expandElab___closed__20; -x_801 = l_Lean_addMacroScope(x_683, x_800, x_679); -x_802 = l_Lean_Elab_Command_expandElab___closed__19; -x_803 = l_Lean_Elab_Command_expandElab___closed__23; -x_804 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_804, 0, x_695); -lean_ctor_set(x_804, 1, x_802); -lean_ctor_set(x_804, 2, x_801); -lean_ctor_set(x_804, 3, x_803); -x_805 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_806 = lean_array_push(x_805, x_804); -x_807 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_807, 0, x_795); -lean_ctor_set(x_807, 1, x_806); -x_808 = lean_array_push(x_799, x_807); -x_809 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_809, 0, x_686); -lean_ctor_set(x_809, 1, x_808); -x_810 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_ctor_set(x_796, 0, x_690); +lean_ctor_set(x_796, 1, x_795); +x_797 = lean_array_push(x_688, x_796); +x_798 = lean_array_push(x_797, x_783); +x_799 = lean_array_push(x_798, x_22); +x_800 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_801 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_801, 0, x_800); +lean_ctor_set(x_801, 1, x_799); +x_802 = lean_array_push(x_688, x_801); +x_803 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_804 = lean_array_push(x_802, x_803); +x_805 = l_Lean_Elab_Command_expandElab___closed__20; +x_806 = l_Lean_addMacroScope(x_687, x_805, x_683); +x_807 = l_Lean_Elab_Command_expandElab___closed__19; +x_808 = l_Lean_Elab_Command_expandElab___closed__23; +x_809 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_809, 0, x_699); +lean_ctor_set(x_809, 1, x_807); +lean_ctor_set(x_809, 2, x_806); +lean_ctor_set(x_809, 3, x_808); +x_810 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; x_811 = lean_array_push(x_810, x_809); -x_812 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_813 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_813, 0, x_812); -lean_ctor_set(x_813, 1, x_811); -x_814 = lean_array_push(x_783, x_813); -x_815 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_816 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_816, 0, x_815); -lean_ctor_set(x_816, 1, x_814); -x_817 = lean_array_push(x_779, x_816); -x_818 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_819 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_819, 0, x_818); -lean_ctor_set(x_819, 1, x_817); -x_820 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_821 = lean_array_push(x_820, x_819); -x_822 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_823 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_823, 0, x_822); -lean_ctor_set(x_823, 1, x_821); -x_824 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_825 = lean_array_push(x_824, x_823); -x_826 = lean_array_push(x_825, x_736); -x_827 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_812 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_812, 0, x_800); +lean_ctor_set(x_812, 1, x_811); +x_813 = lean_array_push(x_804, x_812); +x_814 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_814, 0, x_690); +lean_ctor_set(x_814, 1, x_813); +x_815 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_816 = lean_array_push(x_815, x_814); +x_817 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_818 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_818, 0, x_817); +lean_ctor_set(x_818, 1, x_816); +x_819 = lean_array_push(x_788, x_818); +x_820 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_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_784, x_821); +x_823 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_824 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_824, 0, x_823); +lean_ctor_set(x_824, 1, x_822); +x_825 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_826 = lean_array_push(x_825, x_824); +x_827 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; x_828 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_828, 0, x_827); lean_ctor_set(x_828, 1, x_826); -x_829 = lean_array_push(x_768, x_828); -x_830 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_831 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_831, 0, x_830); -lean_ctor_set(x_831, 1, x_829); -x_832 = lean_array_push(x_743, x_831); -x_833 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_834 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_834, 0, x_833); -lean_ctor_set(x_834, 1, x_832); -x_835 = lean_array_push(x_714, x_834); +x_829 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_830 = lean_array_push(x_829, x_828); +x_831 = lean_array_push(x_830, x_741); +x_832 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +x_833 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_833, 0, x_832); +lean_ctor_set(x_833, 1, x_831); +x_834 = lean_array_push(x_773, x_833); +x_835 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; x_836 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_836, 0, x_686); -lean_ctor_set(x_836, 1, x_835); -lean_ctor_set(x_681, 0, x_836); -return x_681; +lean_ctor_set(x_836, 0, x_835); +lean_ctor_set(x_836, 1, x_834); +x_837 = lean_array_push(x_748, x_836); +x_838 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_839, 0, x_838); +lean_ctor_set(x_839, 1, x_837); +x_840 = lean_array_push(x_718, x_839); +x_841 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_841, 0, x_690); +lean_ctor_set(x_841, 1, x_840); +lean_ctor_set(x_685, 0, x_841); +return x_685; } else { -lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_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; -x_837 = lean_ctor_get(x_681, 0); -x_838 = lean_ctor_get(x_681, 1); -lean_inc(x_838); -lean_inc(x_837); -lean_dec(x_681); -x_839 = l_Array_empty___closed__1; -x_840 = l_Array_appendCore___rarg(x_839, x_8); +lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_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; +x_842 = lean_ctor_get(x_685, 0); +x_843 = lean_ctor_get(x_685, 1); +lean_inc(x_843); +lean_inc(x_842); +lean_dec(x_685); +x_844 = l_Array_empty___closed__1; +x_845 = l_Array_appendCore___rarg(x_844, x_8); lean_dec(x_8); -x_841 = l_Lean_nullKind___closed__2; -x_842 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_842, 0, x_841); -lean_ctor_set(x_842, 1, x_840); -x_843 = l_Lean_Elab_Command_expandMacro___closed__1; -x_844 = lean_array_push(x_843, x_842); -x_845 = lean_array_push(x_839, x_44); -x_846 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; -lean_inc(x_845); -x_847 = lean_array_push(x_845, x_846); -x_848 = l_Nat_repr(x_11); -x_849 = l_Lean_numLitKind; -x_850 = l_Lean_instInhabitedSourceInfo___closed__1; -x_851 = l_Lean_Syntax_mkLit(x_849, x_848, x_850); -x_852 = lean_array_push(x_847, x_851); -x_853 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_854 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_854, 0, x_853); -lean_ctor_set(x_854, 1, x_852); -x_855 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_856 = lean_array_push(x_855, x_854); -x_857 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_858 = lean_array_push(x_856, x_857); +x_846 = l_Lean_nullKind___closed__2; +x_847 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_847, 0, x_846); +lean_ctor_set(x_847, 1, x_845); +x_848 = l_Lean_Elab_Command_expandMacro___closed__1; +x_849 = lean_array_push(x_848, x_847); +x_850 = lean_array_push(x_844, x_44); +x_851 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_inc(x_850); +x_852 = lean_array_push(x_850, x_851); +x_853 = l_Nat_repr(x_11); +x_854 = l_Lean_numLitKind; +x_855 = l_Lean_instInhabitedSourceInfo___closed__1; +x_856 = l_Lean_Syntax_mkLit(x_854, x_853, x_855); +x_857 = lean_array_push(x_852, x_856); +x_858 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; x_859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_859, 0, x_841); -lean_ctor_set(x_859, 1, x_858); -x_860 = lean_array_push(x_844, x_859); -x_861 = l_Array_appendCore___rarg(x_839, x_30); +lean_ctor_set(x_859, 0, x_858); +lean_ctor_set(x_859, 1, x_857); +x_860 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_861 = lean_array_push(x_860, x_859); +x_862 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_863 = lean_array_push(x_861, x_862); +x_864 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_864, 0, x_846); +lean_ctor_set(x_864, 1, x_863); +x_865 = lean_array_push(x_849, x_864); +x_866 = l_Array_appendCore___rarg(x_844, x_30); lean_dec(x_30); -x_862 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_862, 0, x_841); -lean_ctor_set(x_862, 1, x_861); -x_863 = lean_array_push(x_860, x_862); -x_864 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; -x_865 = lean_array_push(x_863, x_864); -x_866 = lean_array_push(x_865, x_18); -x_867 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -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_839, x_868); -x_870 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_679); -lean_inc(x_837); -x_871 = l_Lean_addMacroScope(x_837, x_870, x_679); -x_872 = lean_box(0); -x_873 = l_Lean_Elab_Command_expandElab___closed__32; -x_874 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_874, 0, x_850); -lean_ctor_set(x_874, 1, x_873); -lean_ctor_set(x_874, 2, x_871); -lean_ctor_set(x_874, 3, x_872); -x_875 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_876 = lean_array_push(x_875, x_874); -x_877 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_877, 0, x_841); -lean_ctor_set(x_877, 1, x_845); -x_878 = lean_array_push(x_876, x_877); -x_879 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_880 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_880, 0, x_879); -lean_ctor_set(x_880, 1, x_878); -x_881 = lean_array_push(x_839, x_880); +x_867 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_867, 0, x_846); +lean_ctor_set(x_867, 1, x_866); +x_868 = lean_array_push(x_865, x_867); +x_869 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +x_870 = lean_array_push(x_868, x_869); +x_871 = lean_array_push(x_870, x_18); +x_872 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_873 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_873, 0, x_872); +lean_ctor_set(x_873, 1, x_871); +x_874 = lean_array_push(x_844, x_873); +x_875 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_683); +lean_inc(x_842); +x_876 = l_Lean_addMacroScope(x_842, x_875, x_683); +x_877 = lean_box(0); +x_878 = l_Lean_Elab_Command_expandElab___closed__32; +x_879 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_879, 0, x_855); +lean_ctor_set(x_879, 1, x_878); +lean_ctor_set(x_879, 2, x_876); +lean_ctor_set(x_879, 3, x_877); +x_880 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_881 = lean_array_push(x_880, x_879); x_882 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_882, 0, x_841); -lean_ctor_set(x_882, 1, x_881); -x_883 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_884 = lean_array_push(x_883, x_882); -x_885 = lean_array_push(x_884, x_857); -x_886 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +lean_ctor_set(x_882, 0, x_846); +lean_ctor_set(x_882, 1, x_850); +x_883 = lean_array_push(x_881, x_882); +x_884 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +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_844, x_885); x_887 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_887, 0, x_886); -lean_ctor_set(x_887, 1, x_885); -x_888 = lean_array_push(x_839, x_887); -x_889 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_889, 0, x_841); -lean_ctor_set(x_889, 1, x_888); -x_890 = lean_array_push(x_875, x_889); -x_891 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_892 = lean_array_push(x_890, x_891); -x_893 = lean_array_push(x_892, x_891); -x_894 = lean_array_push(x_893, x_891); -x_895 = lean_array_push(x_894, x_891); -x_896 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_897 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_897, 0, x_896); -lean_ctor_set(x_897, 1, x_895); -x_898 = lean_array_push(x_839, x_897); -x_899 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_679); -lean_inc(x_837); -x_900 = l_Lean_addMacroScope(x_837, x_899, x_679); -x_901 = l_Lean_Elab_Command_expandElab___closed__7; -x_902 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_902, 0, x_850); -lean_ctor_set(x_902, 1, x_901); -lean_ctor_set(x_902, 2, x_900); -lean_ctor_set(x_902, 3, x_872); -x_903 = lean_array_push(x_839, x_902); -x_904 = lean_array_push(x_903, x_891); -x_905 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -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_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_908 = lean_array_push(x_907, x_906); -x_909 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_679); -lean_inc(x_837); -x_910 = l_Lean_addMacroScope(x_837, x_909, x_679); -x_911 = l_Lean_Elab_Command_expandElab___closed__35; -x_912 = l_Lean_Elab_Command_expandElab___closed__37; -x_913 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_913, 0, x_850); -lean_ctor_set(x_913, 1, x_911); -lean_ctor_set(x_913, 2, x_910); -lean_ctor_set(x_913, 3, x_912); -x_914 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_915 = lean_array_push(x_914, x_913); -x_916 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_917 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_917, 0, x_916); -lean_ctor_set(x_917, 1, x_915); -x_918 = lean_array_push(x_839, x_917); -x_919 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_919, 0, x_841); -lean_ctor_set(x_919, 1, x_918); -x_920 = lean_array_push(x_875, x_919); -x_921 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_922 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_922, 0, x_921); -lean_ctor_set(x_922, 1, x_920); -x_923 = lean_array_push(x_908, x_922); -x_924 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_679); -lean_inc(x_837); -x_925 = l_Lean_addMacroScope(x_837, x_924, x_679); -x_926 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_927 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_927, 0, x_850); -lean_ctor_set(x_927, 1, x_926); -lean_ctor_set(x_927, 2, x_925); -lean_ctor_set(x_927, 3, x_872); -lean_inc(x_927); -x_928 = lean_array_push(x_839, x_927); -x_929 = l_myMacro____x40_Init_Notation___hyg_11836____closed__17; -x_930 = lean_array_push(x_928, x_929); -x_931 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_931, 0, x_841); -lean_ctor_set(x_931, 1, x_930); -x_932 = lean_array_push(x_839, x_931); -x_933 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_934 = lean_array_push(x_932, x_933); -x_935 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_936 = lean_array_push(x_935, x_927); -x_937 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_938 = lean_array_push(x_936, x_937); -x_939 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_940 = lean_array_push(x_939, x_43); -x_941 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_942 = lean_array_push(x_940, x_941); -x_943 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_944 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_944, 0, x_943); -lean_ctor_set(x_944, 1, x_942); -x_945 = lean_array_push(x_839, x_944); -x_946 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_946, 0, x_841); -lean_ctor_set(x_946, 1, x_945); -x_947 = lean_array_push(x_839, x_946); -x_948 = lean_array_push(x_947, x_933); -x_949 = lean_array_push(x_948, x_22); -x_950 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_951 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_951, 0, x_950); -lean_ctor_set(x_951, 1, x_949); -x_952 = lean_array_push(x_839, x_951); -x_953 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_954 = lean_array_push(x_952, x_953); -x_955 = l_Lean_Elab_Command_expandElab___closed__20; -x_956 = l_Lean_addMacroScope(x_837, x_955, x_679); -x_957 = l_Lean_Elab_Command_expandElab___closed__19; -x_958 = l_Lean_Elab_Command_expandElab___closed__23; -x_959 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_959, 0, x_850); -lean_ctor_set(x_959, 1, x_957); -lean_ctor_set(x_959, 2, x_956); -lean_ctor_set(x_959, 3, x_958); -x_960 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_961 = lean_array_push(x_960, x_959); -x_962 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_962, 0, x_950); -lean_ctor_set(x_962, 1, x_961); -x_963 = lean_array_push(x_954, x_962); -x_964 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_964, 0, x_841); -lean_ctor_set(x_964, 1, x_963); -x_965 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_966 = lean_array_push(x_965, x_964); -x_967 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +lean_ctor_set(x_887, 0, x_846); +lean_ctor_set(x_887, 1, x_886); +x_888 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_889 = lean_array_push(x_888, x_887); +x_890 = lean_array_push(x_889, x_862); +x_891 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_892 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_892, 0, x_891); +lean_ctor_set(x_892, 1, x_890); +x_893 = lean_array_push(x_844, x_892); +x_894 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_894, 0, x_846); +lean_ctor_set(x_894, 1, x_893); +x_895 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_896 = lean_array_push(x_895, x_894); +x_897 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_898 = lean_array_push(x_896, x_897); +x_899 = lean_array_push(x_898, x_897); +x_900 = lean_array_push(x_899, x_897); +x_901 = lean_array_push(x_900, x_897); +x_902 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_903 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_903, 0, x_902); +lean_ctor_set(x_903, 1, x_901); +x_904 = lean_array_push(x_844, x_903); +x_905 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_683); +lean_inc(x_842); +x_906 = l_Lean_addMacroScope(x_842, x_905, x_683); +x_907 = l_Lean_Elab_Command_expandElab___closed__7; +x_908 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_908, 0, x_855); +lean_ctor_set(x_908, 1, x_907); +lean_ctor_set(x_908, 2, x_906); +lean_ctor_set(x_908, 3, x_877); +x_909 = lean_array_push(x_844, x_908); +x_910 = lean_array_push(x_909, x_897); +x_911 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_912 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_912, 0, x_911); +lean_ctor_set(x_912, 1, x_910); +x_913 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_914 = lean_array_push(x_913, x_912); +x_915 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_683); +lean_inc(x_842); +x_916 = l_Lean_addMacroScope(x_842, x_915, x_683); +x_917 = l_Lean_Elab_Command_expandElab___closed__35; +x_918 = l_Lean_Elab_Command_expandElab___closed__37; +x_919 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_919, 0, x_855); +lean_ctor_set(x_919, 1, x_917); +lean_ctor_set(x_919, 2, x_916); +lean_ctor_set(x_919, 3, x_918); +x_920 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_921 = lean_array_push(x_920, x_919); +x_922 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_923 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_923, 0, x_922); +lean_ctor_set(x_923, 1, x_921); +x_924 = lean_array_push(x_844, x_923); +x_925 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_925, 0, x_846); +lean_ctor_set(x_925, 1, x_924); +x_926 = lean_array_push(x_895, x_925); +x_927 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_928 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_928, 0, x_927); +lean_ctor_set(x_928, 1, x_926); +x_929 = lean_array_push(x_914, x_928); +x_930 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_683); +lean_inc(x_842); +x_931 = l_Lean_addMacroScope(x_842, x_930, x_683); +x_932 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_933 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_933, 0, x_855); +lean_ctor_set(x_933, 1, x_932); +lean_ctor_set(x_933, 2, x_931); +lean_ctor_set(x_933, 3, x_877); +lean_inc(x_933); +x_934 = lean_array_push(x_844, x_933); +x_935 = l_myMacro____x40_Init_Notation___hyg_11836____closed__17; +x_936 = lean_array_push(x_934, x_935); +x_937 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_937, 0, x_846); +lean_ctor_set(x_937, 1, x_936); +x_938 = lean_array_push(x_844, x_937); +x_939 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_940 = lean_array_push(x_938, x_939); +x_941 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_942 = lean_array_push(x_941, x_933); +x_943 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_944 = lean_array_push(x_942, x_943); +x_945 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_946 = lean_array_push(x_945, x_43); +x_947 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_948 = lean_array_push(x_946, x_947); +x_949 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_950 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_950, 0, x_949); +lean_ctor_set(x_950, 1, x_948); +x_951 = lean_array_push(x_844, x_950); +x_952 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_952, 0, x_846); +lean_ctor_set(x_952, 1, x_951); +x_953 = lean_array_push(x_844, x_952); +x_954 = lean_array_push(x_953, x_939); +x_955 = lean_array_push(x_954, x_22); +x_956 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_957 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_957, 0, x_956); +lean_ctor_set(x_957, 1, x_955); +x_958 = lean_array_push(x_844, x_957); +x_959 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_960 = lean_array_push(x_958, x_959); +x_961 = l_Lean_Elab_Command_expandElab___closed__20; +x_962 = l_Lean_addMacroScope(x_842, x_961, x_683); +x_963 = l_Lean_Elab_Command_expandElab___closed__19; +x_964 = l_Lean_Elab_Command_expandElab___closed__23; +x_965 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_965, 0, x_855); +lean_ctor_set(x_965, 1, x_963); +lean_ctor_set(x_965, 2, x_962); +lean_ctor_set(x_965, 3, x_964); +x_966 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_967 = lean_array_push(x_966, x_965); x_968 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_968, 0, x_967); -lean_ctor_set(x_968, 1, x_966); -x_969 = lean_array_push(x_938, x_968); -x_970 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_971 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_971, 0, x_970); -lean_ctor_set(x_971, 1, x_969); -x_972 = lean_array_push(x_934, x_971); -x_973 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +lean_ctor_set(x_968, 0, x_956); +lean_ctor_set(x_968, 1, x_967); +x_969 = lean_array_push(x_960, x_968); +x_970 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_970, 0, x_846); +lean_ctor_set(x_970, 1, x_969); +x_971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_972 = lean_array_push(x_971, x_970); +x_973 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; x_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 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_976 = lean_array_push(x_975, x_974); -x_977 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_978 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_978, 0, x_977); -lean_ctor_set(x_978, 1, x_976); -x_979 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_980 = lean_array_push(x_979, x_978); -x_981 = lean_array_push(x_980, x_891); -x_982 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_983 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_983, 0, x_982); -lean_ctor_set(x_983, 1, x_981); -x_984 = lean_array_push(x_923, x_983); -x_985 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_986 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_986, 0, x_985); -lean_ctor_set(x_986, 1, x_984); -x_987 = lean_array_push(x_898, x_986); -x_988 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_975 = lean_array_push(x_944, x_974); +x_976 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_977 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_977, 0, x_976); +lean_ctor_set(x_977, 1, x_975); +x_978 = lean_array_push(x_940, x_977); +x_979 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_980 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_980, 0, x_979); +lean_ctor_set(x_980, 1, x_978); +x_981 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_982 = lean_array_push(x_981, x_980); +x_983 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_984 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_984, 0, x_983); +lean_ctor_set(x_984, 1, x_982); +x_985 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_986 = lean_array_push(x_985, x_984); +x_987 = lean_array_push(x_986, x_897); +x_988 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; x_989 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_989, 0, x_988); lean_ctor_set(x_989, 1, x_987); -x_990 = lean_array_push(x_869, x_989); -x_991 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_991, 0, x_841); -lean_ctor_set(x_991, 1, x_990); -x_992 = lean_alloc_ctor(0, 2, 0); +x_990 = lean_array_push(x_929, x_989); +x_991 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_992 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_992, 0, x_991); -lean_ctor_set(x_992, 1, x_838); -return x_992; +lean_ctor_set(x_992, 1, x_990); +x_993 = lean_array_push(x_904, x_992); +x_994 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_995 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_995, 0, x_994); +lean_ctor_set(x_995, 1, x_993); +x_996 = lean_array_push(x_874, x_995); +x_997 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_997, 0, x_846); +lean_ctor_set(x_997, 1, x_996); +x_998 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_998, 0, x_997); +lean_ctor_set(x_998, 1, x_843); +return x_998; } } } else { -lean_object* x_993; uint8_t x_994; -x_993 = l_term___u2218_____closed__6; -x_994 = lean_name_eq(x_23, x_993); -if (x_994 == 0) +lean_object* x_999; uint8_t x_1000; +x_999 = l_term___u2218_____closed__6; +x_1000 = lean_name_eq(x_23, x_999); +if (x_1000 == 0) { -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_dec(x_44); lean_dec(x_43); lean_dec(x_30); @@ -30153,632 +30380,634 @@ lean_dec(x_22); lean_dec(x_18); lean_dec(x_11); lean_dec(x_8); -x_995 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_995, 0, x_23); -x_996 = l_Lean_Elab_Command_expandElab___closed__39; -x_997 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_997, 0, x_996); -lean_ctor_set(x_997, 1, x_995); -x_998 = l_Lean_Elab_Command_expandElab___closed__41; -x_999 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_999, 0, x_997); -lean_ctor_set(x_999, 1, x_998); -x_1000 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_20, x_999, x_3, x_4, x_39); +x_1001 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1001, 0, x_23); +x_1002 = l_Lean_Elab_Command_expandElab___closed__39; +x_1003 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1003, 0, x_1002); +lean_ctor_set(x_1003, 1, x_1001); +x_1004 = l_Lean_Elab_Command_expandElab___closed__41; +x_1005 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1005, 0, x_1003); +lean_ctor_set(x_1005, 1, x_1004); +x_1006 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_20, x_1005, x_3, x_4, x_39); lean_dec(x_20); -return x_1000; +return x_1006; } else { -lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; uint8_t x_1006; +lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; uint8_t x_1012; lean_dec(x_23); -x_1001 = l_Lean_Syntax_getArg(x_20, x_6); +x_1007 = l_Lean_Syntax_getArg(x_20, x_6); lean_dec(x_20); -x_1002 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); +x_1008 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); lean_dec(x_3); -x_1003 = lean_ctor_get(x_1002, 0); -lean_inc(x_1003); -x_1004 = lean_ctor_get(x_1002, 1); -lean_inc(x_1004); -lean_dec(x_1002); -x_1005 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1004); -x_1006 = !lean_is_exclusive(x_1005); -if (x_1006 == 0) +x_1009 = lean_ctor_get(x_1008, 0); +lean_inc(x_1009); +x_1010 = lean_ctor_get(x_1008, 1); +lean_inc(x_1010); +lean_dec(x_1008); +x_1011 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1010); +x_1012 = !lean_is_exclusive(x_1011); +if (x_1012 == 0) { -lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_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; -x_1007 = lean_ctor_get(x_1005, 0); -x_1008 = l_Array_empty___closed__1; -x_1009 = l_Array_appendCore___rarg(x_1008, x_8); +lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_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; +x_1013 = lean_ctor_get(x_1011, 0); +x_1014 = l_Array_empty___closed__1; +x_1015 = l_Array_appendCore___rarg(x_1014, x_8); lean_dec(x_8); -x_1010 = l_Lean_nullKind___closed__2; -x_1011 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1011, 0, x_1010); -lean_ctor_set(x_1011, 1, x_1009); -x_1012 = l_Lean_Elab_Command_expandMacro___closed__1; -x_1013 = lean_array_push(x_1012, x_1011); -x_1014 = lean_array_push(x_1008, x_44); -x_1015 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; -lean_inc(x_1014); -x_1016 = lean_array_push(x_1014, x_1015); -x_1017 = l_Nat_repr(x_11); -x_1018 = l_Lean_numLitKind; -x_1019 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1020 = l_Lean_Syntax_mkLit(x_1018, x_1017, x_1019); -x_1021 = lean_array_push(x_1016, x_1020); -x_1022 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -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 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_1025 = lean_array_push(x_1024, x_1023); -x_1026 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1027 = lean_array_push(x_1025, x_1026); -x_1028 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1028, 0, x_1010); -lean_ctor_set(x_1028, 1, x_1027); -x_1029 = lean_array_push(x_1013, x_1028); -x_1030 = l_Array_appendCore___rarg(x_1008, x_30); +x_1016 = l_Lean_nullKind___closed__2; +x_1017 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1017, 0, x_1016); +lean_ctor_set(x_1017, 1, x_1015); +x_1018 = l_Lean_Elab_Command_expandMacro___closed__1; +x_1019 = lean_array_push(x_1018, x_1017); +x_1020 = lean_array_push(x_1014, x_44); +x_1021 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_inc(x_1020); +x_1022 = lean_array_push(x_1020, x_1021); +x_1023 = l_Nat_repr(x_11); +x_1024 = l_Lean_numLitKind; +x_1025 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1026 = l_Lean_Syntax_mkLit(x_1024, x_1023, x_1025); +x_1027 = lean_array_push(x_1022, x_1026); +x_1028 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +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_Data_Array_Basic___hyg_3418____closed__9; +x_1031 = lean_array_push(x_1030, x_1029); +x_1032 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1033 = lean_array_push(x_1031, x_1032); +x_1034 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1034, 0, x_1016); +lean_ctor_set(x_1034, 1, x_1033); +x_1035 = lean_array_push(x_1019, x_1034); +x_1036 = l_Array_appendCore___rarg(x_1014, x_30); lean_dec(x_30); -x_1031 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1031, 0, x_1010); -lean_ctor_set(x_1031, 1, x_1030); -x_1032 = lean_array_push(x_1029, x_1031); -x_1033 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; -x_1034 = lean_array_push(x_1032, x_1033); -x_1035 = lean_array_push(x_1034, x_18); -x_1036 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; x_1037 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1037, 0, x_1036); -lean_ctor_set(x_1037, 1, x_1035); -x_1038 = lean_array_push(x_1008, x_1037); -x_1039 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_1003); -lean_inc(x_1007); -x_1040 = l_Lean_addMacroScope(x_1007, x_1039, x_1003); -x_1041 = lean_box(0); -x_1042 = l_Lean_Elab_Command_expandElab___closed__32; -x_1043 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1043, 0, x_1019); -lean_ctor_set(x_1043, 1, x_1042); -lean_ctor_set(x_1043, 2, x_1040); -lean_ctor_set(x_1043, 3, x_1041); -x_1044 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_1045 = lean_array_push(x_1044, x_1043); -x_1046 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1046, 0, x_1010); -lean_ctor_set(x_1046, 1, x_1014); -x_1047 = lean_array_push(x_1045, x_1046); -x_1048 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_1049 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1049, 0, x_1048); -lean_ctor_set(x_1049, 1, x_1047); -x_1050 = lean_array_push(x_1008, x_1049); -x_1051 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1051, 0, x_1010); -lean_ctor_set(x_1051, 1, x_1050); -x_1052 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_1053 = lean_array_push(x_1052, x_1051); -x_1054 = lean_array_push(x_1053, x_1026); -x_1055 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; -x_1056 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1056, 0, x_1055); -lean_ctor_set(x_1056, 1, x_1054); -x_1057 = lean_array_push(x_1008, x_1056); -x_1058 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1058, 0, x_1010); -lean_ctor_set(x_1058, 1, x_1057); -x_1059 = lean_array_push(x_1044, x_1058); -x_1060 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_1061 = lean_array_push(x_1059, x_1060); -x_1062 = lean_array_push(x_1061, x_1060); -x_1063 = lean_array_push(x_1062, x_1060); -x_1064 = lean_array_push(x_1063, x_1060); -x_1065 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_1066 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1066, 0, x_1065); -lean_ctor_set(x_1066, 1, x_1064); -x_1067 = lean_array_push(x_1008, x_1066); -x_1068 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_1003); -lean_inc(x_1007); -x_1069 = l_Lean_addMacroScope(x_1007, x_1068, x_1003); -x_1070 = l_Lean_Elab_Command_expandElab___closed__7; -x_1071 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1071, 0, x_1019); -lean_ctor_set(x_1071, 1, x_1070); -lean_ctor_set(x_1071, 2, x_1069); -lean_ctor_set(x_1071, 3, x_1041); -x_1072 = lean_array_push(x_1008, x_1071); -x_1073 = lean_array_push(x_1072, x_1060); -x_1074 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_1075 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1075, 0, x_1074); -lean_ctor_set(x_1075, 1, x_1073); -x_1076 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_1077 = lean_array_push(x_1076, x_1075); -x_1078 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_1003); -lean_inc(x_1007); -x_1079 = l_Lean_addMacroScope(x_1007, x_1078, x_1003); -x_1080 = l_Lean_Elab_Command_expandElab___closed__35; -x_1081 = l_Lean_Elab_Command_expandElab___closed__37; -x_1082 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1082, 0, x_1019); +lean_ctor_set(x_1037, 0, x_1016); +lean_ctor_set(x_1037, 1, x_1036); +x_1038 = lean_array_push(x_1035, x_1037); +x_1039 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +x_1040 = lean_array_push(x_1038, x_1039); +x_1041 = lean_array_push(x_1040, x_18); +x_1042 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_1043 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1043, 0, x_1042); +lean_ctor_set(x_1043, 1, x_1041); +x_1044 = lean_array_push(x_1014, x_1043); +x_1045 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1009); +lean_inc(x_1013); +x_1046 = l_Lean_addMacroScope(x_1013, x_1045, x_1009); +x_1047 = lean_box(0); +x_1048 = l_Lean_Elab_Command_expandElab___closed__32; +x_1049 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1049, 0, x_1025); +lean_ctor_set(x_1049, 1, x_1048); +lean_ctor_set(x_1049, 2, x_1046); +lean_ctor_set(x_1049, 3, x_1047); +x_1050 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_1051 = lean_array_push(x_1050, x_1049); +x_1052 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1052, 0, x_1016); +lean_ctor_set(x_1052, 1, x_1020); +x_1053 = lean_array_push(x_1051, x_1052); +x_1054 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; +x_1055 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1055, 0, x_1054); +lean_ctor_set(x_1055, 1, x_1053); +x_1056 = lean_array_push(x_1014, x_1055); +x_1057 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1057, 0, x_1016); +lean_ctor_set(x_1057, 1, x_1056); +x_1058 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_1059 = lean_array_push(x_1058, x_1057); +x_1060 = lean_array_push(x_1059, x_1032); +x_1061 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_1062 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1062, 0, x_1061); +lean_ctor_set(x_1062, 1, x_1060); +x_1063 = lean_array_push(x_1014, x_1062); +x_1064 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1064, 0, x_1016); +lean_ctor_set(x_1064, 1, x_1063); +x_1065 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_1066 = lean_array_push(x_1065, x_1064); +x_1067 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_1068 = lean_array_push(x_1066, x_1067); +x_1069 = lean_array_push(x_1068, x_1067); +x_1070 = lean_array_push(x_1069, x_1067); +x_1071 = lean_array_push(x_1070, x_1067); +x_1072 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +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_1014, x_1073); +x_1075 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_1009); +lean_inc(x_1013); +x_1076 = l_Lean_addMacroScope(x_1013, x_1075, x_1009); +x_1077 = l_Lean_Elab_Command_expandElab___closed__7; +x_1078 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1078, 0, x_1025); +lean_ctor_set(x_1078, 1, x_1077); +lean_ctor_set(x_1078, 2, x_1076); +lean_ctor_set(x_1078, 3, x_1047); +x_1079 = lean_array_push(x_1014, x_1078); +x_1080 = lean_array_push(x_1079, x_1067); +x_1081 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_1082 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1082, 0, x_1081); lean_ctor_set(x_1082, 1, x_1080); -lean_ctor_set(x_1082, 2, x_1079); -lean_ctor_set(x_1082, 3, x_1081); -x_1083 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1083 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; x_1084 = lean_array_push(x_1083, x_1082); -x_1085 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1086 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1086, 0, x_1085); -lean_ctor_set(x_1086, 1, x_1084); -x_1087 = lean_array_push(x_1008, x_1086); -x_1088 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1088, 0, x_1010); -lean_ctor_set(x_1088, 1, x_1087); -x_1089 = lean_array_push(x_1044, x_1088); -x_1090 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -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_1077, x_1091); -x_1093 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_1003); -lean_inc(x_1007); -x_1094 = l_Lean_addMacroScope(x_1007, x_1093, x_1003); -x_1095 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1096 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1096, 0, x_1019); -lean_ctor_set(x_1096, 1, x_1095); -lean_ctor_set(x_1096, 2, x_1094); -lean_ctor_set(x_1096, 3, x_1041); -lean_inc(x_1096); -x_1097 = lean_array_push(x_1008, x_1096); -x_1098 = l_Lean_Elab_Command_expandElab___closed__45; -lean_inc(x_1003); -lean_inc(x_1007); -x_1099 = l_Lean_addMacroScope(x_1007, x_1098, x_1003); -x_1100 = l_Lean_Elab_Command_expandElab___closed__44; -x_1101 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1101, 0, x_1019); -lean_ctor_set(x_1101, 1, x_1100); -lean_ctor_set(x_1101, 2, x_1099); -lean_ctor_set(x_1101, 3, x_1041); -lean_inc(x_1101); -x_1102 = lean_array_push(x_1097, x_1101); -x_1103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1103, 0, x_1010); +x_1085 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1009); +lean_inc(x_1013); +x_1086 = l_Lean_addMacroScope(x_1013, x_1085, x_1009); +x_1087 = l_Lean_Elab_Command_expandElab___closed__35; +x_1088 = l_Lean_Elab_Command_expandElab___closed__37; +x_1089 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1089, 0, x_1025); +lean_ctor_set(x_1089, 1, x_1087); +lean_ctor_set(x_1089, 2, x_1086); +lean_ctor_set(x_1089, 3, x_1088); +x_1090 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1091 = lean_array_push(x_1090, x_1089); +x_1092 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1093 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1093, 0, x_1092); +lean_ctor_set(x_1093, 1, x_1091); +x_1094 = lean_array_push(x_1014, x_1093); +x_1095 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1095, 0, x_1016); +lean_ctor_set(x_1095, 1, x_1094); +x_1096 = lean_array_push(x_1065, x_1095); +x_1097 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_1098 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1098, 0, x_1097); +lean_ctor_set(x_1098, 1, x_1096); +x_1099 = lean_array_push(x_1084, x_1098); +x_1100 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_1009); +lean_inc(x_1013); +x_1101 = l_Lean_addMacroScope(x_1013, x_1100, x_1009); +x_1102 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1103 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1103, 0, x_1025); lean_ctor_set(x_1103, 1, x_1102); -x_1104 = lean_array_push(x_1008, x_1103); -x_1105 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1106 = lean_array_push(x_1104, x_1105); -x_1107 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1108 = lean_array_push(x_1107, x_1096); -x_1109 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1110 = lean_array_push(x_1108, x_1109); -x_1111 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_1112 = lean_array_push(x_1111, x_43); -x_1113 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_1114 = lean_array_push(x_1112, x_1113); -x_1115 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1116, 0, x_1115); -lean_ctor_set(x_1116, 1, x_1114); -x_1117 = lean_array_push(x_1008, x_1116); -x_1118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1118, 0, x_1010); -lean_ctor_set(x_1118, 1, x_1117); -x_1119 = lean_array_push(x_1008, x_1118); -x_1120 = lean_array_push(x_1119, x_1105); -x_1121 = l_Lean_Elab_Command_expandElab___closed__50; -lean_inc(x_1003); -lean_inc(x_1007); -x_1122 = l_Lean_addMacroScope(x_1007, x_1121, x_1003); -x_1123 = l_Lean_Elab_Command_expandElab___closed__48; -x_1124 = l_Lean_Elab_Command_expandElab___closed__52; -x_1125 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1125, 0, x_1019); -lean_ctor_set(x_1125, 1, x_1123); -lean_ctor_set(x_1125, 2, x_1122); -lean_ctor_set(x_1125, 3, x_1124); -x_1126 = lean_array_push(x_1008, x_1125); -x_1127 = lean_array_push(x_1008, x_1101); -x_1128 = lean_array_push(x_1008, x_1001); -x_1129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1129, 0, x_1010); -lean_ctor_set(x_1129, 1, x_1128); -x_1130 = lean_array_push(x_1008, x_1129); -x_1131 = lean_array_push(x_1130, x_1105); -x_1132 = lean_array_push(x_1131, x_22); -x_1133 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1134, 0, x_1133); -lean_ctor_set(x_1134, 1, x_1132); -x_1135 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_1136 = lean_array_push(x_1135, x_1134); -x_1137 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1138 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1138, 0, x_1137); -lean_ctor_set(x_1138, 1, x_1136); -x_1139 = lean_array_push(x_1127, x_1138); -x_1140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1140, 0, x_1010); -lean_ctor_set(x_1140, 1, x_1139); -x_1141 = lean_array_push(x_1126, x_1140); -x_1142 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1143, 0, x_1142); -lean_ctor_set(x_1143, 1, x_1141); -x_1144 = lean_array_push(x_1120, x_1143); -x_1145 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_1146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1146, 0, x_1145); -lean_ctor_set(x_1146, 1, x_1144); -x_1147 = lean_array_push(x_1008, x_1146); -x_1148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1149 = lean_array_push(x_1147, x_1148); -x_1150 = l_Lean_Elab_Command_expandElab___closed__20; -x_1151 = l_Lean_addMacroScope(x_1007, x_1150, x_1003); -x_1152 = l_Lean_Elab_Command_expandElab___closed__19; -x_1153 = l_Lean_Elab_Command_expandElab___closed__23; -x_1154 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1154, 0, x_1019); -lean_ctor_set(x_1154, 1, x_1152); -lean_ctor_set(x_1154, 2, x_1151); -lean_ctor_set(x_1154, 3, x_1153); -x_1155 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1156 = lean_array_push(x_1155, x_1154); -x_1157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1157, 0, x_1145); -lean_ctor_set(x_1157, 1, x_1156); -x_1158 = lean_array_push(x_1149, x_1157); -x_1159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1159, 0, x_1010); -lean_ctor_set(x_1159, 1, x_1158); -x_1160 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1161 = lean_array_push(x_1160, x_1159); -x_1162 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1163 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1163, 0, x_1162); -lean_ctor_set(x_1163, 1, x_1161); -x_1164 = lean_array_push(x_1110, x_1163); -x_1165 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_ctor_set(x_1103, 2, x_1101); +lean_ctor_set(x_1103, 3, x_1047); +lean_inc(x_1103); +x_1104 = lean_array_push(x_1014, x_1103); +x_1105 = l_Lean_Elab_Command_expandElab___closed__45; +lean_inc(x_1009); +lean_inc(x_1013); +x_1106 = l_Lean_addMacroScope(x_1013, x_1105, x_1009); +x_1107 = l_Lean_Elab_Command_expandElab___closed__44; +x_1108 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1108, 0, x_1025); +lean_ctor_set(x_1108, 1, x_1107); +lean_ctor_set(x_1108, 2, x_1106); +lean_ctor_set(x_1108, 3, x_1047); +lean_inc(x_1108); +x_1109 = lean_array_push(x_1104, x_1108); +x_1110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1110, 0, x_1016); +lean_ctor_set(x_1110, 1, x_1109); +x_1111 = lean_array_push(x_1014, x_1110); +x_1112 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1113 = lean_array_push(x_1111, x_1112); +x_1114 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1115 = lean_array_push(x_1114, x_1103); +x_1116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1117 = lean_array_push(x_1115, x_1116); +x_1118 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1119 = lean_array_push(x_1118, x_43); +x_1120 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1121 = lean_array_push(x_1119, x_1120); +x_1122 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1123, 0, x_1122); +lean_ctor_set(x_1123, 1, x_1121); +x_1124 = lean_array_push(x_1014, x_1123); +x_1125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1125, 0, x_1016); +lean_ctor_set(x_1125, 1, x_1124); +x_1126 = lean_array_push(x_1014, x_1125); +x_1127 = lean_array_push(x_1126, x_1112); +x_1128 = l_Lean_Elab_Command_expandElab___closed__50; +lean_inc(x_1009); +lean_inc(x_1013); +x_1129 = l_Lean_addMacroScope(x_1013, x_1128, x_1009); +x_1130 = l_Lean_Elab_Command_expandElab___closed__48; +x_1131 = l_Lean_Elab_Command_expandElab___closed__52; +x_1132 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1132, 0, x_1025); +lean_ctor_set(x_1132, 1, x_1130); +lean_ctor_set(x_1132, 2, x_1129); +lean_ctor_set(x_1132, 3, x_1131); +x_1133 = lean_array_push(x_1014, x_1132); +x_1134 = lean_array_push(x_1014, x_1108); +x_1135 = lean_array_push(x_1014, x_1007); +x_1136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1136, 0, x_1016); +lean_ctor_set(x_1136, 1, x_1135); +x_1137 = lean_array_push(x_1014, x_1136); +x_1138 = lean_array_push(x_1137, x_1112); +x_1139 = lean_array_push(x_1138, x_22); +x_1140 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1141, 0, x_1140); +lean_ctor_set(x_1141, 1, x_1139); +x_1142 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1143 = lean_array_push(x_1142, x_1141); +x_1144 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1145, 0, x_1144); +lean_ctor_set(x_1145, 1, x_1143); +x_1146 = lean_array_push(x_1134, x_1145); +x_1147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1147, 0, x_1016); +lean_ctor_set(x_1147, 1, x_1146); +x_1148 = lean_array_push(x_1133, x_1147); +x_1149 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1150, 0, x_1149); +lean_ctor_set(x_1150, 1, x_1148); +x_1151 = lean_array_push(x_1127, x_1150); +x_1152 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1153, 0, x_1152); +lean_ctor_set(x_1153, 1, x_1151); +x_1154 = lean_array_push(x_1014, x_1153); +x_1155 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1156 = lean_array_push(x_1154, x_1155); +x_1157 = l_Lean_Elab_Command_expandElab___closed__20; +x_1158 = l_Lean_addMacroScope(x_1013, x_1157, x_1009); +x_1159 = l_Lean_Elab_Command_expandElab___closed__19; +x_1160 = l_Lean_Elab_Command_expandElab___closed__23; +x_1161 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1161, 0, x_1025); +lean_ctor_set(x_1161, 1, x_1159); +lean_ctor_set(x_1161, 2, x_1158); +lean_ctor_set(x_1161, 3, x_1160); +x_1162 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1163 = lean_array_push(x_1162, x_1161); +x_1164 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1164, 0, x_1152); +lean_ctor_set(x_1164, 1, x_1163); +x_1165 = lean_array_push(x_1156, x_1164); x_1166 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1166, 0, x_1165); -lean_ctor_set(x_1166, 1, x_1164); -x_1167 = lean_array_push(x_1106, x_1166); -x_1168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1168, 0, x_1133); -lean_ctor_set(x_1168, 1, x_1167); -x_1169 = lean_array_push(x_1135, x_1168); +lean_ctor_set(x_1166, 0, x_1016); +lean_ctor_set(x_1166, 1, x_1165); +x_1167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1168 = lean_array_push(x_1167, x_1166); +x_1169 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; x_1170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1170, 0, x_1137); -lean_ctor_set(x_1170, 1, x_1169); -x_1171 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1172 = lean_array_push(x_1171, x_1170); -x_1173 = lean_array_push(x_1172, x_1060); -x_1174 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +lean_ctor_set(x_1170, 0, x_1169); +lean_ctor_set(x_1170, 1, x_1168); +x_1171 = lean_array_push(x_1117, x_1170); +x_1172 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_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_1113, x_1173); x_1175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1175, 0, x_1174); -lean_ctor_set(x_1175, 1, x_1173); -x_1176 = lean_array_push(x_1092, x_1175); -x_1177 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; -x_1178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1178, 0, x_1177); -lean_ctor_set(x_1178, 1, x_1176); -x_1179 = lean_array_push(x_1067, x_1178); -x_1180 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_1181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1181, 0, x_1180); -lean_ctor_set(x_1181, 1, x_1179); -x_1182 = lean_array_push(x_1038, x_1181); -x_1183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1183, 0, x_1010); -lean_ctor_set(x_1183, 1, x_1182); -lean_ctor_set(x_1005, 0, x_1183); -return x_1005; +lean_ctor_set(x_1175, 0, x_1140); +lean_ctor_set(x_1175, 1, x_1174); +x_1176 = lean_array_push(x_1142, x_1175); +x_1177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1177, 0, x_1144); +lean_ctor_set(x_1177, 1, x_1176); +x_1178 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1179 = lean_array_push(x_1178, x_1177); +x_1180 = lean_array_push(x_1179, x_1067); +x_1181 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; +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_1099, x_1182); +x_1184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1185, 0, x_1184); +lean_ctor_set(x_1185, 1, x_1183); +x_1186 = lean_array_push(x_1074, x_1185); +x_1187 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +x_1188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1188, 0, x_1187); +lean_ctor_set(x_1188, 1, x_1186); +x_1189 = lean_array_push(x_1044, x_1188); +x_1190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1190, 0, x_1016); +lean_ctor_set(x_1190, 1, x_1189); +lean_ctor_set(x_1011, 0, x_1190); +return x_1011; } else { -lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_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; -x_1184 = lean_ctor_get(x_1005, 0); -x_1185 = lean_ctor_get(x_1005, 1); -lean_inc(x_1185); -lean_inc(x_1184); -lean_dec(x_1005); -x_1186 = l_Array_empty___closed__1; -x_1187 = l_Array_appendCore___rarg(x_1186, x_8); -lean_dec(x_8); -x_1188 = l_Lean_nullKind___closed__2; -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_Elab_Command_expandMacro___closed__1; -x_1191 = lean_array_push(x_1190, x_1189); -x_1192 = lean_array_push(x_1186, x_44); -x_1193 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_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; +x_1191 = lean_ctor_get(x_1011, 0); +x_1192 = lean_ctor_get(x_1011, 1); lean_inc(x_1192); -x_1194 = lean_array_push(x_1192, x_1193); -x_1195 = l_Nat_repr(x_11); -x_1196 = l_Lean_numLitKind; -x_1197 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1198 = l_Lean_Syntax_mkLit(x_1196, x_1195, x_1197); -x_1199 = lean_array_push(x_1194, x_1198); -x_1200 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_1201 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1201, 0, x_1200); -lean_ctor_set(x_1201, 1, x_1199); -x_1202 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_1203 = lean_array_push(x_1202, x_1201); -x_1204 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1205 = lean_array_push(x_1203, x_1204); -x_1206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1206, 0, x_1188); -lean_ctor_set(x_1206, 1, x_1205); -x_1207 = lean_array_push(x_1191, x_1206); -x_1208 = l_Array_appendCore___rarg(x_1186, x_30); -lean_dec(x_30); -x_1209 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1209, 0, x_1188); -lean_ctor_set(x_1209, 1, x_1208); -x_1210 = lean_array_push(x_1207, x_1209); -x_1211 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +lean_inc(x_1191); +lean_dec(x_1011); +x_1193 = l_Array_empty___closed__1; +x_1194 = l_Array_appendCore___rarg(x_1193, x_8); +lean_dec(x_8); +x_1195 = l_Lean_nullKind___closed__2; +x_1196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1196, 0, x_1195); +lean_ctor_set(x_1196, 1, x_1194); +x_1197 = l_Lean_Elab_Command_expandMacro___closed__1; +x_1198 = lean_array_push(x_1197, x_1196); +x_1199 = lean_array_push(x_1193, x_44); +x_1200 = l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +lean_inc(x_1199); +x_1201 = lean_array_push(x_1199, x_1200); +x_1202 = l_Nat_repr(x_11); +x_1203 = l_Lean_numLitKind; +x_1204 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1205 = l_Lean_Syntax_mkLit(x_1203, x_1202, x_1204); +x_1206 = lean_array_push(x_1201, x_1205); +x_1207 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_1208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1208, 0, x_1207); +lean_ctor_set(x_1208, 1, x_1206); +x_1209 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_1210 = lean_array_push(x_1209, x_1208); +x_1211 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; x_1212 = lean_array_push(x_1210, x_1211); -x_1213 = lean_array_push(x_1212, x_18); -x_1214 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_1215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1215, 0, x_1214); -lean_ctor_set(x_1215, 1, x_1213); -x_1216 = lean_array_push(x_1186, x_1215); -x_1217 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_1003); -lean_inc(x_1184); -x_1218 = l_Lean_addMacroScope(x_1184, x_1217, x_1003); -x_1219 = lean_box(0); -x_1220 = l_Lean_Elab_Command_expandElab___closed__32; -x_1221 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1221, 0, x_1197); -lean_ctor_set(x_1221, 1, x_1220); -lean_ctor_set(x_1221, 2, x_1218); -lean_ctor_set(x_1221, 3, x_1219); -x_1222 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; -x_1223 = lean_array_push(x_1222, x_1221); -x_1224 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1224, 0, x_1188); -lean_ctor_set(x_1224, 1, x_1192); -x_1225 = lean_array_push(x_1223, x_1224); -x_1226 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; -x_1227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1227, 0, x_1226); -lean_ctor_set(x_1227, 1, x_1225); -x_1228 = lean_array_push(x_1186, x_1227); -x_1229 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1229, 0, x_1188); -lean_ctor_set(x_1229, 1, x_1228); -x_1230 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; -x_1231 = lean_array_push(x_1230, x_1229); -x_1232 = lean_array_push(x_1231, x_1204); -x_1233 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_1213 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1213, 0, x_1195); +lean_ctor_set(x_1213, 1, x_1212); +x_1214 = lean_array_push(x_1198, x_1213); +x_1215 = l_Array_appendCore___rarg(x_1193, x_30); +lean_dec(x_30); +x_1216 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1216, 0, x_1195); +lean_ctor_set(x_1216, 1, x_1215); +x_1217 = lean_array_push(x_1214, x_1216); +x_1218 = l_myMacro____x40_Init_Notation___hyg_11836____closed__10; +x_1219 = lean_array_push(x_1217, x_1218); +x_1220 = lean_array_push(x_1219, x_18); +x_1221 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_1222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1222, 0, x_1221); +lean_ctor_set(x_1222, 1, x_1220); +x_1223 = lean_array_push(x_1193, x_1222); +x_1224 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1009); +lean_inc(x_1191); +x_1225 = l_Lean_addMacroScope(x_1191, x_1224, x_1009); +x_1226 = lean_box(0); +x_1227 = l_Lean_Elab_Command_expandElab___closed__32; +x_1228 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1228, 0, x_1204); +lean_ctor_set(x_1228, 1, x_1227); +lean_ctor_set(x_1228, 2, x_1225); +lean_ctor_set(x_1228, 3, x_1226); +x_1229 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; +x_1230 = lean_array_push(x_1229, x_1228); +x_1231 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1231, 0, x_1195); +lean_ctor_set(x_1231, 1, x_1199); +x_1232 = lean_array_push(x_1230, x_1231); +x_1233 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__14; x_1234 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1234, 0, x_1233); lean_ctor_set(x_1234, 1, x_1232); -x_1235 = lean_array_push(x_1186, x_1234); +x_1235 = lean_array_push(x_1193, x_1234); x_1236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1236, 0, x_1188); +lean_ctor_set(x_1236, 0, x_1195); lean_ctor_set(x_1236, 1, x_1235); -x_1237 = lean_array_push(x_1222, x_1236); -x_1238 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_1239 = lean_array_push(x_1237, x_1238); -x_1240 = lean_array_push(x_1239, x_1238); -x_1241 = lean_array_push(x_1240, x_1238); -x_1242 = lean_array_push(x_1241, x_1238); -x_1243 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; -x_1244 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1244, 0, x_1243); -lean_ctor_set(x_1244, 1, x_1242); -x_1245 = lean_array_push(x_1186, x_1244); -x_1246 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_1003); -lean_inc(x_1184); -x_1247 = l_Lean_addMacroScope(x_1184, x_1246, x_1003); -x_1248 = l_Lean_Elab_Command_expandElab___closed__7; -x_1249 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1249, 0, x_1197); -lean_ctor_set(x_1249, 1, x_1248); -lean_ctor_set(x_1249, 2, x_1247); -lean_ctor_set(x_1249, 3, x_1219); -x_1250 = lean_array_push(x_1186, x_1249); -x_1251 = lean_array_push(x_1250, x_1238); -x_1252 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; -x_1253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1253, 0, x_1252); -lean_ctor_set(x_1253, 1, x_1251); -x_1254 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; -x_1255 = lean_array_push(x_1254, x_1253); -x_1256 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_1003); -lean_inc(x_1184); -x_1257 = l_Lean_addMacroScope(x_1184, x_1256, x_1003); -x_1258 = l_Lean_Elab_Command_expandElab___closed__35; -x_1259 = l_Lean_Elab_Command_expandElab___closed__37; -x_1260 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1260, 0, x_1197); -lean_ctor_set(x_1260, 1, x_1258); -lean_ctor_set(x_1260, 2, x_1257); -lean_ctor_set(x_1260, 3, x_1259); -x_1261 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1262 = lean_array_push(x_1261, x_1260); -x_1263 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1264, 0, x_1263); -lean_ctor_set(x_1264, 1, x_1262); -x_1265 = lean_array_push(x_1186, x_1264); -x_1266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1266, 0, x_1188); -lean_ctor_set(x_1266, 1, x_1265); -x_1267 = lean_array_push(x_1222, x_1266); -x_1268 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; -x_1269 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1269, 0, x_1268); -lean_ctor_set(x_1269, 1, x_1267); -x_1270 = lean_array_push(x_1255, x_1269); -x_1271 = l_stx___x3c_x7c_x3e_____closed__4; -lean_inc(x_1003); -lean_inc(x_1184); -x_1272 = l_Lean_addMacroScope(x_1184, x_1271, x_1003); -x_1273 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1274 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1274, 0, x_1197); +x_1237 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__12; +x_1238 = lean_array_push(x_1237, x_1236); +x_1239 = lean_array_push(x_1238, x_1211); +x_1240 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__9; +x_1241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1241, 0, x_1240); +lean_ctor_set(x_1241, 1, x_1239); +x_1242 = lean_array_push(x_1193, x_1241); +x_1243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1243, 0, x_1195); +lean_ctor_set(x_1243, 1, x_1242); +x_1244 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__7; +x_1245 = lean_array_push(x_1244, x_1243); +x_1246 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_1247 = lean_array_push(x_1245, x_1246); +x_1248 = lean_array_push(x_1247, x_1246); +x_1249 = lean_array_push(x_1248, x_1246); +x_1250 = lean_array_push(x_1249, x_1246); +x_1251 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__6; +x_1252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1252, 0, x_1251); +lean_ctor_set(x_1252, 1, x_1250); +x_1253 = lean_array_push(x_1193, x_1252); +x_1254 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_1009); +lean_inc(x_1191); +x_1255 = l_Lean_addMacroScope(x_1191, x_1254, x_1009); +x_1256 = l_Lean_Elab_Command_expandElab___closed__7; +x_1257 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1257, 0, x_1204); +lean_ctor_set(x_1257, 1, x_1256); +lean_ctor_set(x_1257, 2, x_1255); +lean_ctor_set(x_1257, 3, x_1226); +x_1258 = lean_array_push(x_1193, x_1257); +x_1259 = lean_array_push(x_1258, x_1246); +x_1260 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__32; +x_1261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1261, 0, x_1260); +lean_ctor_set(x_1261, 1, x_1259); +x_1262 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__30; +x_1263 = lean_array_push(x_1262, x_1261); +x_1264 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1009); +lean_inc(x_1191); +x_1265 = l_Lean_addMacroScope(x_1191, x_1264, x_1009); +x_1266 = l_Lean_Elab_Command_expandElab___closed__35; +x_1267 = l_Lean_Elab_Command_expandElab___closed__37; +x_1268 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1268, 0, x_1204); +lean_ctor_set(x_1268, 1, x_1266); +lean_ctor_set(x_1268, 2, x_1265); +lean_ctor_set(x_1268, 3, x_1267); +x_1269 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1270 = lean_array_push(x_1269, x_1268); +x_1271 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1272, 0, x_1271); +lean_ctor_set(x_1272, 1, x_1270); +x_1273 = lean_array_push(x_1193, x_1272); +x_1274 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1274, 0, x_1195); lean_ctor_set(x_1274, 1, x_1273); -lean_ctor_set(x_1274, 2, x_1272); -lean_ctor_set(x_1274, 3, x_1219); -lean_inc(x_1274); -x_1275 = lean_array_push(x_1186, x_1274); -x_1276 = l_Lean_Elab_Command_expandElab___closed__45; -lean_inc(x_1003); -lean_inc(x_1184); -x_1277 = l_Lean_addMacroScope(x_1184, x_1276, x_1003); -x_1278 = l_Lean_Elab_Command_expandElab___closed__44; -x_1279 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1279, 0, x_1197); -lean_ctor_set(x_1279, 1, x_1278); -lean_ctor_set(x_1279, 2, x_1277); -lean_ctor_set(x_1279, 3, x_1219); -lean_inc(x_1279); -x_1280 = lean_array_push(x_1275, x_1279); -x_1281 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1281, 0, x_1188); -lean_ctor_set(x_1281, 1, x_1280); -x_1282 = lean_array_push(x_1186, x_1281); -x_1283 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1284 = lean_array_push(x_1282, x_1283); -x_1285 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1286 = lean_array_push(x_1285, x_1274); -x_1287 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1288 = lean_array_push(x_1286, x_1287); -x_1289 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; -x_1290 = lean_array_push(x_1289, x_43); -x_1291 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1275 = lean_array_push(x_1244, x_1274); +x_1276 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__34; +x_1277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1277, 0, x_1276); +lean_ctor_set(x_1277, 1, x_1275); +x_1278 = lean_array_push(x_1263, x_1277); +x_1279 = l_stx___x3c_x7c_x3e_____closed__4; +lean_inc(x_1009); +lean_inc(x_1191); +x_1280 = l_Lean_addMacroScope(x_1191, x_1279, x_1009); +x_1281 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1282 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1282, 0, x_1204); +lean_ctor_set(x_1282, 1, x_1281); +lean_ctor_set(x_1282, 2, x_1280); +lean_ctor_set(x_1282, 3, x_1226); +lean_inc(x_1282); +x_1283 = lean_array_push(x_1193, x_1282); +x_1284 = l_Lean_Elab_Command_expandElab___closed__45; +lean_inc(x_1009); +lean_inc(x_1191); +x_1285 = l_Lean_addMacroScope(x_1191, x_1284, x_1009); +x_1286 = l_Lean_Elab_Command_expandElab___closed__44; +x_1287 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1287, 0, x_1204); +lean_ctor_set(x_1287, 1, x_1286); +lean_ctor_set(x_1287, 2, x_1285); +lean_ctor_set(x_1287, 3, x_1226); +lean_inc(x_1287); +x_1288 = lean_array_push(x_1283, x_1287); +x_1289 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1289, 0, x_1195); +lean_ctor_set(x_1289, 1, x_1288); +x_1290 = lean_array_push(x_1193, x_1289); +x_1291 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1292 = lean_array_push(x_1290, x_1291); -x_1293 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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_1186, x_1294); -x_1296 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1296, 0, x_1188); -lean_ctor_set(x_1296, 1, x_1295); -x_1297 = lean_array_push(x_1186, x_1296); -x_1298 = lean_array_push(x_1297, x_1283); -x_1299 = l_Lean_Elab_Command_expandElab___closed__50; -lean_inc(x_1003); -lean_inc(x_1184); -x_1300 = l_Lean_addMacroScope(x_1184, x_1299, x_1003); -x_1301 = l_Lean_Elab_Command_expandElab___closed__48; -x_1302 = l_Lean_Elab_Command_expandElab___closed__52; -x_1303 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1303, 0, x_1197); -lean_ctor_set(x_1303, 1, x_1301); -lean_ctor_set(x_1303, 2, x_1300); -lean_ctor_set(x_1303, 3, x_1302); -x_1304 = lean_array_push(x_1186, x_1303); -x_1305 = lean_array_push(x_1186, x_1279); -x_1306 = lean_array_push(x_1186, x_1001); -x_1307 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1307, 0, x_1188); -lean_ctor_set(x_1307, 1, x_1306); -x_1308 = lean_array_push(x_1186, x_1307); -x_1309 = lean_array_push(x_1308, x_1283); -x_1310 = lean_array_push(x_1309, x_22); -x_1311 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1312 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1312, 0, x_1311); -lean_ctor_set(x_1312, 1, x_1310); -x_1313 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; -x_1314 = lean_array_push(x_1313, x_1312); -x_1315 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1316 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1316, 0, x_1315); -lean_ctor_set(x_1316, 1, x_1314); -x_1317 = lean_array_push(x_1305, x_1316); -x_1318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1318, 0, x_1188); -lean_ctor_set(x_1318, 1, x_1317); -x_1319 = lean_array_push(x_1304, x_1318); -x_1320 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1321, 0, x_1320); -lean_ctor_set(x_1321, 1, x_1319); -x_1322 = lean_array_push(x_1298, x_1321); -x_1323 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1293 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1294 = lean_array_push(x_1293, x_1282); +x_1295 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1296 = lean_array_push(x_1294, x_1295); +x_1297 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1298 = lean_array_push(x_1297, x_43); +x_1299 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1300 = lean_array_push(x_1298, x_1299); +x_1301 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1302, 0, x_1301); +lean_ctor_set(x_1302, 1, x_1300); +x_1303 = lean_array_push(x_1193, x_1302); +x_1304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1304, 0, x_1195); +lean_ctor_set(x_1304, 1, x_1303); +x_1305 = lean_array_push(x_1193, x_1304); +x_1306 = lean_array_push(x_1305, x_1291); +x_1307 = l_Lean_Elab_Command_expandElab___closed__50; +lean_inc(x_1009); +lean_inc(x_1191); +x_1308 = l_Lean_addMacroScope(x_1191, x_1307, x_1009); +x_1309 = l_Lean_Elab_Command_expandElab___closed__48; +x_1310 = l_Lean_Elab_Command_expandElab___closed__52; +x_1311 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1311, 0, x_1204); +lean_ctor_set(x_1311, 1, x_1309); +lean_ctor_set(x_1311, 2, x_1308); +lean_ctor_set(x_1311, 3, x_1310); +x_1312 = lean_array_push(x_1193, x_1311); +x_1313 = lean_array_push(x_1193, x_1287); +x_1314 = lean_array_push(x_1193, x_1007); +x_1315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1315, 0, x_1195); +lean_ctor_set(x_1315, 1, x_1314); +x_1316 = lean_array_push(x_1193, x_1315); +x_1317 = lean_array_push(x_1316, x_1291); +x_1318 = lean_array_push(x_1317, x_22); +x_1319 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1320 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1320, 0, x_1319); +lean_ctor_set(x_1320, 1, x_1318); +x_1321 = l_myMacro____x40_Init_Notation___hyg_9707____closed__15; +x_1322 = lean_array_push(x_1321, x_1320); +x_1323 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; 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_1186, x_1324); -x_1326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1327 = lean_array_push(x_1325, x_1326); -x_1328 = l_Lean_Elab_Command_expandElab___closed__20; -x_1329 = l_Lean_addMacroScope(x_1184, x_1328, x_1003); -x_1330 = l_Lean_Elab_Command_expandElab___closed__19; -x_1331 = l_Lean_Elab_Command_expandElab___closed__23; -x_1332 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1332, 0, x_1197); +x_1325 = lean_array_push(x_1313, x_1324); +x_1326 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1326, 0, x_1195); +lean_ctor_set(x_1326, 1, x_1325); +x_1327 = lean_array_push(x_1312, x_1326); +x_1328 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1329, 0, x_1328); +lean_ctor_set(x_1329, 1, x_1327); +x_1330 = lean_array_push(x_1306, x_1329); +x_1331 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1332 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1332, 0, x_1331); lean_ctor_set(x_1332, 1, x_1330); -lean_ctor_set(x_1332, 2, x_1329); -lean_ctor_set(x_1332, 3, x_1331); -x_1333 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; -x_1334 = lean_array_push(x_1333, x_1332); -x_1335 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1335, 0, x_1323); -lean_ctor_set(x_1335, 1, x_1334); -x_1336 = lean_array_push(x_1327, x_1335); -x_1337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1337, 0, x_1188); -lean_ctor_set(x_1337, 1, x_1336); -x_1338 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1339 = lean_array_push(x_1338, x_1337); -x_1340 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1341 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1341, 0, x_1340); -lean_ctor_set(x_1341, 1, x_1339); -x_1342 = lean_array_push(x_1288, x_1341); -x_1343 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -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_1284, x_1344); -x_1346 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1346, 0, x_1311); -lean_ctor_set(x_1346, 1, x_1345); -x_1347 = lean_array_push(x_1313, x_1346); -x_1348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1348, 0, x_1315); -lean_ctor_set(x_1348, 1, x_1347); -x_1349 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; -x_1350 = lean_array_push(x_1349, x_1348); -x_1351 = lean_array_push(x_1350, x_1238); -x_1352 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; -x_1353 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1353, 0, x_1352); -lean_ctor_set(x_1353, 1, x_1351); -x_1354 = lean_array_push(x_1270, x_1353); -x_1355 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +x_1333 = lean_array_push(x_1193, x_1332); +x_1334 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1335 = lean_array_push(x_1333, x_1334); +x_1336 = l_Lean_Elab_Command_expandElab___closed__20; +x_1337 = l_Lean_addMacroScope(x_1191, x_1336, x_1009); +x_1338 = l_Lean_Elab_Command_expandElab___closed__19; +x_1339 = l_Lean_Elab_Command_expandElab___closed__23; +x_1340 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1340, 0, x_1204); +lean_ctor_set(x_1340, 1, x_1338); +lean_ctor_set(x_1340, 2, x_1337); +lean_ctor_set(x_1340, 3, x_1339); +x_1341 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1342 = lean_array_push(x_1341, x_1340); +x_1343 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1343, 0, x_1331); +lean_ctor_set(x_1343, 1, x_1342); +x_1344 = lean_array_push(x_1335, x_1343); +x_1345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1345, 0, x_1195); +lean_ctor_set(x_1345, 1, x_1344); +x_1346 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1347 = lean_array_push(x_1346, x_1345); +x_1348 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1349, 0, x_1348); +lean_ctor_set(x_1349, 1, x_1347); +x_1350 = lean_array_push(x_1296, x_1349); +x_1351 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1352 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1352, 0, x_1351); +lean_ctor_set(x_1352, 1, x_1350); +x_1353 = lean_array_push(x_1292, x_1352); +x_1354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1354, 0, x_1319); +lean_ctor_set(x_1354, 1, x_1353); +x_1355 = lean_array_push(x_1321, x_1354); x_1356 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1356, 0, x_1355); -lean_ctor_set(x_1356, 1, x_1354); -x_1357 = lean_array_push(x_1245, x_1356); -x_1358 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; -x_1359 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1359, 0, x_1358); -lean_ctor_set(x_1359, 1, x_1357); -x_1360 = lean_array_push(x_1216, x_1359); +lean_ctor_set(x_1356, 0, x_1323); +lean_ctor_set(x_1356, 1, x_1355); +x_1357 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; +x_1358 = lean_array_push(x_1357, x_1356); +x_1359 = lean_array_push(x_1358, x_1246); +x_1360 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__53; x_1361 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1361, 0, x_1188); -lean_ctor_set(x_1361, 1, x_1360); -x_1362 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1362, 0, x_1361); -lean_ctor_set(x_1362, 1, x_1185); -return x_1362; +lean_ctor_set(x_1361, 0, x_1360); +lean_ctor_set(x_1361, 1, x_1359); +x_1362 = lean_array_push(x_1278, x_1361); +x_1363 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__28; +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_1253, x_1364); +x_1366 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__4; +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_1223, x_1367); +x_1369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1369, 0, x_1195); +lean_ctor_set(x_1369, 1, x_1368); +x_1370 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1370, 0, x_1369); +lean_ctor_set(x_1370, 1, x_1192); +return x_1370; } } } @@ -31160,6 +31389,10 @@ l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___c lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__37); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38(); lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38); +l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39); +l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40); l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1); l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2 = _init_l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2(); @@ -31243,6 +31476,14 @@ l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26 = _init_l_Lean_Elab_Comm lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___lambda__3___closed__26); l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27 = _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27(); lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___lambda__3___closed__27); +l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28 = _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28); +l_Lean_Elab_Command_elabSyntax___lambda__3___closed__29 = _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__29(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___lambda__3___closed__29); +l_Lean_Elab_Command_elabSyntax___lambda__3___closed__30 = _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__30(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___lambda__3___closed__30); +l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31 = _init_l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___lambda__3___closed__31); l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1); l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2 = _init_l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2(); @@ -31448,6 +31689,10 @@ l_Lean_Elab_Command_expandMixfix___lambda__1___closed__31 = _init_l_Lean_Elab_Co lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___lambda__1___closed__31); l_Lean_Elab_Command_expandMixfix___lambda__1___closed__32 = _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__32(); lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___lambda__1___closed__32); +l_Lean_Elab_Command_expandMixfix___lambda__1___closed__33 = _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__33(); +lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___lambda__1___closed__33); +l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34 = _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34(); +lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34); l_Lean_Elab_Command_expandMixfix___closed__1 = _init_l_Lean_Elab_Command_expandMixfix___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__1); l___regBuiltin_Lean_Elab_Command_expandMixfix___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_expandMixfix___closed__1(); @@ -31527,6 +31772,10 @@ l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6 lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7(); lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7); +l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8); +l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___boxed__const__1 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___boxed__const__1(); lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___boxed__const__1); l_Lean_Elab_Command_expandNotation___closed__1 = _init_l_Lean_Elab_Command_expandNotation___closed__1(); @@ -31557,9 +31806,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_14160____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14160____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14160____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14160_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_14634_(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/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index ea6d6b62f5..48f69741ba 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -178,7 +178,6 @@ lean_object* l_Lean_Parser_Term_stx_quot___closed__2; lean_object* l_Lean_Parser_Command_parserKind___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_stx_quot_formatter(lean_object*); -extern lean_object* l_Lean_Parser_Term_attrKind___closed__7; lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_parserPrio_formatter___closed__1; @@ -751,6 +750,7 @@ lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_prefix___closed__2; lean_object* l_Lean_Parser_Command_macroArg___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Term_attrKind___closed__4; lean_object* l_Lean_Parser_Command_notationItem___closed__2; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_optKindPrio_formatter___closed__4; @@ -5977,7 +5977,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix___elambda__1___closed__10 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind___closed__7; +x_1 = l_Lean_Parser_Term_attrKind___closed__4; x_2 = l_Lean_Parser_Command_mixfix___elambda__1___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -7616,7 +7616,7 @@ static lean_object* _init_l_Lean_Parser_Command_notation___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind___closed__7; +x_1 = l_Lean_Parser_Term_attrKind___closed__4; x_2 = l_Lean_Parser_Command_notation___elambda__1___closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -9471,7 +9471,7 @@ static lean_object* _init_l_Lean_Parser_Command_syntax___elambda__1___closed__12 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind___closed__7; +x_1 = l_Lean_Parser_Term_attrKind___closed__4; x_2 = l_Lean_Parser_Command_syntax___elambda__1___closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 57c558ce68..eafba87e1d 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -237,7 +237,6 @@ lean_object* l_Lean_Parser_Term_matchAlts(uint8_t); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_let_formatter___closed__6; lean_object* l_Lean_Parser_Term_namedArgument_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__4; lean_object* l_Lean_Parser_Term_simpleBinder___closed__5; extern lean_object* l_Lean_Parser_leadPrec; @@ -250,11 +249,11 @@ lean_object* l_Lean_Parser_Term_suffices___closed__2; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_stateRefT; lean_object* l_Lean_Parser_Term_ellipsis___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26; lean_object* l_Lean_Parser_Term_letIdLhs___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_explicit___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_let_formatter___closed__1; -lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__10; lean_object* l_Lean_Parser_many(lean_object*); extern lean_object* l_Lean_identKind___closed__1; lean_object* l_Lean_Parser_Term_matchAlts___closed__13; @@ -360,7 +359,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__12; lean_object* l___regBuiltin_Lean_Parser_Term_panic_formatter___closed__1; extern lean_object* l_Lean_Parser_charLit; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__7; -lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__9; lean_object* l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_inaccessible___closed__4; lean_object* l_Lean_Parser_Term_match_formatter___closed__3; @@ -426,7 +424,6 @@ lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer(lean_object*, lean_objec lean_object* l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__2; -lean_object* l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__8; lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__3; @@ -438,6 +435,7 @@ lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__3; lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrInstance___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11; lean_object* l___regBuiltin_Lean_Parser_Term_pipeProj_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__11; lean_object* l_Lean_Parser_Level_quot___closed__4; @@ -471,7 +469,6 @@ lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__3; extern lean_object* l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__1; -lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__7; lean_object* l_Lean_Parser_Term_prop_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_pushNone; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__11; @@ -496,7 +493,6 @@ lean_object* l_Lean_Parser_Term_show___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_cdot___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Term_attrKind___closed__7; lean_object* l_Lean_Parser_Term_pipeProj___elambda__1___closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -518,7 +514,6 @@ lean_object* l_Lean_Parser_Term_have___closed__3; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__7; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__12; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__8; @@ -576,7 +571,6 @@ lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object*, lean_object*, lean_ extern lean_object* l_Lean_Parser_Tactic_matchAlts___closed__1; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__5; -lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__11; lean_object* l___regBuiltin_Lean_Parser_Term_dbgTrace_formatter___closed__1; lean_object* l_Lean_Parser_Term_emptyC___closed__7; lean_object* l_Lean_Parser_Term_type_formatter___closed__6; @@ -669,7 +663,6 @@ lean_object* l_Lean_Parser_Term_bracketedBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__7; lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__11; lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__5; @@ -712,6 +705,7 @@ lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__3; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letRecDecls_formatter___closed__1; lean_object* l_Lean_Parser_Term_optIdent___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16; lean_object* l_Lean_Parser_optional_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -755,7 +749,6 @@ lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__3; lean_object* l_Lean_Parser_Term_structInst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_nativeRefl_formatter(lean_object*); lean_object* l_Lean_Parser_Term_show___closed__6; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkOutsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_attrInstance_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -984,7 +977,6 @@ lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_typeOf_parenthesizer___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__14; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__21; lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_basicFun_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1041,12 +1033,10 @@ lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_str; lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__6; lean_object* l_Lean_Parser_Term_decide___closed__5; lean_object* l_Lean_Parser_Term_structInstLVal___closed__5; lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__23; lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_subst___closed__1; @@ -1081,6 +1071,7 @@ lean_object* l_Lean_Parser_Term_arrayRef___closed__5; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_parserOfStack_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19; lean_object* l_Lean_Parser_Term_hole_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); @@ -1099,6 +1090,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__17; extern lean_object* l_Lean_Parser_sepByScopeSuffixes_formatter___closed__7; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_whereDecls___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__7; lean_object* l_Lean_Parser_Term_letRecDecls___closed__7; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__8; @@ -1147,7 +1139,6 @@ lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__5; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1135____closed__10; lean_object* l___regBuiltinParser_Lean_Parser_Term_app(lean_object*); lean_object* l_Lean_Parser_Term_structInst___closed__9; -lean_object* l_Lean_Parser_Term_attrKind___closed__6; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_dbgTrace___closed__1; lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__2; @@ -1155,6 +1146,7 @@ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4____closed__4; lean_object* l_Lean_Parser_Term_hole___closed__4; lean_object* l_Lean_Parser_Term_structInstLVal___closed__3; lean_object* l_Lean_Parser_Term_fun___closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__6; extern lean_object* l_Lean_Parser_numLit___closed__2; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1166,7 +1158,6 @@ lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__28; lean_object* l_Lean_Parser_Term_assert___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_checkOutsideQuot___closed__1; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_letDecl___closed__6; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; @@ -1242,11 +1233,11 @@ lean_object* l_Lean_Parser_Term_type___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_attributes___closed__3; lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInst_formatter___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4; lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__3; extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2508____closed__3; lean_object* l_Lean_Parser_Term_match___closed__6; lean_object* l_Lean_Parser_Term_scientific___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__17; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13592____closed__2; extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__24; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__18; @@ -1273,7 +1264,6 @@ extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____c lean_object* l_Lean_Parser_Term_show___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__7; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__16; -lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_match_formatter___closed__8; extern lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__1; @@ -1299,6 +1289,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_unreachable_parenthesizer___closed_ lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_assert___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_sufficesDecl___closed__3; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__8; @@ -1341,6 +1332,7 @@ lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_decide_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__13; lean_object* l___regBuiltin_Lean_Parser_Term_let_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1; lean_object* l_Lean_Parser_Term_attributes___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_binderTactic; @@ -1442,7 +1434,7 @@ lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__3; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__2; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__1; extern lean_object* l_Lean_getBuiltinSearchPath___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17; lean_object* l_Lean_Parser_Term_letDecl___closed__10; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__3; @@ -1475,6 +1467,7 @@ lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__3; extern lean_object* l_Lean_instToStringAttributeKind___closed__2; lean_object* l_Lean_Parser_Term_haveDecl___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8; lean_object* l_Lean_Parser_Term_letPatDecl___closed__5; lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__1; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__7; @@ -1563,6 +1556,7 @@ lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_macroDollarArg___closed__5; lean_object* l_Lean_Parser_Term_paren_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; lean_object* l_Lean_Parser_Term_fun___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__4; @@ -1607,7 +1601,6 @@ lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__9; lean_object* l_Lean_Parser_Term_have_formatter___closed__5; lean_object* l_Lean_Parser_Term_structInst___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__14; -lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__11; lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__5; @@ -1635,7 +1628,6 @@ lean_object* l_Lean_Parser_Term_quotedName_formatter(lean_object*, lean_object*, lean_object* l_Lean_Parser_Term_explicitBinder___closed__5; lean_object* l_Lean_Parser_Term_letIdLhs___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__1; lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_typeOf___closed__1; @@ -1678,7 +1670,6 @@ lean_object* l_Lean_Parser_Term_sufficesDecl_formatter(lean_object*, lean_object lean_object* l_Lean_Parser_Term_show_formatter___closed__3; lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__19; lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_paren___closed__6; lean_object* l_Lean_Parser_Term_unreachable___elambda__1___closed__5; @@ -1834,6 +1825,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_num(lean_object*); lean_object* l_Lean_Parser_Term_app_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quot___closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__36; lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__1; @@ -1910,7 +1902,6 @@ lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__4; lean_object* l_Lean_Parser_interpolatedStr(lean_object*); lean_object* l_Lean_Parser_Term_haveDecl_formatter___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__18; lean_object* l_Lean_Parser_Term_letPatDecl___closed__7; lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__9; @@ -1947,7 +1938,6 @@ extern lean_object* l_Lean_Parser_sepByScopeSuffixes___closed__2; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__8; lean_object* l_Lean_Parser_registerBuiltinParserAttribute(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_tacticParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__9; lean_object* l_Lean_Parser_Term_binderTactic___closed__1; lean_object* l_Lean_Parser_Term_let_x21; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__3; @@ -1963,12 +1953,10 @@ lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer(lean_object*, lean_ob lean_object* l_Lean_Parser_Term_byTactic___closed__7; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__16; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__7; lean_object* l_Lean_Parser_Term_structInst___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___closed__9; lean_object* l_Lean_Parser_Tactic_quotSeq_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_match___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__3; lean_object* l_Lean_Parser_Term_sorry_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__2; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__7; @@ -1992,6 +1980,7 @@ lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__4; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_letrec_formatter___closed__1; lean_object* l_Lean_Parser_Term_arrow___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13; lean_object* l_Lean_Parser_Term_explicit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicit___closed__7; @@ -2021,6 +2010,7 @@ lean_object* l_Lean_Parser_Term_app___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType; lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match_formatter___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18; lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__6; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_let_x2a_formatter(lean_object*); @@ -2074,6 +2064,7 @@ lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__2; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__23; lean_object* l_Lean_Parser_Term_prop___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15; lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forall_formatter___closed__8; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__6; @@ -2085,11 +2076,11 @@ lean_object* l_Lean_Parser_Term_funBinder_quot; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__3; lean_object* l_Lean_Parser_Term_show_formatter___closed__4; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__7; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_ensureExpectedType_formatter___closed__1; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___closed__12; lean_object* l_Lean_Parser_Term_nomatch___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__24; lean_object* l_Lean_Parser_Term_attributes___closed__2; lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; @@ -2114,6 +2105,7 @@ extern lean_object* l_Lean_Parser_Tactic_have___closed__3; lean_object* l_Lean_Parser_Term_have_formatter___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_have(lean_object*); lean_object* l_Lean_Parser_sepBy1_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5; lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__7; lean_object* l___regBuiltin_Lean_Parser_Term_sort_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; @@ -2176,6 +2168,7 @@ lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25; lean_object* l_Lean_Parser_Term_letEqnsDecl_formatter___closed__1; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2; @@ -2198,10 +2191,10 @@ lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__3; extern lean_object* l_Lean_Parser_rawIdent___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__28; lean_object* l_Lean_Parser_Term_prop___closed__3; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_proj___closed__1; -lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__8; lean_object* l_Lean_Parser_Term_forall_formatter___closed__4; lean_object* l_Lean_Parser_Term_letIdLhs___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_withPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2228,6 +2221,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter(lean_object*, lea lean_object* l_Lean_Parser_Term_letrec___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14; lean_object* l_Lean_Parser_Term_prop___closed__5; lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__5; lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2266,18 +2260,15 @@ lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__10; extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; lean_object* l_Lean_Parser_Term_arrow_formatter___closed__1; lean_object* l_Lean_Parser_Term_binderDefault___closed__4; -lean_object* l_Lean_Parser_Term_attrKind___closed__8; lean_object* l_Lean_Parser_Term_inaccessible_formatter___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_emptyC_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__3; lean_object* l_Lean_Parser_Term_structInstLVal___closed__2; lean_object* l_Lean_Parser_Term_let_x2a_parenthesizer___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__8; lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__5; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__13; lean_object* l_Lean_Parser_Term_have_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_checkInsideQuot___closed__1; lean_object* l_Lean_Parser_Term_cdot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___closed__6; @@ -2297,7 +2288,6 @@ lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_binderIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__9; lean_object* l_Lean_Parser_Term_nomatch___closed__1; lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__1; @@ -2319,7 +2309,6 @@ lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__4; lean_object* l_Lean_Parser_Term_byTactic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__7; lean_object* l_Lean_Parser_Term_dynamicQuot___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__4; lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__9; lean_object* l_Lean_Parser_sepBy1(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Term_match__syntax___closed__1; @@ -2333,6 +2322,7 @@ lean_object* l_Lean_Parser_Term_macroDollarArg_formatter(lean_object*, lean_obje lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_let_formatter___closed__4; lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22; lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_formatter(lean_object*); lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2478,7 +2468,6 @@ lean_object* l_Lean_Parser_Term_instBinder___closed__1; lean_object* l_Lean_Parser_Term_bracketedBinder___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Tactic_suffices___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__14; lean_object* l___regBuiltin_Lean_Parser_Term_scientific_formatter(lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13266____closed__2; lean_object* l_Lean_Parser_Term_dbgTrace_parenthesizer___closed__3; @@ -2533,6 +2522,7 @@ lean_object* l_Lean_Parser_Term_ensureExpectedType_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_char_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_paren_formatter___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__10; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27; lean_object* l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_binderType___closed__1; @@ -2587,7 +2577,6 @@ lean_object* l_Lean_Parser_Term_letrec___elambda__1___lambda__1___boxed(lean_obj lean_object* l_Lean_Parser_Term_let_x2a_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dynamicQuot_formatter___closed__4; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__8; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__8; @@ -2606,6 +2595,7 @@ lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_num; lean_object* l_Lean_Parser_Term_stateRefT_formatter___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_decide_formatter___closed__1; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__5; @@ -2664,7 +2654,6 @@ lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_object*, lean_o lean_object* l_Lean_Parser_Term_typeAscription___closed__4; lean_object* l_Lean_Parser_Term_letRecDecls_formatter___closed__3; lean_object* l_Lean_Parser_Term_ensureTypeOf_parenthesizer___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__13; lean_object* l_Lean_Parser_Term_binderType___closed__2; lean_object* l_Lean_Parser_Term_borrowed___closed__5; lean_object* l_Lean_Parser_Term_explicitUniv___closed__8; @@ -2673,7 +2662,6 @@ lean_object* l_Lean_Parser_Term_letPatDecl_formatter___closed__5; lean_object* l_Lean_Parser_Term_let_x2a_formatter___closed__5; lean_object* l_Lean_Parser_Term_suffices_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_funBinder_quot_formatter(lean_object*); -lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_syntheticHole_formatter___closed__2; @@ -2702,7 +2690,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_forall_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_instBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_assert___closed__3; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__22; lean_object* l_Lean_Parser_Term_namedPattern___closed__1; lean_object* l_Lean_Parser_Term_haveDecl_formatter___closed__5; lean_object* l_Lean_Parser_Term_cdot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2741,6 +2728,7 @@ lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__1; lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_ensureTypeOf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__1; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4; @@ -2812,7 +2800,6 @@ lean_object* l_Lean_Parser_Tactic_quot___closed__7; lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_letIdDecl___closed__5; lean_object* l_Lean_Parser_Term_match___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__5; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_char___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr_formatter___closed__5; @@ -2821,6 +2808,7 @@ lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__5; lean_object* l_Lean_Parser_Term_letrec___closed__5; lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7; lean_object* l_Lean_Parser_Term_instBinder_formatter___closed__2; lean_object* l_Lean_Parser_Term_let_formatter___closed__3; lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__2; @@ -2881,7 +2869,6 @@ lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__8; lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_dynamicQuot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__5; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__15; lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__15; lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; @@ -2892,6 +2879,7 @@ lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_macroDollarArg___closed__1; lean_object* l_Lean_Parser_Term_tupleTail___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__6; lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_attrArg; @@ -2943,7 +2931,6 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_typeOf(lean_object*); lean_object* l_Lean_Parser_Term_haveAssign_formatter___closed__4; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__3; -lean_object* l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_cdot_formatter(lean_object*); lean_object* l_Lean_Parser_Term_explicit_formatter___closed__3; @@ -3033,7 +3020,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer(lean_ob lean_object* l_Lean_Parser_Term_type_formatter___closed__3; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__2; lean_object* l_String_trim(lean_object*); -lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_ellipsis_formatter___closed__2; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2467____closed__3; lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__5; @@ -3125,7 +3111,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_structInst_formatter___closed__1; lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__2; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__4; -lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__10; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_parser_x21___closed__4; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__6; @@ -3298,6 +3283,7 @@ lean_object* l_Lean_Parser_Term_basicFun___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_namedPattern_formatter(lean_object*); lean_object* l_Lean_Parser_Term_have___closed__5; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_unreachable_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___closed__2; lean_object* l_Lean_Parser_Term_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3327,7 +3313,6 @@ lean_object* l_Lean_Parser_Term_haveAssign_formatter___closed__1; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_sort_parenthesizer___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__20; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_proj___closed__6; lean_object* l_Lean_Parser_Term_type___closed__4; @@ -3352,7 +3337,6 @@ lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_hole(lean_object*); lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__16; lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_local___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__4; @@ -3510,7 +3494,7 @@ lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; lean_object* l_Lean_Parser_checkWsBefore___elambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4_(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542_(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526_(lean_object*); lean_object* l_Lean_Parser_Term_parenSpecial_formatter___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_match_formatter(lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___closed__6; @@ -3554,7 +3538,6 @@ lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__2; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match__syntax_formatter___closed__2; lean_object* l_Lean_Parser_Term_byTactic___closed__2; lean_object* l_Lean_Parser_Term_attrKind___closed__5; @@ -3571,7 +3554,6 @@ lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_attrInstance___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__10; lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__8; lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__4; @@ -29488,6 +29470,45 @@ return x_1; static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__1() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("attrKind"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__3; +x_3 = 1; +x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__5() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Parser_Term_scoped; x_2 = lean_ctor_get(x_1, 0); @@ -29499,7 +29520,7 @@ x_5 = l_Lean_Parser_orelseInfo(x_2, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__2() { +static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -29511,56 +29532,15 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__2; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__3; -x_2 = l_Lean_Parser_optional(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__4; -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_Term_attrKind___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("attrKind"); -return x_1; -} -} static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__5; x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__6; -x_3 = lean_name_mk_string(x_1, x_2); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); return x_3; } } @@ -29569,68 +29549,30 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__7; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_2 = l_Lean_Parser_optional(x_1); return x_2; } } static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__6; -x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__8; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__4; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__8; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_attrKind___elambda__1___closed__7; +x_3 = l_Lean_Parser_Term_attrKind___elambda__1___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_4, 0, x_3); lean_closure_set(x_4, 1, x_2); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__11() { +static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; -x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__9; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_attrKind___elambda__1___closed__11; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_4, 0, x_2); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_checkInsideQuot___closed__1; -x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__12; +x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -29640,81 +29582,51 @@ return x_3; lean_object* l_Lean_Parser_Term_attrKind___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; -x_3 = l_Lean_Parser_Term_attrKind___elambda__1___closed__5; -x_4 = l_Lean_Parser_Term_attrKind___elambda__1___closed__13; -x_5 = 1; -x_6 = l_Lean_Parser_orelseFnCore(x_3, x_4, x_5, x_1, x_2); -return x_6; +lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; +x_3 = l_Lean_Parser_Term_attrKind___elambda__1___closed__4; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +x_5 = l_Lean_Parser_Term_attrKind___elambda__1___closed__10; +x_6 = 1; +x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); +return x_7; } } static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__4; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__8; 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_Term_attrKind___elambda__1___closed__2; +x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } } static lean_object* _init_l_Lean_Parser_Term_attrKind___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_attrKind___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_attrKind___elambda__1___closed__7; -x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Term_attrKind___closed__1; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Term_attrKind___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__4() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__9; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_attrKind___closed__3; +x_3 = l_Lean_Parser_Term_attrKind___closed__2; x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind___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_Term_attrKind___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind___closed__1; -x_2 = l_Lean_Parser_Term_attrKind___closed__5; -x_3 = l_Lean_Parser_orelseInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__7() { +static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__4() { _start: { lean_object* x_1; @@ -29722,12 +29634,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_attrKind___elambda__1), 2, 0 return x_1; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__8() { +static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind___closed__6; -x_2 = l_Lean_Parser_Term_attrKind___closed__7; +x_1 = l_Lean_Parser_Term_attrKind___closed__3; +x_2 = l_Lean_Parser_Term_attrKind___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); @@ -29738,7 +29650,7 @@ static lean_object* _init_l_Lean_Parser_Term_attrKind() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Term_attrKind___closed__8; +x_1 = l_Lean_Parser_Term_attrKind___closed__5; return x_1; } } @@ -29826,7 +29738,7 @@ static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind___closed__7; +x_1 = l_Lean_Parser_Term_attrKind___closed__4; x_2 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -31006,67 +30918,9 @@ return x_8; static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_scoped_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_local_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__1; -x_2 = l_Lean_Parser_Term_attrKind_formatter___closed__2; -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_Term_attrKind_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_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_Term_attrKind_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__5; -x_2 = l_Lean_Parser_Term_attrKind_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__7() { -_start: -{ lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__6; -x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__8; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__3; x_3 = 1; x_4 = lean_box(x_3); x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); @@ -31076,13 +30930,51 @@ lean_closure_set(x_5, 2, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__8() { +static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_scoped_formatter), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_local_formatter), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__2; +x_2 = l_Lean_Parser_Term_attrKind_formatter___closed__3; +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_Term_attrKind_formatter___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__7; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_attrKind_formatter___closed__4; +x_3 = l_Lean_Parser_Term_attrKind_formatter___closed__5; 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); @@ -31090,44 +30982,12 @@ lean_closure_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__7; -x_2 = l_Lean_Parser_Term_attrKind_formatter___closed__8; -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_Term_attrKind_formatter___closed__10() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__10; -x_2 = l_Lean_Parser_Term_attrKind_formatter___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} lean_object* l_Lean_Parser_Term_attrKind_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Term_attrKind_formatter___closed__6; -x_7 = l_Lean_Parser_Term_attrKind_formatter___closed__11; +x_6 = l_Lean_Parser_Term_attrKind_formatter___closed__1; +x_7 = l_Lean_Parser_Term_attrKind_formatter___closed__6; 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; } @@ -31630,66 +31490,8 @@ return x_8; static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_scoped_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_local_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__2; -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_Term_attrKind_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_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_Term_attrKind_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__7() { -_start: -{ lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__8; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__3; x_2 = 1; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); @@ -31698,13 +31500,51 @@ lean_closure_set(x_4, 1, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__8() { +static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_scoped_parenthesizer), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_local_parenthesizer), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__3; +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_Term_attrKind_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__7; +x_1 = l_Lean_Parser_Term_attrKind___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__4; +x_3 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__5; 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); @@ -31712,44 +31552,12 @@ lean_closure_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__7; -x_2 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__8; -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_Term_attrKind_parenthesizer___closed__10() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__10; -x_2 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} lean_object* l_Lean_Parser_Term_attrKind_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__6; -x_7 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__11; +x_6 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__1; +x_7 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__6; 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; } @@ -43809,7 +43617,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -43819,7 +43627,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -43829,7 +43637,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -43839,7 +43647,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -43849,7 +43657,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -43859,7 +43667,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -43869,7 +43677,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -43879,7 +43687,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -43889,7 +43697,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -43899,7 +43707,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -43909,7 +43717,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -43919,7 +43727,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -43929,7 +43737,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -43939,7 +43747,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -43949,7 +43757,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -43959,7 +43767,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -43969,7 +43777,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -43979,7 +43787,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -43989,7 +43797,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -43999,7 +43807,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -44009,7 +43817,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -44019,7 +43827,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -44029,7 +43837,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -44039,7 +43847,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -44049,13 +43857,53 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542_(lean_object* x_1) { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Term_attrKind___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrKind; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__7; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Parser_parserAliasesRef; x_3 = l_Lean_Parser_Tactic_let___closed__4; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__1; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -44064,7 +43912,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__2; +x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -44073,7 +43921,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__3; +x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -44082,7 +43930,7 @@ x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); x_15 = l_Lean_Parser_Tactic_have___closed__6; -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__4; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -44090,7 +43938,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__5; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -44098,7 +43946,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__6; +x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -44107,7 +43955,7 @@ x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); x_25 = l_Lean_Parser_Tactic_suffices___closed__6; -x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__7; +x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7; x_27 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_26, x_24); if (lean_obj_tag(x_27) == 0) { @@ -44115,7 +43963,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); lean_dec(x_27); -x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__8; +x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8; x_30 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_29, x_28); if (lean_obj_tag(x_30) == 0) { @@ -44123,7 +43971,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); lean_dec(x_30); -x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__9; +x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_32, x_31); if (lean_obj_tag(x_33) == 0) { @@ -44132,7 +43980,7 @@ x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); x_35 = l_Lean_Parser_Tactic_letrec___closed__12; -x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__10; +x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -44140,7 +43988,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__11; +x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11; x_40 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_35, x_39, x_38); if (lean_obj_tag(x_40) == 0) { @@ -44148,7 +43996,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_ctor_get(x_40, 1); lean_inc(x_41); lean_dec(x_40); -x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__12; +x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12; x_43 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_35, x_42, x_41); if (lean_obj_tag(x_43) == 0) { @@ -44157,7 +44005,7 @@ x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec(x_43); x_45 = l_Lean_Parser_Tactic_inductionAlt___closed__6; -x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__13; +x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_45, x_46, x_44); if (lean_obj_tag(x_47) == 0) { @@ -44165,7 +44013,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__14; +x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_45, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -44173,7 +44021,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__15; +x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15; x_53 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_45, x_52, x_51); if (lean_obj_tag(x_53) == 0) { @@ -44182,7 +44030,7 @@ x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); lean_dec(x_53); x_55 = l_Lean_Parser_Tactic_inductionAlt___closed__9; -x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__16; +x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16; x_57 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_55, x_56, x_54); if (lean_obj_tag(x_57) == 0) { @@ -44190,7 +44038,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec(x_57); -x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__17; +x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17; x_60 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_55, x_59, x_58); if (lean_obj_tag(x_60) == 0) { @@ -44198,7 +44046,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__18; +x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_55, x_62, x_61); if (lean_obj_tag(x_63) == 0) { @@ -44207,7 +44055,7 @@ x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); lean_dec(x_63); x_65 = l_Lean_Parser_Tactic_match___closed__6; -x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__19; +x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19; x_67 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_65, x_66, x_64); if (lean_obj_tag(x_67) == 0) { @@ -44215,7 +44063,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec(x_67); -x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__20; +x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20; x_70 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_65, x_69, x_68); if (lean_obj_tag(x_70) == 0) { @@ -44223,7 +44071,7 @@ lean_object* x_71; lean_object* x_72; lean_object* x_73; x_71 = lean_ctor_get(x_70, 1); lean_inc(x_71); lean_dec(x_70); -x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__21; +x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21; x_73 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_65, x_72, x_71); if (lean_obj_tag(x_73) == 0) { @@ -44232,7 +44080,7 @@ x_74 = lean_ctor_get(x_73, 1); lean_inc(x_74); lean_dec(x_73); x_75 = l_Lean_commandScopedLocalUnif__hint______Where___x7c_x2d_u22a2_____closed__15; -x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__22; +x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22; x_77 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_75, x_76, x_74); if (lean_obj_tag(x_77) == 0) { @@ -44240,7 +44088,7 @@ lean_object* x_78; lean_object* x_79; lean_object* x_80; x_78 = lean_ctor_get(x_77, 1); lean_inc(x_78); lean_dec(x_77); -x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__23; +x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23; x_80 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_75, x_79, x_78); if (lean_obj_tag(x_80) == 0) { @@ -44248,536 +44096,630 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; x_81 = lean_ctor_get(x_80, 1); lean_inc(x_81); lean_dec(x_80); -x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__24; +x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24; x_83 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_75, x_82, x_81); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_84 = lean_ctor_get(x_83, 1); +lean_inc(x_84); +lean_dec(x_83); +x_85 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25; +x_86 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26; +x_87 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_85, x_86, x_84); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_87, 1); +lean_inc(x_88); +lean_dec(x_87); +x_89 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27; +x_90 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_85, x_89, x_88); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_90, 1); +lean_inc(x_91); +lean_dec(x_90); +x_92 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__28; +x_93 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_85, x_92, x_91); +return x_93; +} +else +{ +uint8_t x_94; +x_94 = !lean_is_exclusive(x_90); +if (x_94 == 0) +{ +return x_90; +} +else +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_95 = lean_ctor_get(x_90, 0); +x_96 = lean_ctor_get(x_90, 1); +lean_inc(x_96); +lean_inc(x_95); +lean_dec(x_90); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_95); +lean_ctor_set(x_97, 1, x_96); +return x_97; +} +} +} +else +{ +uint8_t x_98; +x_98 = !lean_is_exclusive(x_87); +if (x_98 == 0) +{ +return x_87; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_87, 0); +x_100 = lean_ctor_get(x_87, 1); +lean_inc(x_100); +lean_inc(x_99); +lean_dec(x_87); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +return x_101; +} +} +} +else +{ +uint8_t x_102; +x_102 = !lean_is_exclusive(x_83); +if (x_102 == 0) +{ return x_83; } else { -uint8_t x_84; -x_84 = !lean_is_exclusive(x_80); -if (x_84 == 0) +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_83, 0); +x_104 = lean_ctor_get(x_83, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_83); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; +} +} +} +else +{ +uint8_t x_106; +x_106 = !lean_is_exclusive(x_80); +if (x_106 == 0) { return x_80; } else { -lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_85 = lean_ctor_get(x_80, 0); -x_86 = lean_ctor_get(x_80, 1); -lean_inc(x_86); -lean_inc(x_85); +lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_107 = lean_ctor_get(x_80, 0); +x_108 = lean_ctor_get(x_80, 1); +lean_inc(x_108); +lean_inc(x_107); lean_dec(x_80); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_86); -return x_87; +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +return x_109; } } } else { -uint8_t x_88; -x_88 = !lean_is_exclusive(x_77); -if (x_88 == 0) +uint8_t x_110; +x_110 = !lean_is_exclusive(x_77); +if (x_110 == 0) { return x_77; } else { -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_77, 0); -x_90 = lean_ctor_get(x_77, 1); -lean_inc(x_90); -lean_inc(x_89); +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_77, 0); +x_112 = lean_ctor_get(x_77, 1); +lean_inc(x_112); +lean_inc(x_111); lean_dec(x_77); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_90); -return x_91; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +return x_113; } } } else { -uint8_t x_92; -x_92 = !lean_is_exclusive(x_73); -if (x_92 == 0) +uint8_t x_114; +x_114 = !lean_is_exclusive(x_73); +if (x_114 == 0) { return x_73; } else { -lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_73, 0); -x_94 = lean_ctor_get(x_73, 1); -lean_inc(x_94); -lean_inc(x_93); +lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_115 = lean_ctor_get(x_73, 0); +x_116 = lean_ctor_get(x_73, 1); +lean_inc(x_116); +lean_inc(x_115); lean_dec(x_73); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_93); -lean_ctor_set(x_95, 1, x_94); -return x_95; +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +return x_117; } } } else { -uint8_t x_96; -x_96 = !lean_is_exclusive(x_70); -if (x_96 == 0) +uint8_t x_118; +x_118 = !lean_is_exclusive(x_70); +if (x_118 == 0) { return x_70; } else { -lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_97 = lean_ctor_get(x_70, 0); -x_98 = lean_ctor_get(x_70, 1); -lean_inc(x_98); -lean_inc(x_97); +lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_119 = lean_ctor_get(x_70, 0); +x_120 = lean_ctor_get(x_70, 1); +lean_inc(x_120); +lean_inc(x_119); lean_dec(x_70); -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_97); -lean_ctor_set(x_99, 1, x_98); -return x_99; +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_119); +lean_ctor_set(x_121, 1, x_120); +return x_121; } } } else { -uint8_t x_100; -x_100 = !lean_is_exclusive(x_67); -if (x_100 == 0) +uint8_t x_122; +x_122 = !lean_is_exclusive(x_67); +if (x_122 == 0) { return x_67; } else { -lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_101 = lean_ctor_get(x_67, 0); -x_102 = lean_ctor_get(x_67, 1); -lean_inc(x_102); -lean_inc(x_101); +lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_123 = lean_ctor_get(x_67, 0); +x_124 = lean_ctor_get(x_67, 1); +lean_inc(x_124); +lean_inc(x_123); lean_dec(x_67); -x_103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_103, 0, x_101); -lean_ctor_set(x_103, 1, x_102); -return x_103; +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_123); +lean_ctor_set(x_125, 1, x_124); +return x_125; } } } else { -uint8_t x_104; -x_104 = !lean_is_exclusive(x_63); -if (x_104 == 0) +uint8_t x_126; +x_126 = !lean_is_exclusive(x_63); +if (x_126 == 0) { return x_63; } else { -lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_105 = lean_ctor_get(x_63, 0); -x_106 = lean_ctor_get(x_63, 1); -lean_inc(x_106); -lean_inc(x_105); +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_63, 0); +x_128 = lean_ctor_get(x_63, 1); +lean_inc(x_128); +lean_inc(x_127); lean_dec(x_63); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_105); -lean_ctor_set(x_107, 1, x_106); -return x_107; +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_127); +lean_ctor_set(x_129, 1, x_128); +return x_129; } } } else { -uint8_t x_108; -x_108 = !lean_is_exclusive(x_60); -if (x_108 == 0) +uint8_t x_130; +x_130 = !lean_is_exclusive(x_60); +if (x_130 == 0) { return x_60; } else { -lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_109 = lean_ctor_get(x_60, 0); -x_110 = lean_ctor_get(x_60, 1); -lean_inc(x_110); -lean_inc(x_109); +lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_131 = lean_ctor_get(x_60, 0); +x_132 = lean_ctor_get(x_60, 1); +lean_inc(x_132); +lean_inc(x_131); lean_dec(x_60); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_109); -lean_ctor_set(x_111, 1, x_110); -return x_111; +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_131); +lean_ctor_set(x_133, 1, x_132); +return x_133; } } } else { -uint8_t x_112; -x_112 = !lean_is_exclusive(x_57); -if (x_112 == 0) +uint8_t x_134; +x_134 = !lean_is_exclusive(x_57); +if (x_134 == 0) { return x_57; } else { -lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_113 = lean_ctor_get(x_57, 0); -x_114 = lean_ctor_get(x_57, 1); -lean_inc(x_114); -lean_inc(x_113); +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_57, 0); +x_136 = lean_ctor_get(x_57, 1); +lean_inc(x_136); +lean_inc(x_135); lean_dec(x_57); -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_113); -lean_ctor_set(x_115, 1, x_114); -return x_115; +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +return x_137; } } } else { -uint8_t x_116; -x_116 = !lean_is_exclusive(x_53); -if (x_116 == 0) +uint8_t x_138; +x_138 = !lean_is_exclusive(x_53); +if (x_138 == 0) { return x_53; } else { -lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_117 = lean_ctor_get(x_53, 0); -x_118 = lean_ctor_get(x_53, 1); -lean_inc(x_118); -lean_inc(x_117); +lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_53, 0); +x_140 = lean_ctor_get(x_53, 1); +lean_inc(x_140); +lean_inc(x_139); lean_dec(x_53); -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_117); -lean_ctor_set(x_119, 1, x_118); -return x_119; +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_139); +lean_ctor_set(x_141, 1, x_140); +return x_141; } } } else { -uint8_t x_120; -x_120 = !lean_is_exclusive(x_50); -if (x_120 == 0) +uint8_t x_142; +x_142 = !lean_is_exclusive(x_50); +if (x_142 == 0) { return x_50; } else { -lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_121 = lean_ctor_get(x_50, 0); -x_122 = lean_ctor_get(x_50, 1); -lean_inc(x_122); -lean_inc(x_121); +lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_143 = lean_ctor_get(x_50, 0); +x_144 = lean_ctor_get(x_50, 1); +lean_inc(x_144); +lean_inc(x_143); lean_dec(x_50); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_121); -lean_ctor_set(x_123, 1, x_122); -return x_123; +x_145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +return x_145; } } } else { -uint8_t x_124; -x_124 = !lean_is_exclusive(x_47); -if (x_124 == 0) +uint8_t x_146; +x_146 = !lean_is_exclusive(x_47); +if (x_146 == 0) { return x_47; } else { -lean_object* x_125; lean_object* x_126; lean_object* x_127; -x_125 = lean_ctor_get(x_47, 0); -x_126 = lean_ctor_get(x_47, 1); -lean_inc(x_126); -lean_inc(x_125); +lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_147 = lean_ctor_get(x_47, 0); +x_148 = lean_ctor_get(x_47, 1); +lean_inc(x_148); +lean_inc(x_147); lean_dec(x_47); -x_127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_127, 0, x_125); -lean_ctor_set(x_127, 1, x_126); -return x_127; +x_149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_149, 0, x_147); +lean_ctor_set(x_149, 1, x_148); +return x_149; } } } else { -uint8_t x_128; -x_128 = !lean_is_exclusive(x_43); -if (x_128 == 0) +uint8_t x_150; +x_150 = !lean_is_exclusive(x_43); +if (x_150 == 0) { return x_43; } else { -lean_object* x_129; lean_object* x_130; lean_object* x_131; -x_129 = lean_ctor_get(x_43, 0); -x_130 = lean_ctor_get(x_43, 1); -lean_inc(x_130); -lean_inc(x_129); +lean_object* x_151; lean_object* x_152; lean_object* x_153; +x_151 = lean_ctor_get(x_43, 0); +x_152 = lean_ctor_get(x_43, 1); +lean_inc(x_152); +lean_inc(x_151); lean_dec(x_43); -x_131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_131, 0, x_129); -lean_ctor_set(x_131, 1, x_130); -return x_131; +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_151); +lean_ctor_set(x_153, 1, x_152); +return x_153; } } } else { -uint8_t x_132; -x_132 = !lean_is_exclusive(x_40); -if (x_132 == 0) +uint8_t x_154; +x_154 = !lean_is_exclusive(x_40); +if (x_154 == 0) { return x_40; } else { -lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_133 = lean_ctor_get(x_40, 0); -x_134 = lean_ctor_get(x_40, 1); -lean_inc(x_134); -lean_inc(x_133); +lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_155 = lean_ctor_get(x_40, 0); +x_156 = lean_ctor_get(x_40, 1); +lean_inc(x_156); +lean_inc(x_155); lean_dec(x_40); -x_135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_135, 0, x_133); -lean_ctor_set(x_135, 1, x_134); -return x_135; +x_157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +return x_157; } } } else { -uint8_t x_136; -x_136 = !lean_is_exclusive(x_37); -if (x_136 == 0) +uint8_t x_158; +x_158 = !lean_is_exclusive(x_37); +if (x_158 == 0) { return x_37; } else { -lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_137 = lean_ctor_get(x_37, 0); -x_138 = lean_ctor_get(x_37, 1); -lean_inc(x_138); -lean_inc(x_137); +lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_159 = lean_ctor_get(x_37, 0); +x_160 = lean_ctor_get(x_37, 1); +lean_inc(x_160); +lean_inc(x_159); lean_dec(x_37); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -return x_139; +x_161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +return x_161; } } } else { -uint8_t x_140; -x_140 = !lean_is_exclusive(x_33); -if (x_140 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_33); +if (x_162 == 0) { return x_33; } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_141 = lean_ctor_get(x_33, 0); -x_142 = lean_ctor_get(x_33, 1); -lean_inc(x_142); -lean_inc(x_141); +lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_163 = lean_ctor_get(x_33, 0); +x_164 = lean_ctor_get(x_33, 1); +lean_inc(x_164); +lean_inc(x_163); lean_dec(x_33); -x_143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -return x_143; +x_165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_165, 0, x_163); +lean_ctor_set(x_165, 1, x_164); +return x_165; } } } else { -uint8_t x_144; -x_144 = !lean_is_exclusive(x_30); -if (x_144 == 0) +uint8_t x_166; +x_166 = !lean_is_exclusive(x_30); +if (x_166 == 0) { return x_30; } else { -lean_object* x_145; lean_object* x_146; lean_object* x_147; -x_145 = lean_ctor_get(x_30, 0); -x_146 = lean_ctor_get(x_30, 1); -lean_inc(x_146); -lean_inc(x_145); +lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_167 = lean_ctor_get(x_30, 0); +x_168 = lean_ctor_get(x_30, 1); +lean_inc(x_168); +lean_inc(x_167); lean_dec(x_30); -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_145); -lean_ctor_set(x_147, 1, x_146); -return x_147; +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_167); +lean_ctor_set(x_169, 1, x_168); +return x_169; } } } else { -uint8_t x_148; -x_148 = !lean_is_exclusive(x_27); -if (x_148 == 0) +uint8_t x_170; +x_170 = !lean_is_exclusive(x_27); +if (x_170 == 0) { return x_27; } else { -lean_object* x_149; lean_object* x_150; lean_object* x_151; -x_149 = lean_ctor_get(x_27, 0); -x_150 = lean_ctor_get(x_27, 1); -lean_inc(x_150); -lean_inc(x_149); +lean_object* x_171; lean_object* x_172; lean_object* x_173; +x_171 = lean_ctor_get(x_27, 0); +x_172 = lean_ctor_get(x_27, 1); +lean_inc(x_172); +lean_inc(x_171); lean_dec(x_27); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_149); -lean_ctor_set(x_151, 1, x_150); -return x_151; +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_171); +lean_ctor_set(x_173, 1, x_172); +return x_173; } } } else { -uint8_t x_152; -x_152 = !lean_is_exclusive(x_23); -if (x_152 == 0) +uint8_t x_174; +x_174 = !lean_is_exclusive(x_23); +if (x_174 == 0) { return x_23; } else { -lean_object* x_153; lean_object* x_154; lean_object* x_155; -x_153 = lean_ctor_get(x_23, 0); -x_154 = lean_ctor_get(x_23, 1); -lean_inc(x_154); -lean_inc(x_153); +lean_object* x_175; lean_object* x_176; lean_object* x_177; +x_175 = lean_ctor_get(x_23, 0); +x_176 = lean_ctor_get(x_23, 1); +lean_inc(x_176); +lean_inc(x_175); lean_dec(x_23); -x_155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_155, 0, x_153); -lean_ctor_set(x_155, 1, x_154); -return x_155; +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_175); +lean_ctor_set(x_177, 1, x_176); +return x_177; } } } else { -uint8_t x_156; -x_156 = !lean_is_exclusive(x_20); -if (x_156 == 0) +uint8_t x_178; +x_178 = !lean_is_exclusive(x_20); +if (x_178 == 0) { return x_20; } else { -lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_157 = lean_ctor_get(x_20, 0); -x_158 = lean_ctor_get(x_20, 1); -lean_inc(x_158); -lean_inc(x_157); +lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_179 = lean_ctor_get(x_20, 0); +x_180 = lean_ctor_get(x_20, 1); +lean_inc(x_180); +lean_inc(x_179); lean_dec(x_20); -x_159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_159, 0, x_157); -lean_ctor_set(x_159, 1, x_158); -return x_159; +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_179); +lean_ctor_set(x_181, 1, x_180); +return x_181; } } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_17); -if (x_160 == 0) +uint8_t x_182; +x_182 = !lean_is_exclusive(x_17); +if (x_182 == 0) { return x_17; } else { -lean_object* x_161; lean_object* x_162; lean_object* x_163; -x_161 = lean_ctor_get(x_17, 0); -x_162 = lean_ctor_get(x_17, 1); -lean_inc(x_162); -lean_inc(x_161); +lean_object* x_183; lean_object* x_184; lean_object* x_185; +x_183 = lean_ctor_get(x_17, 0); +x_184 = lean_ctor_get(x_17, 1); +lean_inc(x_184); +lean_inc(x_183); lean_dec(x_17); -x_163 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_163, 0, x_161); -lean_ctor_set(x_163, 1, x_162); -return x_163; +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +return x_185; } } } else { -uint8_t x_164; -x_164 = !lean_is_exclusive(x_13); -if (x_164 == 0) +uint8_t x_186; +x_186 = !lean_is_exclusive(x_13); +if (x_186 == 0) { return x_13; } else { -lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_165 = lean_ctor_get(x_13, 0); -x_166 = lean_ctor_get(x_13, 1); -lean_inc(x_166); -lean_inc(x_165); +lean_object* x_187; lean_object* x_188; lean_object* x_189; +x_187 = lean_ctor_get(x_13, 0); +x_188 = lean_ctor_get(x_13, 1); +lean_inc(x_188); +lean_inc(x_187); lean_dec(x_13); -x_167 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set(x_167, 1, x_166); -return x_167; +x_189 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_189, 0, x_187); +lean_ctor_set(x_189, 1, x_188); +return x_189; } } } else { -uint8_t x_168; -x_168 = !lean_is_exclusive(x_9); -if (x_168 == 0) +uint8_t x_190; +x_190 = !lean_is_exclusive(x_9); +if (x_190 == 0) { return x_9; } else { -lean_object* x_169; lean_object* x_170; lean_object* x_171; -x_169 = lean_ctor_get(x_9, 0); -x_170 = lean_ctor_get(x_9, 1); -lean_inc(x_170); -lean_inc(x_169); +lean_object* x_191; lean_object* x_192; lean_object* x_193; +x_191 = lean_ctor_get(x_9, 0); +x_192 = lean_ctor_get(x_9, 1); +lean_inc(x_192); +lean_inc(x_191); lean_dec(x_9); -x_171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_171, 0, x_169); -lean_ctor_set(x_171, 1, x_170); -return x_171; +x_193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_193, 0, x_191); +lean_ctor_set(x_193, 1, x_192); +return x_193; } } } else { -uint8_t x_172; -x_172 = !lean_is_exclusive(x_5); -if (x_172 == 0) +uint8_t x_194; +x_194 = !lean_is_exclusive(x_5); +if (x_194 == 0) { return x_5; } else { -lean_object* x_173; lean_object* x_174; lean_object* x_175; -x_173 = lean_ctor_get(x_5, 0); -x_174 = lean_ctor_get(x_5, 1); -lean_inc(x_174); -lean_inc(x_173); +lean_object* x_195; lean_object* x_196; lean_object* x_197; +x_195 = lean_ctor_get(x_5, 0); +x_196 = lean_ctor_get(x_5, 1); +lean_inc(x_196); +lean_inc(x_195); lean_dec(x_5); -x_175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_175, 0, x_173); -lean_ctor_set(x_175, 1, x_174); -return x_175; +x_197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_197, 0, x_195); +lean_ctor_set(x_197, 1, x_196); +return x_197; } } } @@ -48795,12 +48737,6 @@ l_Lean_Parser_Term_attrKind___elambda__1___closed__9 = _init_l_Lean_Parser_Term_ lean_mark_persistent(l_Lean_Parser_Term_attrKind___elambda__1___closed__9); l_Lean_Parser_Term_attrKind___elambda__1___closed__10 = _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__10(); lean_mark_persistent(l_Lean_Parser_Term_attrKind___elambda__1___closed__10); -l_Lean_Parser_Term_attrKind___elambda__1___closed__11 = _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind___elambda__1___closed__11); -l_Lean_Parser_Term_attrKind___elambda__1___closed__12 = _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind___elambda__1___closed__12); -l_Lean_Parser_Term_attrKind___elambda__1___closed__13 = _init_l_Lean_Parser_Term_attrKind___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind___elambda__1___closed__13); l_Lean_Parser_Term_attrKind___closed__1 = _init_l_Lean_Parser_Term_attrKind___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__1); l_Lean_Parser_Term_attrKind___closed__2 = _init_l_Lean_Parser_Term_attrKind___closed__2(); @@ -48811,12 +48747,6 @@ l_Lean_Parser_Term_attrKind___closed__4 = _init_l_Lean_Parser_Term_attrKind___cl lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__4); l_Lean_Parser_Term_attrKind___closed__5 = _init_l_Lean_Parser_Term_attrKind___closed__5(); lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__5); -l_Lean_Parser_Term_attrKind___closed__6 = _init_l_Lean_Parser_Term_attrKind___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__6); -l_Lean_Parser_Term_attrKind___closed__7 = _init_l_Lean_Parser_Term_attrKind___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__7); -l_Lean_Parser_Term_attrKind___closed__8 = _init_l_Lean_Parser_Term_attrKind___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__8); l_Lean_Parser_Term_attrKind = _init_l_Lean_Parser_Term_attrKind(); lean_mark_persistent(l_Lean_Parser_Term_attrKind); l_Lean_Parser_Term_attrInstance___elambda__1___closed__1 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__1(); @@ -48972,16 +48902,6 @@ l_Lean_Parser_Term_attrKind_formatter___closed__5 = _init_l_Lean_Parser_Term_att lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__5); l_Lean_Parser_Term_attrKind_formatter___closed__6 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__6(); lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__6); -l_Lean_Parser_Term_attrKind_formatter___closed__7 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__7); -l_Lean_Parser_Term_attrKind_formatter___closed__8 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__8); -l_Lean_Parser_Term_attrKind_formatter___closed__9 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__9(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__9); -l_Lean_Parser_Term_attrKind_formatter___closed__10 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__10(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__10); -l_Lean_Parser_Term_attrKind_formatter___closed__11 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__11(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__11); l_Lean_Parser_Term_attrArg_formatter___closed__1 = _init_l_Lean_Parser_Term_attrArg_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attrArg_formatter___closed__1); l_Lean_Parser_Term_attrInstance_formatter___closed__1 = _init_l_Lean_Parser_Term_attrInstance_formatter___closed__1(); @@ -49069,16 +48989,6 @@ l_Lean_Parser_Term_attrKind_parenthesizer___closed__5 = _init_l_Lean_Parser_Term lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__5); l_Lean_Parser_Term_attrKind_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__6(); lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__6); -l_Lean_Parser_Term_attrKind_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__7); -l_Lean_Parser_Term_attrKind_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__8); -l_Lean_Parser_Term_attrKind_parenthesizer___closed__9 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__9(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__9); -l_Lean_Parser_Term_attrKind_parenthesizer___closed__10 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__10(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__10); -l_Lean_Parser_Term_attrKind_parenthesizer___closed__11 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__11(); -lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__11); l_Lean_Parser_Term_attrArg_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_attrArg_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attrArg_parenthesizer___closed__1); l_Lean_Parser_Term_attrInstance_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__1(); @@ -50990,55 +50900,63 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_quot_parenthesizer___close res = l___regBuiltin_Lean_Parser_Level_quot_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542____closed__24); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3542_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__28(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__28); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526_(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));