diff --git a/stage0/src/Init/Notation.lean b/stage0/src/Init/Notation.lean index 9f1b49f9a9..a5152225d6 100644 --- a/stage0/src/Init/Notation.lean +++ b/stage0/src/Init/Notation.lean @@ -226,11 +226,10 @@ syntax (name := generalize) "generalize " atomic(ident " : ")? term:51 " = " ide syntax (name := paren) "(" tacticSeq ")" : tactic syntax (name := withReducible) "withReducible " tacticSeq : tactic syntax (name := withReducibleAndInstances) "withReducibleAndInstances " tacticSeq : tactic -syntax (name := first) "first " "|"? sepBy1(tacticSeq, "|") : tactic -syntax (name := firstNew) "firstNew " withPosition((group(colGe "|" tacticSeq))+) : tactic +syntax (name := first) "first " withPosition((group(colGe "|" tacticSeq))+) : tactic syntax (name := rotateLeft) "rotateLeft" (num)? : tactic syntax (name := rotateRight) "rotateRight" (num)? : tactic -macro "try " t:tacticSeq : tactic => `(first $t | skip) +macro "try " t:tacticSeq : tactic => `(first | $t | skip) macro:1 x:tactic " <;> " y:tactic:0 : tactic => `(tactic| focus ($x:tactic; allGoals $y:tactic)) macro "rfl" : tactic => `(exact rfl) @@ -309,7 +308,7 @@ syntax (name := existsIntro) "exists " term : tactic syntax "repeat " tacticSeq : tactic macro_rules - | `(tactic| repeat $seq) => `(tactic| first ($seq); repeat $seq | skip) + | `(tactic| repeat $seq) => `(tactic| first | ($seq); repeat $seq | skip) syntax "trivial" : tactic diff --git a/stage0/src/Init/NotationExtra.lean b/stage0/src/Init/NotationExtra.lean index 773dcba8eb..a66aed27bd 100644 --- a/stage0/src/Init/NotationExtra.lean +++ b/stage0/src/Init/NotationExtra.lean @@ -177,9 +177,9 @@ macro_rules @ $ctor:ident $ctorArgs*) /- - Similar to `first`, but succeeds only if one the given tactics solves the curretn goal. + Similar to `first`, but succeeds only if one the given tactics solves the current goal. -/ -syntax "solve " "|"? sepBy1(tacticSeq, "|") : tactic +syntax (name := solve) "solve " withPosition((group(colGe "|" tacticSeq))+) : tactic macro_rules - | `(tactic| solve $[|]? $ts:tacticSeq|*) => `(tactic| focus first $[($ts); done]|*) + | `(tactic| solve $[| $ts]* ) => `(tactic| focus first $[| ($ts); done]*) diff --git a/stage0/src/Lean/Elab/Tactic/Basic.lean b/stage0/src/Lean/Elab/Tactic/Basic.lean index d5bcbf4e91..dd417796e8 100644 --- a/stage0/src/Lean/Elab/Tactic/Basic.lean +++ b/stage0/src/Lean/Elab/Tactic/Basic.lean @@ -622,8 +622,7 @@ def withCaseRef [Monad m] [MonadRef m] (arrow body : Syntax) (x : m α) : m α : setGoals gs | _ => throwUnsupportedSyntax --- syntax (name := firstNew) "firstNew " withPosition((colGe "|" tacticSeq)+) : tactic -@[builtinTactic «firstNew»] partial def evalFirstNew : Tactic := fun stx => do +@[builtinTactic «first»] partial def evalFirst : Tactic := fun stx => do let tacs := stx[1].getArgs if tacs.isEmpty then throwUnsupportedSyntax loop tacs 0 @@ -634,20 +633,6 @@ where else evalTactic tacs[i][1] <|> loop tacs (i+1) -@[builtinTactic «first»] partial def evalFirst : Tactic := fun stx => do - if stx.getNumArgs == 2 then - evalFirstNew stx - else - let tacs := stx[2].getSepArgs - if tacs.isEmpty then throwUnsupportedSyntax - loop tacs 0 -where - loop (tacs : Array Syntax) (i : Nat) := - if i == tacs.size - 1 then - evalTactic tacs[i] - else - evalTactic tacs[i] <|> loop tacs (i+1) - builtin_initialize registerTraceClass `Elab.tactic end Lean.Elab.Tactic diff --git a/stage0/src/library/compiler/eager_lambda_lifting.cpp b/stage0/src/library/compiler/eager_lambda_lifting.cpp index b97f2b10d8..c65e9153ec 100644 --- a/stage0/src/library/compiler/eager_lambda_lifting.cpp +++ b/stage0/src/library/compiler/eager_lambda_lifting.cpp @@ -139,13 +139,17 @@ class eager_lambda_lifting_fn { ok = false; return false; } else { - if (!collect_fvars_core(d.get_type(), collected, fvars)) + if (!collect_fvars_core(d.get_type(), collected, fvars)) { + ok = false; return false; + } if (m_closed_fvars.contains(fvar_name(x))) { /* If x only depends on global constants and other variables in m_closed_fvars. Then, we also collect the other variables at m_closed_fvars. */ - if (!collect_fvars_core(*d.get_value(), collected, fvars)) + if (!collect_fvars_core(*d.get_value(), collected, fvars)) { + ok = false; return false; + } } fvars.push_back(x); } diff --git a/stage0/stdlib/Init/Classical.c b/stage0/stdlib/Init/Classical.c index 865cc8ce01..f0507180ac 100644 --- a/stage0/stdlib/Init/Classical.c +++ b/stage0/stdlib/Init/Classical.c @@ -36,6 +36,7 @@ lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation_ lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__5; lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__14; extern lean_object* l_Lean_groupKind___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__3; lean_object* l_Classical_tacticByCases_____x3a_____closed__10; extern lean_object* l_Lean_Parser_Tactic_cases___closed__2; @@ -53,7 +54,6 @@ extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__10; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Classical_tacticByCases_____x3a_____closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; extern lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2; lean_object* l_Classical_tacticByCases_____x3a_____closed__4; lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__9; @@ -569,7 +569,7 @@ x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_29); lean_ctor_set(x_95, 1, x_94); x_96 = lean_array_push(x_19, x_95); -x_97 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_97 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); @@ -736,7 +736,7 @@ x_181 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_181, 0, x_115); lean_ctor_set(x_181, 1, x_180); x_182 = lean_array_push(x_105, x_181); -x_183 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_183 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_184 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_184, 0, x_183); lean_ctor_set(x_184, 1, x_182); diff --git a/stage0/stdlib/Init/Data/Repr.c b/stage0/stdlib/Init/Data/Repr.c index 3219580132..44628af83a 100644 --- a/stage0/stdlib/Init/Data/Repr.c +++ b/stage0/stdlib/Init/Data/Repr.c @@ -186,7 +186,6 @@ lean_object* l_instReprUInt8___boxed(lean_object*, lean_object*); lean_object* l_charToHex(uint32_t); lean_object* l_instReprUnit___closed__1; lean_object* l_instReprTupleProd_match__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_String_quote(lean_object*); lean_object* l_instReprDecidable___rarg(uint8_t, lean_object*); @@ -203,6 +202,7 @@ extern lean_object* l_Int_instInhabitedInt___closed__1; lean_object* l_instReprAtomUInt64; lean_object* l_instReprAtomChar; lean_object* l_instReprUInt32___boxed(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_instReprPUnit(lean_object*, lean_object*); lean_object* lean_nat_abs(lean_object*); lean_object* l_instReprBool(uint8_t, lean_object*); @@ -407,7 +407,7 @@ static lean_object* _init_l_instReprBool___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Init/Data/ToString/Basic.c b/stage0/stdlib/Init/Data/ToString/Basic.c index 7ced055214..12f9c507dc 100644 --- a/stage0/stdlib/Init/Data/ToString/Basic.c +++ b/stage0/stdlib/Init/Data/ToString/Basic.c @@ -121,7 +121,6 @@ lean_object* l_instToStringString___boxed(lean_object*); lean_object* l_instReprExcept___rarg___closed__1; extern lean_object* l_Id_instMonadId; lean_object* l_instToStringOption(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; uint8_t l_String_isPrefixOf(lean_object*, lean_object*); lean_object* l_instReprExcept___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toString(lean_object*); @@ -136,6 +135,7 @@ uint8_t lean_int_dec_lt(lean_object*, lean_object*); lean_object* l_instToStringProd_match__1___rarg(lean_object*, lean_object*); extern lean_object* l_Int_instInhabitedInt___closed__1; lean_object* l_instReprExcept_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_instToStringSum___rarg___closed__2; lean_object* lean_nat_abs(lean_object*); lean_object* l_instToStringSum_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -286,7 +286,7 @@ _start: if (x_1 == 0) { lean_object* x_2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; return x_2; } else @@ -350,7 +350,7 @@ _start: if (x_1 == 0) { lean_object* x_2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; return x_2; } else diff --git a/stage0/stdlib/Init/Meta.c b/stage0/stdlib/Init/Meta.c index 58106007eb..a12dce3aa4 100644 --- a/stage0/stdlib/Init/Meta.c +++ b/stage0/stdlib/Init/Meta.c @@ -438,7 +438,6 @@ uint8_t l_Lean_Meta_Simp_Config_eta___default; extern lean_object* l_Lean_Parser_Syntax_subPrio___closed__2; lean_object* l_Lean_Syntax_expandInterpolatedStrChunks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_hasArgs(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l___private_Init_Meta_0__Lean_quoteList(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux_match__1(lean_object*); @@ -472,6 +471,7 @@ lean_object* l_Lean_evalPrec___closed__1; lean_object* l_Lean_Name_toStringWithSep___closed__1; lean_object* l_Lean_NameGenerator_curr(lean_object*); lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Syntax_isNameLit_x3f___boxed(lean_object*); lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_6460____closed__10; @@ -9214,7 +9214,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instQuoteBool___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Init/Notation.c b/stage0/stdlib/Init/Notation.c index ceea2ed92c..52a70afd76 100644 --- a/stage0/stdlib/Init/Notation.c +++ b/stage0/stdlib/Init/Notation.c @@ -31,6 +31,7 @@ lean_object* l_Lean_Parser_Tactic_exact___closed__6; lean_object* l_Lean_Parser_Tactic_tacticTrivial; lean_object* l_myMacro____x40_Init_Notation___hyg_5722____closed__7; lean_object* l_Lean_Parser_Tactic_intros___closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; lean_object* l_termDepIfThenElse___closed__26; lean_object* l_term___x2f_x5c_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_7676____closed__8; @@ -45,6 +46,7 @@ lean_object* l_Lean_Parser_Tactic_cases___closed__6; lean_object* l_rawNatLit___closed__9; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__3; lean_object* l_term_u2039___u203a___closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_14180____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_14180____closed__4; lean_object* l_term___x25_____closed__1; @@ -68,7 +70,6 @@ lean_object* l_Lean_Parser_Tactic_first; lean_object* l_Lean_Parser_Tactic_letrec___closed__12; lean_object* l_Lean_Parser_Tactic_erwSeq___closed__6; lean_object* l_Lean_Parser_Tactic_revert___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; lean_object* l_term___x25_____closed__2; lean_object* l_Lean_Parser_Tactic_induction___closed__13; lean_object* l_precMin1___closed__4; @@ -87,13 +88,11 @@ lean_object* l_term_u2039___u203a; lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__9; lean_object* l_term___x3e_x3e_x3e_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_2526____closed__4; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__10; lean_object* l_myMacro____x40_Init_Notation___hyg_7676____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_13932____closed__4; lean_object* l_prec_x28___x29___closed__5; lean_object* l_Lean_Parser_Tactic_case___closed__6; lean_object* l_term___x5e_x5e_x5e_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_3018____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_5002____closed__6; @@ -110,6 +109,7 @@ lean_object* l_term_x2d__; lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__1; lean_object* l_term___x3e_x3d_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__9; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; lean_object* l_precMax___closed__3; lean_object* l_Lean_Parser_Tactic_refine_x27; lean_object* l_Lean_Parser_Tactic_first___closed__9; @@ -122,15 +122,14 @@ lean_object* l_Lean_Parser_Tactic_tacticRfl; lean_object* l_Lean_Parser_Tactic_generalize___closed__2; lean_object* l_Lean_Parser_Tactic_rwSeq; lean_object* l_term___u2264_____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_5250____closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1; lean_object* l_Lean_Parser_Tactic_intro___closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_7676____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_3266____closed__4; extern lean_object* l_Lean_nullKind; lean_object* l_myMacro____x40_Init_Notation___hyg_2770____closed__2; lean_object* l_term___x3c_x3c_x3c__; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_12444____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_11736____closed__3; @@ -140,11 +139,12 @@ lean_object* l_term___u2227_____closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__19; lean_object* l_term_x5b___x5d___closed__9; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22212____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; lean_object* l_term___x2b_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8912____closed__5; lean_object* l_term___x3c_____closed__1; lean_object* l_Lean_Parser_Tactic_location___closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_3514____closed__8; lean_object* l_Lean_Parser_Syntax_addPrec___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_5497____closed__8; @@ -159,12 +159,14 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_9627____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_9160____closed__6; lean_object* l_Lean_Parser_Attr_simp___closed__6; lean_object* l_Lean_Parser_Attr_simp; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_2770____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_2140____closed__3; lean_object* l_term___x7e_x3d_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__6; lean_object* l_term___x26_x26_x26_____closed__3; lean_object* l_term___xd7_____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_7180____closed__7; lean_object* l_term___u2245_____closed__2; lean_object* l_Lean_Parser_Syntax_addPrec___closed__1; @@ -248,7 +250,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1966_(lean_object*, lean_objec lean_object* l_myMacro____x40_Init_Notation___hyg_2278_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2140_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2526_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_Notation___hyg_23708_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Notation___hyg_23692_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_15342_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_15152_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_15828_(lean_object*, lean_object*, lean_object*); @@ -288,7 +290,9 @@ lean_object* l_prio_x28___x29___closed__6; lean_object* l_termIfThenElse___closed__9; lean_object* l_Lean_Parser_Attr_simp___closed__2; lean_object* l_Lean_Parser_Tactic_skip___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_8912____closed__3; +lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__1; lean_object* l_Lean_Parser_Tactic_induction___closed__2; lean_object* l_term___x3c_x3c_x3c_____closed__5; @@ -300,12 +304,12 @@ lean_object* l_termDepIfThenElse___closed__31; lean_object* l_myMacro____x40_Init_Notation___hyg_4506____closed__3; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_17039____closed__6; lean_object* l_stx___x3c_x7c_x3e_____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; lean_object* l_Lean_Parser_Tactic_rwWithRfl___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_2770____closed__1; lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_8668____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_12444____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23047____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_simpAll___closed__8; lean_object* l_term___x3c_____closed__2; lean_object* l_Lean_Parser_Tactic_simpAll; @@ -326,7 +330,6 @@ lean_object* l_Lean_Parser_Tactic_simp___closed__10; lean_object* l_myMacro____x40_Init_Notation___hyg_3266____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_4754____closed__5; lean_object* l_term___x3e_x3e_x3d_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22040____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___x3c_x3c_x3c_____closed__7; lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_5497____closed__1; @@ -336,6 +339,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_13188____closed__3; lean_object* l_prec_x28___x29___closed__6; lean_object* l_term___u2228_____closed__2; lean_object* l_term___x2f_____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_term___x5e_x5e_x5e_____closed__2; lean_object* l_Lean_Parser_Tactic_simpPost___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__8; @@ -347,7 +351,6 @@ lean_object* l_term___u2218_____closed__6; lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__8; lean_object* l_term___x7c_x3e_____closed__2; -lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__3; lean_object* l_precMax___closed__2; lean_object* l_Lean_Parser_Syntax_subPrec___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_13188____closed__1; @@ -360,7 +363,7 @@ lean_object* l_Lean_Parser_Tactic_refine_x27___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_938____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_prioLow___closed__3; lean_object* l_Lean_Parser_Tactic_clear___closed__6; -lean_object* l_Lean_Parser_Tactic_firstNew; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__7; lean_object* l_term_x2d_____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_3018____closed__9; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__16; @@ -437,7 +440,6 @@ lean_object* l_Lean_Parser_Tactic_case___closed__11; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__12; lean_object* l_myMacro____x40_Init_Notation___hyg_8912____closed__7; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__3; lean_object* l_Lean_Parser_Tactic_rwRule___closed__8; lean_object* l_rawNatLit___closed__8; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__16; @@ -445,9 +447,9 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_11028____closed__6; lean_object* l_Lean_Parser_Tactic_tacticRepeat__; lean_object* l_Lean_Parser_Tactic_injection___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2258____spec__1___closed__1; lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__4; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__7; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__1; lean_object* l_term___x3e_x3e_____closed__3; @@ -457,7 +459,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_5002____closed__4; lean_object* l_Lean_Parser_Tactic_cases___closed__5; lean_object* l_Lean_Parser_Syntax_addPrec___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_3514____closed__9; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__7; +lean_object* l_Lean_Parser_Tactic_first___closed__11; lean_object* l_Lean_Parser_Tactic_refine___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_5722____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__6; @@ -468,6 +470,7 @@ lean_object* l_termDepIfThenElse___closed__15; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__10; lean_object* l_Lean_Parser_Tactic_exact___closed__1; lean_object* l_term_x5b___x5d___closed__11; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__5; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_1799____closed__1; lean_object* lean_array_push(lean_object*, lean_object*); @@ -486,36 +489,27 @@ lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_17039__expandListLit(lean lean_object* l_Lean_Parser_Tactic_contradiction___closed__1; lean_object* l_term_u2039___u203a___closed__2; lean_object* l_rawNatLit___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_simp___closed__20; lean_object* l_term___x24_______closed__3; lean_object* l_term___x5e_x5e_x5e_____closed__6; lean_object* l_term___x3c_x24_x3e_____closed__1; lean_object* l_term___u2218_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_7180____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_11514____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_10540____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_5722____closed__8; lean_object* l_term___x5c_x2f_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; lean_object* l_Lean_Parser_Tactic_subst___closed__4; lean_object* l_term___x5e_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; lean_object* l_term_x7e_x7e_x7e__; lean_object* l_myMacro____x40_Init_Notation___hyg_4754____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__3; lean_object* l_term___x3c__; lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__3; lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__5; lean_object* l_Lean_Parser_Tactic_rotateRight___closed__1; lean_object* l_term___x3c_x7c__; lean_object* l_Lean_Parser_Tactic_intros___closed__5; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__12; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_17039__expandListLit_match__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22238____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_4506____closed__8; lean_object* l_term___x2b_x2b__; lean_object* l_myMacro____x40_Init_Notation___hyg_4754____closed__4; @@ -524,18 +518,19 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_13932____closed__1; lean_object* l_termDepIfThenElse___closed__7; lean_object* l_Lean_Parser_Tactic_cases___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22014____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; lean_object* l_term___u2218_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_12222____closed__4; lean_object* l_Lean_Parser_Tactic_clear___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__8; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21543____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_existsIntro___closed__4; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__5; lean_object* l_term___x3c_x2a_____closed__4; lean_object* l_stx___x3c_x7c_x3e__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_5722____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_5497____closed__6; lean_object* l_Lean_Parser_Tactic_revert___closed__1; lean_object* l_term___x26_x26_____closed__4; @@ -544,10 +539,8 @@ lean_object* l_term_x2d_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_15342____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___u2264_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l_term_u2039___u203a___closed__3; lean_object* l_term___x5e_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____closed__1; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__2; lean_object* l_precArg___closed__1; @@ -555,21 +548,23 @@ lean_object* l_term___u2218_____closed__9; lean_object* l_term___x3c_x3d_____closed__4; lean_object* l_Lean_Parser_Tactic_generalize___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_14180____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_7180____closed__4; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__6; lean_object* l_Lean_Parser_Tactic_revert___closed__4; lean_object* l_termMax__prec___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_8420____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_1481____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_13932____closed__8; lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; lean_object* l_Lean_Parser_Tactic_rwRule___closed__6; lean_object* l_term_x2d_____closed__2; lean_object* l_term_x21_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_7180____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_location___closed__5; lean_object* l_term___x26_x26__; lean_object* l_myMacro____x40_Init_Notation___hyg_4506____closed__7; @@ -577,11 +572,11 @@ lean_object* l_term___x24_______closed__5; lean_object* l_Lean_Parser_Tactic_injection___closed__1; lean_object* l_Lean_Parser_Tactic_case___closed__10; lean_object* l_Lean_Parser_Tactic_locationHyp___closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__2; lean_object* l_Lean_Parser_Tactic_done___closed__3; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d__; lean_object* l_myMacro____x40_Init_Notation___hyg_3018____closed__3; lean_object* l_Lean_Parser_Tactic_rename; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_cases___closed__1; lean_object* l_stx___x3c_x7c_x3e_____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_7180____closed__9; @@ -591,7 +586,6 @@ lean_object* l_stx_x21_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; lean_object* l_Lean_Parser_Tactic_intros___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__7; lean_object* l_Lean_Parser_Tactic_rwRule___closed__2; @@ -606,7 +600,7 @@ lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__14; lean_object* l_Lean_Parser_Tactic_intros___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_11980____closed__5; lean_object* l_prec_x28___x29___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__3; +lean_object* l_Lean_Parser_Tactic_first___closed__12; lean_object* l_myMacro____x40_Init_Notation___hyg_4754____closed__9; lean_object* l_Lean_Parser_Tactic_contradiction; lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__5; @@ -620,7 +614,6 @@ lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__6; lean_object* l_Lean_Parser_Tactic_letrec___closed__9; lean_object* l_precMin___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_5722____closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18389____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__5; lean_object* l_Lean_Parser_Tactic_case___closed__4; lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__3; @@ -639,13 +632,13 @@ lean_object* l_term___x24_______closed__2; lean_object* l_term___x2f_x5c_____closed__5; lean_object* l_Lean_Parser_Tactic_subst___closed__1; lean_object* l_term___x7c_x7c_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__8; lean_object* l_Lean_Parser_Tactic_simpErase___closed__4; lean_object* l_term_x21_____closed__4; lean_object* l_Lean_Parser_Tactic_induction; lean_object* l_Lean_Parser_Tactic_induction___closed__19; lean_object* l_Lean_Parser_Tactic_letrec___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__2; lean_object* l_term___u2218_____closed__4; lean_object* l_Lean_Parser_Tactic_simp; @@ -657,7 +650,6 @@ lean_object* l_prioDefault___closed__4; lean_object* l_termDepIfThenElse___closed__16; lean_object* l_myMacro____x40_Init_Notation___hyg_557____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7; lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_3018____closed__2; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__18; @@ -676,7 +668,6 @@ lean_object* l_Lean_Parser_Syntax_addPrio___closed__7; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__15; lean_object* l_term___x3a_x3a_____closed__4; lean_object* l_Lean_Parser_Tactic_cases___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; lean_object* l_Lean_Parser_Tactic_assumption; lean_object* l_term___x3e__; lean_object* l_termMax__prec; @@ -689,7 +680,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__3; lean_object* l_Lean_Parser_Tactic_focus___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_8668____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_11514____closed__5; lean_object* l_term___x7c_x7c_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_2770____closed__5; @@ -699,6 +689,7 @@ lean_object* l_Lean_Parser_Tactic_change___closed__2; lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_15152____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7; lean_object* l_term___u2218_____closed__8; lean_object* l_Lean_Parser_Tactic_cases___closed__9; lean_object* l_Lean_Parser_Tactic_induction___closed__11; @@ -713,7 +704,6 @@ lean_object* l_term___x7c_x7c_x7c_____closed__6; lean_object* l_term___x5c_x2f_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_7676____closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__10; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__14; lean_object* l_stx___x2a___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_5250____closed__4; lean_object* l_Lean_Parser_Tactic_location___closed__6; @@ -726,13 +716,14 @@ lean_object* l_stx___x2c_x2a_x2c_x3f; lean_object* l_Lean_Parser_Attr_simp___closed__7; lean_object* l_term___x3e_x3e_____closed__4; lean_object* l_term___xd7_____closed__7; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__15; lean_object* l_term___x3d_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_11028____closed__5; lean_object* l_termDepIfThenElse___closed__20; lean_object* l_term___u2228__; lean_object* l_term_xac__; lean_object* l_Lean_Parser_Tactic_tacticHave__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__3; lean_object* l_Lean_Parser_Tactic_erwSeq___closed__1; lean_object* l_Lean_Parser_Attr_simp___closed__3; lean_object* l_Lean_Parser_Tactic_rename___closed__10; @@ -759,6 +750,8 @@ lean_object* l_Lean_Parser_Tactic_traceState___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_8912____closed__1; lean_object* l_Lean_Parser_Tactic_allGoals; lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__11; lean_object* l_myMacro____x40_Init_Notation___hyg_12444____closed__3; lean_object* l_term___x3c_x7c_____closed__2; @@ -766,6 +759,7 @@ lean_object* l_Lean_Parser_Tactic_refine___closed__3; lean_object* l_Lean_Parser_Tactic_induction___closed__16; lean_object* l_termWithout__expected__type_____closed__4; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__1; lean_object* l_Lean_Parser_Tactic_cases; lean_object* l_myMacro____x40_Init_Notation___hyg_5722____closed__9; lean_object* l_term_u2039___u203a___closed__1; @@ -788,6 +782,7 @@ lean_object* l_term___x3c_x2a__; lean_object* l_Lean_Parser_Attr_simp___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_4010____closed__9; lean_object* l_term_xac_____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4; lean_object* l_Lean_Parser_Tactic_assumption___closed__1; lean_object* l_Lean_Parser_Tactic_letrec___closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_2770____closed__6; @@ -807,6 +802,7 @@ lean_object* l_term___x3c_x3c_x3c_____closed__6; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_locationHyp___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_13436____closed__9; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21517____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__5; lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__4; lean_object* l_termIfThenElse___closed__12; @@ -821,20 +817,22 @@ lean_object* l_Lean_Parser_Tactic_generalize; lean_object* l_stx___x2c_x2a___closed__2; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__3; lean_object* l_Lean_Parser_Tactic_changeWith___closed__2; +lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; lean_object* l_term___x25_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_14428____closed__9; lean_object* l_Lean_Parser_Tactic_withReducible___closed__2; lean_object* l_stx___x3c_x7c_x3e_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__5; lean_object* l_Lean_Parser_Tactic_simpErase___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_3266____closed__1; lean_object* l_term___u2218_____closed__7; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__5; lean_object* l_term___x3c_x24_x3e_____closed__5; lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__5; lean_object* l_term___x3e_x3d_____closed__3; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__2; lean_object* l_term___x2a_____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__20; lean_object* l_term___x24_______closed__9; lean_object* l_Lean_Parser_Tactic_changeWith___closed__8; @@ -845,7 +843,6 @@ lean_object* l_term___x3c_x7c_____closed__5; lean_object* l_Lean_Parser_Tactic_locationTargets; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__4; lean_object* l_Lean_Parser_Tactic_change___closed__8; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__8; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_17039____closed__4; lean_object* l_Lean_Parser_Syntax_addPrec___closed__3; @@ -883,7 +880,7 @@ lean_object* l_precMin; lean_object* l_term___x2a_x3e_____closed__5; lean_object* l_Lean_Parser_Tactic_refine_x27___closed__5; lean_object* l_prioLow___closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; lean_object* l_Lean_Parser_Syntax_addPrec___closed__15; lean_object* l_prec_x28___x29___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__7; @@ -897,6 +894,7 @@ lean_object* l_term___x2a_x3e_____closed__3; lean_object* l_Lean_Parser_Tactic_locationHyp___closed__10; lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__3; lean_object* l_Lean_Parser_Tactic_tacticRefineLift__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__3; lean_object* l_Lean_Parser_Tactic_rotateLeft; lean_object* l_Lean_Parser_Tactic_focus___closed__6; @@ -910,7 +908,6 @@ lean_object* l_prec_x28___x29___closed__8; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_addPrec___closed__14; lean_object* l_stx_x21_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23193____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_prioHigh___closed__3; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__15; lean_object* l_myMacro____x40_Init_Notation___hyg_14428____closed__2; @@ -938,6 +935,7 @@ lean_object* l_term___x2d__; lean_object* l_term___x5c_x2f_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__3; lean_object* l_Lean_Parser_Tactic_simpAll___closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_stx___x2c_x2b___closed__4; lean_object* l_Lean_Parser_Tactic_simp___closed__4; lean_object* l_Lean_Syntax_setKind(lean_object*, lean_object*); @@ -945,12 +943,11 @@ lean_object* l_Lean_Parser_Tactic_traceState___closed__4; lean_object* l_termDepIfThenElse___closed__21; lean_object* l_Lean_Parser_Tactic_intro___closed__10; lean_object* l_precLead; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; lean_object* l_precMin1___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__5; lean_object* l_prioHigh___closed__5; lean_object* l_term___u2227_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; lean_object* l_term_x25_x5b___x7c___x5d___closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_9160____closed__3; lean_object* l_Lean_Parser_Tactic_simp___closed__21; @@ -968,8 +965,6 @@ lean_object* l_term___x5e_x5e_x5e_____closed__7; lean_object* l_Lean_Parser_Tactic_simp___closed__13; lean_object* l_Lean_Parser_Tactic_injection___closed__6; extern lean_object* l_Lean_strLitKind___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2; -lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2; lean_object* l_Lean_Parser_Tactic_tacticRefineLift_____closed__1; lean_object* l_Lean_Parser_Syntax_addPrio___closed__2; lean_object* l_Lean_Parser_Tactic_simpPre___closed__1; @@ -980,9 +975,8 @@ lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__6; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__3; lean_object* l_term___x7c_x7c_____closed__4; lean_object* l_prio_x28___x29___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20890____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_1244____closed__2; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_3266____closed__9; lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__2; lean_object* l_Lean_Parser_Tactic_revert___closed__6; @@ -1010,7 +1004,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1966____boxed(lean_object*, le lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__14; lean_object* l_term___x24_______closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_5497____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4; lean_object* l_termIfThenElse___closed__10; lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__14; @@ -1033,7 +1026,6 @@ lean_object* l_term___x2d_____closed__3; lean_object* l_term___x7e_x3d__; lean_object* l_myMacro____x40_Init_Notation___hyg_3762____closed__5; lean_object* l_term___x3c_x24_x3e_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__3; lean_object* l_Lean_Parser_Syntax_subPrec; lean_object* l_term___u2227__; @@ -1043,6 +1035,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_4010____closed__5; lean_object* l_term___x2b__; lean_object* l_Lean_Parser_Tactic_erwSeq___closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__2; lean_object* l_Lean_Parser_Tactic_location___closed__8; lean_object* l_Lean_Parser_Tactic_exact___closed__3; @@ -1051,7 +1044,6 @@ lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__3; lean_object* l_prio_x28___x29___closed__3; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_17039____closed__2; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__16; lean_object* l_myMacro____x40_Init_Notation___hyg_3514____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_4010____closed__3; lean_object* l_prioLow___closed__4; @@ -1098,7 +1090,6 @@ lean_object* l_Lean_Parser_Tactic_intro___closed__7; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__15; lean_object* l_Lean_Parser_Syntax_subPrio___closed__1; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__17; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l_Lean_Parser_Tactic_simp___closed__6; lean_object* l_term___x3a_x3a_____closed__6; lean_object* l_term_x5b___x5d___closed__7; @@ -1111,7 +1102,6 @@ lean_object* l_Lean_Parser_Tactic_injection___closed__3; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__4; lean_object* l_term___x3e_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_x27__; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__12; lean_object* l_term_x25_x5b___x7c___x5d___closed__4; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2258____spec__1(lean_object*); @@ -1120,7 +1110,6 @@ lean_object* l_stx___x2c_x2a___closed__3; lean_object* l_Lean_Parser_Tactic_rotateRight___closed__3; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__8; lean_object* l_termIfThenElse___closed__3; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__4; lean_object* l_stx___x2a___closed__4; @@ -1130,7 +1119,6 @@ extern lean_object* l_Lean_instInhabitedSyntax; lean_object* l_term___x3c_x2a_x3e_____closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__14; lean_object* l_term___xd7_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__6; lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__5; lean_object* l_term___x3d_x3d_____closed__5; lean_object* l_term_x2d_____closed__5; @@ -1139,6 +1127,7 @@ lean_object* l_Lean_Parser_Tactic_refine___closed__6; lean_object* l_termDepIfThenElse___closed__25; lean_object* l_term___x25_____closed__3; lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__8; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2; lean_object* l_Lean_Parser_Tactic_allGoals___closed__2; lean_object* l_Lean_Parser_Tactic_injection___closed__5; lean_object* l_term___x3e_x3e_x3d_____closed__2; @@ -1155,6 +1144,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_11980____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_12444____closed__5; lean_object* l_term___x26_x26_x26_____closed__2; lean_object* l_term___u2245__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__6; lean_object* l_Lean_Parser_Tactic_simpLemma___closed__6; lean_object* l_term___x3c_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__5; @@ -1163,8 +1153,8 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_3762____closed__3; lean_object* l_term_xac_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_3514____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_14180____closed__7; +lean_object* l_Lean_Parser_Tactic_first___closed__16; lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__7; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__2; lean_object* l_Lean_Parser_Tactic_apply; lean_object* l_Lean_Parser_Syntax_addPrec___closed__10; lean_object* l_term___x7e_x3d_____closed__4; @@ -1173,6 +1163,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_12222____closed__6; lean_object* l_term___x7c_x7c_x7c_____closed__3; lean_object* l_term_x25_x5b___x7c___x5d; lean_object* l_Lean_Parser_Tactic_rename___closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__4; lean_object* l_Lean_Parser_Tactic_failIfSuccess; lean_object* l_Lean_Parser_Tactic_simpAll___closed__2; lean_object* l_Lean_Parser_Tactic_paren___closed__1; @@ -1210,10 +1201,13 @@ lean_object* l_term___x2f_x5c__; lean_object* l_term___x2b_x2b_____closed__2; lean_object* l_term___x3e_____closed__3; lean_object* l_term___x25_____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13188____closed__7; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_12940____closed__7; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticRefineLift_____closed__6; @@ -1278,13 +1272,13 @@ lean_object* l_rawNatLit___closed__7; lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__1; lean_object* l_precArg___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__2; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_term___x5c_x2f_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticLet__; lean_object* l_term_x25_x5b___x7c___x5d___closed__9; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__1; lean_object* l_Lean_Parser_Tactic_intros___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__1; lean_object* l_termIfThenElse___closed__7; lean_object* l_term___x3e_x3e_____closed__6; lean_object* l_term___x5c_x2f_____closed__4; @@ -1293,7 +1287,6 @@ lean_object* l_Lean_Parser_Tactic_existsIntro___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_2770____closed__7; lean_object* l_term___x3d_____closed__6; lean_object* l_Lean_Parser_Tactic_change___closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_5002____closed__3; lean_object* l_stx___x3f___closed__5; lean_object* l_Lean_Parser_Tactic_simpLemma; @@ -1306,19 +1299,17 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_7924____closed__6; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_15152____closed__1; lean_object* l_term___x5e_____closed__4; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__13; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_1040____closed__6; lean_object* l_Lean_Parser_Syntax_subPrio___closed__4; +lean_object* l_Lean_Parser_Tactic_first___closed__10; lean_object* l_term___x3e_x3e_x3d_____closed__4; lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__8; lean_object* l_stx___x2a___closed__5; lean_object* l_term___x3c_x3d_____closed__5; lean_object* l_Lean_Parser_Tactic_intros___closed__9; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__22; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20916____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_termDepIfThenElse___closed__33; lean_object* l_term___x2a_____closed__6; lean_object* l_term___x3c_x2a_x3e_____closed__6; @@ -1330,36 +1321,34 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__6; lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__3; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_5497____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22040_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21543_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20916_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23193_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23120_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23047_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22238_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18389_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22014_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21517_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20890_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23031_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23177_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23104_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22212_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18363_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139_(lean_object*, lean_object*, lean_object*); lean_object* l_term___u2227_____closed__2; lean_object* l_term___x3e_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_11514____closed__1; lean_object* l_term_x25_x5b___x7c___x5d___closed__8; lean_object* l_term___u2228_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_4010____closed__8; lean_object* l_term___x5e_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_7924____closed__1; @@ -1376,9 +1365,11 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_3762____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_15152____closed__4; lean_object* l_term___u2265_____closed__6; lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; lean_object* l_term_x5b___x5d___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_3762____closed__2; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__13; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; lean_object* l_Lean_Parser_Tactic_rwRule; lean_object* l_term_xac_____closed__1; lean_object* l_Lean_Parser_Tactic_refine___closed__1; @@ -1387,11 +1378,11 @@ lean_object* l_term___x2b_x2b_____closed__3; lean_object* l_term_x5b___x5d; lean_object* l_myMacro____x40_Init_Notation___hyg_346____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_5250____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8912____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_11736____closed__4; lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; lean_object* l_Lean_Parser_Tactic_refine___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__4; lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1; lean_object* l_Lean_Parser_Tactic_expandERwSeq___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_4010____closed__4; @@ -1401,10 +1392,12 @@ lean_object* l_Lean_Parser_Tactic_first___closed__3; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_15152____closed__2; lean_object* l_Lean_Parser_Tactic_case___closed__3; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__3; lean_object* l_Lean_Parser_Tactic_refine_x27___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3; lean_object* l_stx___x2c_x2b___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8912____closed__2; +lean_object* l_Lean_Parser_Tactic_first___closed__15; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_7676____closed__9; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__3; @@ -1417,7 +1410,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_12940____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_12222____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_13188____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_7924____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_12222____closed__5; lean_object* l_term___x3c_x7c_____closed__7; @@ -1425,10 +1417,10 @@ lean_object* l_termDepIfThenElse___closed__19; lean_object* l_Lean_Parser_Tactic_focus___closed__5; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_simpErase___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8912____closed__4; lean_object* l_term___x3c_x7c_____closed__1; lean_object* l_Lean_Parser_Tactic_induction___closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_simpAll___closed__7; lean_object* l_stx_x21_____closed__6; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__4; @@ -1438,16 +1430,17 @@ lean_object* l_Lean_Parser_Tactic_simp___closed__25; lean_object* l_Lean_Parser_Syntax_subPrio___closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__; lean_object* l_prioDefault___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__2; lean_object* l_prec_x28___x29___closed__9; lean_object* l_stx___x3c_x7c_x3e_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_7676____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_12940____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +lean_object* l_Lean_Parser_Tactic_first___closed__14; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_13188____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__4; lean_object* l_term___x3e_x3e_x3e_____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__4; lean_object* l_term_x21__; lean_object* l_Lean_Parser_Tactic_simp___closed__18; lean_object* l_myMacro____x40_Init_Notation___hyg_3762____closed__4; @@ -1475,20 +1468,19 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_7924____closed__9; lean_object* l_term___x2f_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__9; lean_object* l_term___x26_x26_x26_____closed__4; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_2526____closed__3; lean_object* l_Lean_Parser_Tactic_revert___closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_14428____closed__3; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4; lean_object* l_Lean_Parser_Tactic_allGoals___closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__15; lean_object* l_myMacro____x40_Init_Notation___hyg_8420____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23177____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__1; lean_object* l_term___x24_______closed__12; lean_object* l_myMacro____x40_Init_Notation___hyg_631____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_8668____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_5927____closed__2; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__3; lean_object* l_term___x7c_x3e_____closed__5; @@ -1517,17 +1509,19 @@ lean_object* l_term___x3c_x3d_____closed__3; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_case___closed__9; lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__4; lean_object* l_term___u2228_____closed__1; lean_object* l_term___x26_x26_____closed__7; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__8; lean_object* l_Lean_Parser_Tactic_letrec; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__6; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d; lean_object* l_myMacro____x40_Init_Notation___hyg_7676____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18363____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_case___closed__8; lean_object* l_term___x7c_x7c_____closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__1; lean_object* l_termWithout__expected__type_____closed__1; lean_object* l_Lean_Parser_Tactic_change; lean_object* l_Lean_Parser_Tactic_simp___closed__5; @@ -1542,15 +1536,15 @@ lean_object* l_Lean_Parser_Tactic_done___closed__1; lean_object* l_term___x2b_x2b_____closed__5; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__7; lean_object* l_Lean_Parser_Tactic_locationTargets___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9; lean_object* l_term___x24_______closed__11; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__9; lean_object* l_Lean_Parser_Tactic_rename___closed__9; lean_object* l_precMin___closed__3; lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__2; lean_object* l_termIfLet___x3a_x3d__Then__Else__; lean_object* l_stx___x2b___closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Parser_Tactic_simpAll___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_14428____closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__18; @@ -1558,6 +1552,7 @@ lean_object* l_Lean_Parser_Syntax_subPrec___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_15828____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_letrec___closed__8; lean_object* l_term___x3c_x24_x3e__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; lean_object* l_Lean_Parser_Tactic_rwRule___closed__10; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__6; @@ -1570,7 +1565,6 @@ lean_object* l_stx___x2b___closed__2; lean_object* l_Lean_Parser_Tactic_case___closed__2; lean_object* l_Lean_Parser_Tactic_simp___closed__2; lean_object* l_term___x2f_x5c_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; lean_object* l_Lean_Parser_Tactic_rename___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_5927____closed__1; lean_object* l_term___x3e_x3e__; @@ -1600,7 +1594,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__11; lean_object* l_termDepIfThenElse___closed__8; lean_object* l_Lean_Parser_Tactic_cases___closed__7; lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__1; lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__5; lean_object* l_term_u2039___u203a___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_779____boxed(lean_object*, lean_object*, lean_object*); @@ -1608,7 +1601,6 @@ lean_object* l_term___x2a_x3e_____closed__4; lean_object* l_Lean_Parser_Tactic_simpPost; lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__4; lean_object* l_Lean_Parser_Tactic_done; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__1; lean_object* l_term_x5b___x5d___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__4; lean_object* l_Lean_Parser_Tactic_intros; @@ -1630,7 +1622,6 @@ lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__2; lean_object* l_term___x2b_____closed__5; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_1640____boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_3018____closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__14; lean_object* l_Lean_Parser_Tactic_case___closed__7; @@ -1641,6 +1632,7 @@ lean_object* l_term_x5b___x5d___closed__12; lean_object* l_Lean_Parser_Tactic_constructor___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_1640____closed__1; lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____closed__1; lean_object* l_term___x2a_x3e_____closed__1; lean_object* l_prio_x28___x29___closed__2; lean_object* l_prec_x28___x29___closed__10; @@ -1650,7 +1642,7 @@ lean_object* l_Lean_Parser_Tactic_exact___closed__4; lean_object* l_Lean_Parser_Syntax_addPrio; lean_object* l_term___x2a_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8420____closed__9; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3; lean_object* l_Lean_Parser_Tactic_done___closed__4; lean_object* l_Lean_Parser_Tactic_tacticInferInstance; lean_object* l_termDepIfThenElse___closed__27; @@ -1675,24 +1667,25 @@ lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__13; lean_object* l_term___x3c_x2a_x3e_____closed__1; lean_object* l_term___x7c_x3e__; lean_object* l_Lean_Parser_Tactic_first___closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__9; lean_object* l_precArg___closed__2; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___closed__7; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_3514____closed__6; lean_object* l_term_x7e_x7e_x7e_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__8; lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__2; lean_object* l_Lean_Parser_Tactic_induction___closed__4; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__11; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_853____closed__1; lean_object* l_stx_x21_____closed__4; lean_object* l_term___x3d_x3d_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_3266____closed__5; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__1; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5; lean_object* l_term___xd7__; lean_object* l_precMin1___closed__2; lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__5; @@ -1713,6 +1706,7 @@ lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__5; lean_object* l_term___x2a_____closed__1; +lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__1; lean_object* l_Lean_Parser_Tactic_injection; lean_object* l_prec_x28___x29___closed__7; lean_object* l_Lean_Parser_Tactic_exact___closed__2; @@ -1726,11 +1720,12 @@ lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__4; lean_object* l_prioHigh___closed__2; lean_object* l_Lean_Parser_Tactic_intro___closed__2; lean_object* l_term___x3e_x3e_x3d_____closed__6; +lean_object* l_myMacro____x40_Init_Notation___hyg_23692____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_focus___closed__3; lean_object* l_term___x26_x26_x26_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__2; lean_object* l_Lean_Parser_Tactic_rwSeq___closed__2; lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_object* l_prec_x28___x29; lean_object* l_rawNatLit___closed__6; lean_object* l_term___x5e_x5e_x5e_____closed__1; @@ -1744,8 +1739,8 @@ lean_object* l_Lean_Parser_Tactic_constructor; lean_object* l_myMacro____x40_Init_Notation___hyg_11980____closed__1; lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__5; lean_object* l_term___u2245_____closed__3; -lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__1; lean_object* l_Lean_Parser_Tactic_expandERwSeq___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_object* l_termDepIfThenElse___closed__2; lean_object* l_termIfThenElse___closed__6; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__5; @@ -1758,11 +1753,10 @@ lean_object* l_term_x5b___x5d___closed__1; lean_object* l_stx___x2c_x2b_x2c_x3f___closed__1; lean_object* l_term___x24_______closed__7; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_17039____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__4; -lean_object* l_myMacro____x40_Init_Notation___hyg_23708____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__1; lean_object* l_term_x7e_x7e_x7e_____closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2; lean_object* l_term___x26_x26_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_8420____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_7924____closed__7; @@ -1793,6 +1787,7 @@ lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__11; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__1; lean_object* l_term_x2d_____closed__7; +lean_object* l_Lean_Parser_Tactic_first___closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_8420____closed__3; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_853____boxed(lean_object*, lean_object*, lean_object*); @@ -1805,6 +1800,7 @@ lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_17039____closed__3; lean_object* l_rawNatLit___closed__5; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__19; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23104____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_contradiction___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_12222____closed__2; lean_object* l_Lean_Parser_Tactic_rwSeq___closed__3; @@ -1831,12 +1827,12 @@ lean_object* l_term___x3c_x3d_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_11980____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13932____closed__5; lean_object* l_Lean_Parser_Tactic_intro___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__4; lean_object* l_term___x3d_x3d_____closed__4; lean_object* l_stx___x2a___closed__3; lean_object* l_stx_x21__; lean_object* l_myMacro____x40_Init_Notation___hyg_13436____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__5; lean_object* l_Lean_Parser_Tactic_simpAll___closed__5; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__8; lean_object* l_Lean_Parser_Tactic_induction___closed__17; @@ -1844,7 +1840,6 @@ lean_object* l_term___x2a_____closed__4; lean_object* l_term___u2265_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__2; lean_object* l_Lean_Parser_Syntax_addPrec___closed__11; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13932____closed__3; lean_object* l_term_x7e_x7e_x7e_____closed__2; @@ -1852,13 +1847,15 @@ lean_object* l_Lean_Parser_Tactic_casesTarget; lean_object* l_stx___x2c_x2b_x2c_x3f___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_2140____closed__2; lean_object* l_Lean_Parser_Tactic_letrec___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_4010____closed__1; lean_object* l_Lean_Parser_Tactic_simpPre___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_9627____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; lean_object* l_term___x7c_x3e_____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_11514____closed__4; lean_object* l_term___x5e_x5e_x5e_____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2; lean_object* l_Lean_Parser_Tactic_simpPost___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_2140____closed__1; lean_object* l_Lean_Parser_Syntax_subPrec___closed__2; @@ -1876,7 +1873,6 @@ lean_object* l_Lean_Parser_Tactic_rwRule___closed__3; lean_object* l_Lean_Parser_Tactic_simp___closed__16; lean_object* l_Lean_Parser_Tactic_casesTarget___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_3266____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23120____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticShow__; lean_object* l_stx_x21_____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_8420____closed__5; @@ -1884,25 +1880,22 @@ lean_object* l_Lean_Parser_Tactic_rename___closed__6; lean_object* l_stx___x2c_x2b_x2c_x3f___closed__4; lean_object* l_stx___x2c_x2b_x2c_x3f; lean_object* l_Lean_Parser_Tactic_expandRwSeq___closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4; lean_object* l_term___xd7_____closed__4; lean_object* l_Lean_Parser_Tactic_expandRwSeq(lean_object*, lean_object*, lean_object*); lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_11736____closed__6; lean_object* l_term___x3e_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_13684____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; lean_object* l_Lean_Parser_Tactic_allGoals___closed__1; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__12; lean_object* l_Lean_Parser_Tactic_traceState; lean_object* l_term___x2f_x5c_____closed__2; lean_object* l_Lean_Parser_Tactic_rotateRight; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intro___closed__15; lean_object* l_term___x26_x26_____closed__3; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; lean_object* l_prio_x28___x29___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSuffices__; lean_object* l_Lean_Parser_Tactic_expandRwSeq___boxed(lean_object*, lean_object*, lean_object*); @@ -1916,7 +1909,6 @@ lean_object* l_term___x3d_____closed__3; lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_1640____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_13188____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___x7c_x3e_____closed__6; lean_object* l_Lean_Parser_Tactic_paren; lean_object* l_Lean_Parser_Tactic_simp___closed__22; @@ -1951,12 +1943,11 @@ lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__11; lean_object* l_term___x7e_x3d_____closed__3; lean_object* l_term_xac_____closed__5; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__11; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__9; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___x3e_x3e_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_3266____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__11; lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; lean_object* l_Lean_Parser_Syntax_subPrec___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_12222____closed__1; lean_object* l_Lean_Parser_Tactic_rwRule___closed__5; @@ -1965,10 +1956,10 @@ lean_object* l_Lean_Parser_Tactic_rwRule___closed__7; lean_object* l_term___x26_x26_____closed__6; lean_object* l_term___x7c_x7c_x7c_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_2140____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; lean_object* l_Lean_Parser_Tactic_rwWithRfl___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_12940____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_15621____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__2; lean_object* l_term___x3d_x3d__; lean_object* l_Lean_Parser_Tactic_erwSeq; @@ -1979,13 +1970,12 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__5; lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_4258____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_484____closed__1; -lean_object* l_Lean_Parser_Tactic_firstNew___closed__4; lean_object* l_term___x5c_x2f__; lean_object* l_Lean_Parser_Tactic_refine_x27___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__1; lean_object* l_Lean_Parser_Attr_simp___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__6; lean_object* l_Lean_Parser_Tactic_rwWithRfl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_object* l_Lean_Parser_Syntax_addPrec___closed__8; lean_object* l_Lean_Parser_Tactic_intros___closed__10; lean_object* l_term___x3d_____closed__5; @@ -2002,7 +1992,7 @@ lean_object* l_term___x25__; lean_object* l_stx___x2b___closed__5; lean_object* l_Lean_Parser_Tactic_simpPost___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_484____boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_firstNew___closed__8; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23031____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_letrec___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_4258____closed__8; lean_object* l_termDepIfThenElse___closed__1; @@ -29809,22 +29799,120 @@ return x_3; static lean_object* _init_l_Lean_Parser_Tactic_first___closed__5() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("withPosition"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__6() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1244____closed__4; -x_2 = l_term_x25_x5b___x7c___x5d___closed__6; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_first___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("colGe"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_first___closed__7; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_first___closed__8; +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_Tactic_first___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; +x_2 = l_Lean_Parser_Tactic_first___closed__9; +x_3 = l_term_x25_x5b___x7c___x5d___closed__6; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; +x_2 = l_Lean_Parser_Tactic_first___closed__10; +x_3 = l_Lean_Parser_Tactic_case___closed__12; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_groupKind___closed__2; +x_2 = l_Lean_Parser_Tactic_first___closed__11; 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_Parser_Tactic_first___closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_1040____closed__6; +x_2 = l_Lean_Parser_Tactic_first___closed__12; +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_Parser_Tactic_first___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_first___closed__6; +x_2 = l_Lean_Parser_Tactic_first___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_Parser_Tactic_first___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; x_2 = l_Lean_Parser_Tactic_first___closed__4; -x_3 = l_Lean_Parser_Tactic_first___closed__5; +x_3 = l_Lean_Parser_Tactic_first___closed__14; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -29832,43 +29920,13 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_first___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_case___closed__12; -x_2 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; -x_3 = l_term_x25_x5b___x7c___x5d___closed__6; -x_4 = 0; -x_5 = lean_alloc_ctor(11, 3, 1); -lean_ctor_set(x_5, 0, x_1); -lean_ctor_set(x_5, 1, x_2); -lean_ctor_set(x_5, 2, x_3); -lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_first___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_Lean_Parser_Tactic_first___closed__6; -x_3 = l_Lean_Parser_Tactic_first___closed__7; -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_first___closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_first___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_first___closed__2; x_2 = lean_unsigned_to_nat(1022u); -x_3 = l_Lean_Parser_Tactic_first___closed__8; +x_3 = l_Lean_Parser_Tactic_first___closed__15; x_4 = lean_alloc_ctor(3, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -29880,191 +29938,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_first() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_first___closed__9; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("firstNew"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("firstNew "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__4() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__3; -x_2 = 0; -x_3 = lean_alloc_ctor(6, 1, 1); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("withPosition"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_firstNew___closed__5; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("colGe"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_firstNew___closed__7; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__8; -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_Tactic_firstNew___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__9; -x_3 = l_term_x25_x5b___x7c___x5d___closed__6; -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__10; -x_3 = l_Lean_Parser_Tactic_case___closed__12; -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_groupKind___closed__2; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__11; -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_Parser_Tactic_firstNew___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1040____closed__6; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__12; -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_Parser_Tactic_firstNew___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__6; -x_2 = l_Lean_Parser_Tactic_firstNew___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_Parser_Tactic_firstNew___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__4; -x_3 = l_Lean_Parser_Tactic_firstNew___closed__14; -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__2; -x_2 = lean_unsigned_to_nat(1022u); -x_3 = l_Lean_Parser_Tactic_firstNew___closed__15; -x_4 = lean_alloc_ctor(3, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_firstNew() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__16; +x_1 = l_Lean_Parser_Tactic_first___closed__16; return x_1; } } @@ -30286,7 +30160,7 @@ x_1 = l_Lean_Parser_Tactic_tacticTry_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__1() { _start: { lean_object* x_1; @@ -30294,17 +30168,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -30314,7 +30188,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4() { _start: { lean_object* x_1; @@ -30322,17 +30196,17 @@ x_1 = lean_mk_string("tacticSeq1Indented"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -30359,7 +30233,7 @@ x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_ x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_object* x_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; x_12 = lean_ctor_get(x_10, 0); x_13 = l_Lean_Parser_Tactic_first___closed__1; lean_inc(x_12); @@ -30368,159 +30242,175 @@ lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_18 = lean_array_push(x_16, x_17); -x_19 = lean_array_push(x_15, x_9); -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; -x_21 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_19); -x_22 = lean_array_push(x_15, x_21); -x_23 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; +x_17 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; lean_inc(x_12); -x_24 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_24, 0, x_12); -lean_ctor_set(x_24, 1, x_23); -x_25 = lean_array_push(x_22, x_24); -x_26 = l_Lean_Parser_Tactic_skip___closed__1; -x_27 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_27, 0, x_12); -lean_ctor_set(x_27, 1, x_26); -x_28 = lean_array_push(x_15, x_27); -x_29 = l_Lean_Parser_Tactic_skip___closed__2; -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_28); -x_31 = lean_array_push(x_15, x_30); -x_32 = lean_array_push(x_31, x_17); -x_33 = l_Lean_groupKind___closed__2; -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_32); -x_35 = lean_array_push(x_15, x_34); -x_36 = l_Lean_nullKind___closed__2; -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_35); -x_38 = lean_array_push(x_15, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; -x_40 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_38); -x_41 = lean_array_push(x_15, x_40); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_20); -lean_ctor_set(x_42, 1, x_41); -x_43 = lean_array_push(x_25, x_42); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_36); -lean_ctor_set(x_44, 1, x_43); -x_45 = lean_array_push(x_18, x_44); -x_46 = l_Lean_Parser_Tactic_first___closed__2; +x_18 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_18, 0, x_12); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_array_push(x_15, x_18); +x_20 = lean_array_push(x_15, x_9); +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_20); +lean_inc(x_19); +x_23 = lean_array_push(x_19, x_22); +x_24 = l_Lean_groupKind___closed__2; +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +x_26 = lean_array_push(x_15, x_25); +x_27 = l_Lean_Parser_Tactic_skip___closed__1; +x_28 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_28, 0, x_12); +lean_ctor_set(x_28, 1, x_27); +x_29 = lean_array_push(x_15, x_28); +x_30 = l_Lean_Parser_Tactic_skip___closed__2; +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +x_32 = lean_array_push(x_15, x_31); +x_33 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_34 = lean_array_push(x_32, x_33); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_24); +lean_ctor_set(x_35, 1, x_34); +x_36 = lean_array_push(x_15, x_35); +x_37 = l_Lean_nullKind___closed__2; +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_36); +x_39 = lean_array_push(x_15, x_38); +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +x_42 = lean_array_push(x_15, x_41); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_21); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_array_push(x_19, x_43); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_24); +lean_ctor_set(x_45, 1, x_44); +x_46 = lean_array_push(x_26, x_45); x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_45); -x_48 = lean_array_push(x_15, x_47); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_36); -lean_ctor_set(x_49, 1, x_48); -x_50 = lean_array_push(x_15, x_49); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +lean_ctor_set(x_47, 0, x_37); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_array_push(x_16, x_47); +x_49 = l_Lean_Parser_Tactic_first___closed__2; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +x_51 = lean_array_push(x_15, x_50); x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -lean_ctor_set(x_10, 0, x_52); +lean_ctor_set(x_52, 0, x_37); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_array_push(x_15, x_52); +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_53); +lean_ctor_set(x_10, 0, x_55); return x_10; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_53 = lean_ctor_get(x_10, 0); -x_54 = lean_ctor_get(x_10, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_56 = lean_ctor_get(x_10, 0); +x_57 = lean_ctor_get(x_10, 1); +lean_inc(x_57); +lean_inc(x_56); lean_dec(x_10); -x_55 = l_Lean_Parser_Tactic_first___closed__1; -lean_inc(x_53); -x_56 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_55); -x_57 = l_Array_empty___closed__1; -x_58 = lean_array_push(x_57, x_56); -x_59 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_60 = lean_array_push(x_58, x_59); -x_61 = lean_array_push(x_57, x_9); -x_62 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_61); -x_64 = lean_array_push(x_57, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; -lean_inc(x_53); -x_66 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_66, 0, x_53); -lean_ctor_set(x_66, 1, x_65); -x_67 = lean_array_push(x_64, x_66); -x_68 = l_Lean_Parser_Tactic_skip___closed__1; -x_69 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_69, 0, x_53); -lean_ctor_set(x_69, 1, x_68); -x_70 = lean_array_push(x_57, x_69); -x_71 = l_Lean_Parser_Tactic_skip___closed__2; -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set(x_72, 1, x_70); -x_73 = lean_array_push(x_57, x_72); -x_74 = lean_array_push(x_73, x_59); -x_75 = l_Lean_groupKind___closed__2; +x_58 = l_Lean_Parser_Tactic_first___closed__1; +lean_inc(x_56); +x_59 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_59, 0, x_56); +lean_ctor_set(x_59, 1, x_58); +x_60 = l_Array_empty___closed__1; +x_61 = lean_array_push(x_60, x_59); +x_62 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; +lean_inc(x_56); +x_63 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_63, 0, x_56); +lean_ctor_set(x_63, 1, x_62); +x_64 = lean_array_push(x_60, x_63); +x_65 = lean_array_push(x_60, x_9); +x_66 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_65); +lean_inc(x_64); +x_68 = lean_array_push(x_64, x_67); +x_69 = l_Lean_groupKind___closed__2; +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_68); +x_71 = lean_array_push(x_60, x_70); +x_72 = l_Lean_Parser_Tactic_skip___closed__1; +x_73 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_73, 0, x_56); +lean_ctor_set(x_73, 1, x_72); +x_74 = lean_array_push(x_60, x_73); +x_75 = l_Lean_Parser_Tactic_skip___closed__2; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); -x_77 = lean_array_push(x_57, x_76); -x_78 = l_Lean_nullKind___closed__2; -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_77); -x_80 = lean_array_push(x_57, x_79); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_80); -x_83 = lean_array_push(x_57, x_82); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_62); -lean_ctor_set(x_84, 1, x_83); -x_85 = lean_array_push(x_67, x_84); +x_77 = lean_array_push(x_60, x_76); +x_78 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_79 = lean_array_push(x_77, x_78); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_69); +lean_ctor_set(x_80, 1, x_79); +x_81 = lean_array_push(x_60, x_80); +x_82 = l_Lean_nullKind___closed__2; +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_81); +x_84 = lean_array_push(x_60, x_83); +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_78); -lean_ctor_set(x_86, 1, x_85); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_84); x_87 = lean_array_push(x_60, x_86); -x_88 = l_Lean_Parser_Tactic_first___closed__2; -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_88); -lean_ctor_set(x_89, 1, x_87); -x_90 = lean_array_push(x_57, x_89); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_78); -lean_ctor_set(x_91, 1, x_90); -x_92 = lean_array_push(x_57, x_91); -x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_93); -lean_ctor_set(x_94, 1, x_92); -x_95 = lean_alloc_ctor(0, 2, 0); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_66); +lean_ctor_set(x_88, 1, x_87); +x_89 = lean_array_push(x_64, x_88); +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_69); +lean_ctor_set(x_90, 1, x_89); +x_91 = lean_array_push(x_71, x_90); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_82); +lean_ctor_set(x_92, 1, x_91); +x_93 = lean_array_push(x_61, x_92); +x_94 = l_Lean_Parser_Tactic_first___closed__2; +x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_94); -lean_ctor_set(x_95, 1, x_54); -return x_95; +lean_ctor_set(x_95, 1, x_93); +x_96 = lean_array_push(x_60, x_95); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_82); +lean_ctor_set(x_97, 1, x_96); +x_98 = lean_array_push(x_60, x_97); +x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_98); +x_101 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_57); +return x_101; } } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -30629,7 +30519,7 @@ x_1 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18389_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18363_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -30707,12 +30597,12 @@ x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_26); lean_ctor_set(x_40, 1, x_39); x_41 = lean_array_push(x_17, x_40); -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); x_44 = lean_array_push(x_17, x_43); -x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -30828,12 +30718,12 @@ x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_90); lean_ctor_set(x_104, 1, x_103); x_105 = lean_array_push(x_81, x_104); -x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); x_108 = lean_array_push(x_81, x_107); -x_109 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_109 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_108); @@ -30899,11 +30789,11 @@ return x_141; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18389____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18363____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18389_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18363_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -30968,7 +30858,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -30977,13 +30867,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -30991,7 +30881,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -31001,31 +30891,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31062,10 +30952,10 @@ lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; x_18 = l_Lean_addMacroScope(x_12, x_17, x_11); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__5; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__5; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_10); lean_ctor_set(x_21, 1, x_19); @@ -31082,7 +30972,7 @@ x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); x_28 = lean_array_push(x_15, x_27); -x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -31109,10 +30999,10 @@ lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); x_37 = l_Array_empty___closed__1; x_38 = lean_array_push(x_37, x_36); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; x_40 = l_Lean_addMacroScope(x_34, x_39, x_33); -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2; -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__5; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2; +x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__5; x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_31); lean_ctor_set(x_43, 1, x_41); @@ -31129,7 +31019,7 @@ x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); x_50 = lean_array_push(x_37, x_49); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -31201,7 +31091,7 @@ x_1 = l_Lean_Parser_Tactic_tacticAdmit___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1() { _start: { lean_object* x_1; @@ -31209,17 +31099,17 @@ x_1 = lean_mk_string("sorry"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31250,12 +31140,12 @@ lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); x_13 = l_Array_empty___closed__1; x_14 = lean_array_push(x_13, x_12); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_10); lean_ctor_set(x_16, 1, x_15); x_17 = lean_array_push(x_13, x_16); -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_19 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -31270,7 +31160,7 @@ x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); x_26 = lean_array_push(x_13, x_25); -x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -31292,12 +31182,12 @@ lean_ctor_set(x_32, 0, x_29); lean_ctor_set(x_32, 1, x_31); x_33 = l_Array_empty___closed__1; x_34 = lean_array_push(x_33, x_32); -x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_29); lean_ctor_set(x_36, 1, x_35); x_37 = lean_array_push(x_33, x_36); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); @@ -31312,7 +31202,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_33, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -31324,11 +31214,11 @@ return x_49; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -31393,7 +31283,7 @@ x_1 = l_Lean_Parser_Tactic_tacticInferInstance___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -31402,13 +31292,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_tacticInferInstance___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -31416,7 +31306,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -31426,31 +31316,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31487,10 +31377,10 @@ lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3; x_18 = l_Lean_addMacroScope(x_12, x_17, x_11); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_10); lean_ctor_set(x_21, 1, x_19); @@ -31507,7 +31397,7 @@ x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); x_28 = lean_array_push(x_15, x_27); -x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -31534,10 +31424,10 @@ lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); x_37 = l_Array_empty___closed__1; x_38 = lean_array_push(x_37, x_36); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3; x_40 = l_Lean_addMacroScope(x_34, x_39, x_33); -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2; -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2; +x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5; x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_31); lean_ctor_set(x_43, 1, x_41); @@ -31554,7 +31444,7 @@ x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); x_50 = lean_array_push(x_37, x_49); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -31830,7 +31720,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_location___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_1 = l_Lean_Parser_Tactic_first___closed__6; x_2 = l_Lean_Parser_Tactic_location___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -32735,12 +32625,12 @@ x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = lean_array_push(x_21, x_51); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); x_55 = lean_array_push(x_21, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -32799,7 +32689,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_50); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_21, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -33745,7 +33635,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRefineLift_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1() { _start: { lean_object* x_1; @@ -33753,17 +33643,17 @@ x_1 = lean_mk_string("noImplicitLambda"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3() { _start: { lean_object* x_1; @@ -33771,7 +33661,7 @@ x_1 = lean_mk_string("noImplicitLambda%"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -33819,14 +33709,14 @@ x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); x_22 = lean_array_push(x_15, x_21); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3; lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); x_25 = lean_array_push(x_15, x_24); x_26 = lean_array_push(x_25, x_9); -x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -33874,12 +33764,12 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_36); lean_ctor_set(x_53, 1, x_52); x_54 = lean_array_push(x_15, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); x_57 = lean_array_push(x_15, x_56); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); @@ -33920,7 +33810,7 @@ x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_36); lean_ctor_set(x_79, 1, x_78); x_80 = lean_array_push(x_15, x_79); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -33954,14 +33844,14 @@ x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_83); lean_ctor_set(x_93, 1, x_92); x_94 = lean_array_push(x_87, x_93); -x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3; +x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3; lean_inc(x_83); x_96 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_96, 0, x_83); lean_ctor_set(x_96, 1, x_95); x_97 = lean_array_push(x_87, x_96); x_98 = lean_array_push(x_97, x_9); -x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); @@ -34009,12 +33899,12 @@ x_125 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_125, 0, x_108); lean_ctor_set(x_125, 1, x_124); x_126 = lean_array_push(x_87, x_125); -x_127 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_127 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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_87, x_128); -x_130 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_130 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_131 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_131, 0, x_130); lean_ctor_set(x_131, 1, x_129); @@ -34055,7 +33945,7 @@ x_151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_151, 0, x_108); lean_ctor_set(x_151, 1, x_150); x_152 = lean_array_push(x_87, x_151); -x_153 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_153 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_154 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_154, 0, x_153); lean_ctor_set(x_154, 1, x_152); @@ -34067,11 +33957,11 @@ return x_155; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -34178,7 +34068,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1() { _start: { lean_object* x_1; @@ -34186,7 +34076,7 @@ x_1 = lean_mk_string("refineLift"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2() { _start: { lean_object* x_1; @@ -34194,17 +34084,17 @@ x_1 = lean_mk_string("have"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4() { _start: { lean_object* x_1; @@ -34212,17 +34102,17 @@ x_1 = lean_mk_string("syntheticHole"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -34251,14 +34141,14 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -34292,12 +34182,12 @@ x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_26, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -34311,7 +34201,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_24); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_15, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -34326,14 +34216,14 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); x_53 = l_Array_empty___closed__1; x_54 = lean_array_push(x_53, x_52); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_49); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_49); @@ -34367,12 +34257,12 @@ x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = lean_array_push(x_64, x_75); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -34386,7 +34276,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_62); lean_ctor_set(x_83, 1, x_82); x_84 = lean_array_push(x_53, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -34398,11 +34288,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -34429,7 +34319,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -34501,7 +34391,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -34511,7 +34401,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2() { _start: { lean_object* x_1; @@ -34519,17 +34409,17 @@ x_1 = lean_mk_string("haveAssign"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -34560,7 +34450,7 @@ if (x_13 == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_14); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_14); @@ -34596,12 +34486,12 @@ lean_ctor_set(x_33, 0, x_14); lean_ctor_set(x_33, 1, x_32); x_34 = lean_array_push(x_17, x_33); x_35 = lean_array_push(x_34, x_11); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_31, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -34615,7 +34505,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_23); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_17, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -34630,7 +34520,7 @@ x_50 = lean_ctor_get(x_12, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_12); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); @@ -34666,12 +34556,12 @@ lean_ctor_set(x_69, 0, x_49); lean_ctor_set(x_69, 1, x_68); x_70 = lean_array_push(x_53, x_69); x_71 = lean_array_push(x_70, x_11); -x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); x_74 = lean_array_push(x_67, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -34685,7 +34575,7 @@ x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_59); lean_ctor_set(x_81, 1, x_80); x_82 = lean_array_push(x_53, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -34697,11 +34587,11 @@ return x_85; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -34808,7 +34698,7 @@ x_1 = l_Lean_Parser_Tactic_tacticSuffices_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1() { _start: { lean_object* x_1; @@ -34816,17 +34706,17 @@ x_1 = lean_mk_string("suffices"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -34855,14 +34745,14 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -34896,12 +34786,12 @@ x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_26, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -34915,7 +34805,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_24); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_15, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -34930,14 +34820,14 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); x_53 = l_Array_empty___closed__1; x_54 = lean_array_push(x_53, x_52); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; lean_inc(x_49); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_49); @@ -34971,12 +34861,12 @@ x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = lean_array_push(x_64, x_75); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -34990,7 +34880,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_62); lean_ctor_set(x_83, 1, x_82); x_84 = lean_array_push(x_53, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -35002,11 +34892,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -35097,7 +34987,7 @@ x_1 = l_Lean_Parser_Tactic_tacticLet_____closed__7; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20916_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20890_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35126,7 +35016,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -35167,7 +35057,7 @@ x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -35186,7 +35076,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_24); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_15, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -35201,7 +35091,7 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); @@ -35242,7 +35132,7 @@ x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); @@ -35261,7 +35151,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_62); lean_ctor_set(x_83, 1, x_82); x_84 = lean_array_push(x_53, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -35273,11 +35163,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20916____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20890____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20916_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20890_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -35356,7 +35246,7 @@ x_1 = l_Lean_Parser_Tactic_tacticShow_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1() { _start: { lean_object* x_1; @@ -35364,17 +35254,17 @@ x_1 = lean_mk_string("show"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3() { _start: { lean_object* x_1; @@ -35382,17 +35272,17 @@ x_1 = lean_mk_string("fromTerm"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5() { _start: { lean_object* x_1; @@ -35400,7 +35290,7 @@ x_1 = lean_mk_string("from"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35429,21 +35319,21 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); x_19 = lean_array_push(x_15, x_18); x_20 = lean_array_push(x_19, x_9); -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_12); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); @@ -35465,17 +35355,17 @@ x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); x_32 = lean_array_push(x_26, x_31); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_23, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_20, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -35490,7 +35380,7 @@ x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); x_47 = lean_array_push(x_15, x_46); -x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -35505,21 +35395,21 @@ x_51 = lean_ctor_get(x_10, 1); lean_inc(x_51); lean_inc(x_50); lean_dec(x_10); -x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_50); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_50); lean_ctor_set(x_53, 1, x_52); x_54 = l_Array_empty___closed__1; x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; lean_inc(x_50); x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_50); lean_ctor_set(x_57, 1, x_56); x_58 = lean_array_push(x_54, x_57); x_59 = lean_array_push(x_58, x_9); -x_60 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_60 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_50); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_50); @@ -35541,17 +35431,17 @@ x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); x_71 = lean_array_push(x_65, x_70); -x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); x_74 = lean_array_push(x_62, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); x_77 = lean_array_push(x_59, x_76); -x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -35566,7 +35456,7 @@ x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83); x_86 = lean_array_push(x_54, x_85); -x_87 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_87 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_86); @@ -35578,11 +35468,11 @@ return x_89; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -35709,7 +35599,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_letrec___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_1 = l_Lean_Parser_Tactic_first___closed__6; x_2 = l_Lean_Parser_Tactic_letrec___closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35739,7 +35629,7 @@ x_1 = l_Lean_Parser_Tactic_letrec___closed__13; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -35749,7 +35639,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -35759,7 +35649,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3() { _start: { lean_object* x_1; @@ -35767,7 +35657,7 @@ x_1 = lean_mk_string("rec"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35807,7 +35697,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; x_14 = lean_unsigned_to_nat(1u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_dec(x_1); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; lean_inc(x_15); x_17 = l_Lean_Syntax_isOfKind(x_15, x_16); if (x_17 == 0) @@ -35829,7 +35719,7 @@ if (x_21 == 0) { lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; x_22 = lean_ctor_get(x_20, 0); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_22); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); @@ -35842,7 +35732,7 @@ x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_22); lean_ctor_set(x_28, 1, x_27); x_29 = lean_array_push(x_25, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_inc(x_22); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_22); @@ -35880,12 +35770,12 @@ x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); x_50 = lean_array_push(x_44, x_49); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); x_53 = lean_array_push(x_41, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); @@ -35905,7 +35795,7 @@ x_60 = lean_ctor_get(x_20, 1); lean_inc(x_60); lean_inc(x_59); lean_dec(x_20); -x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1; +x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1; lean_inc(x_59); x_62 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_62, 0, x_59); @@ -35918,7 +35808,7 @@ x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_59); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_63, x_66); -x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_inc(x_59); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_59); @@ -35956,12 +35846,12 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); x_88 = lean_array_push(x_82, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); x_91 = lean_array_push(x_79, x_90); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); @@ -35980,11 +35870,11 @@ return x_97; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -36063,7 +35953,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__6; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21543_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21517_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36111,14 +36001,14 @@ x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); x_22 = lean_array_push(x_15, x_21); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3; lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); x_25 = lean_array_push(x_15, x_24); x_26 = lean_array_push(x_25, x_9); -x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -36166,12 +36056,12 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_36); lean_ctor_set(x_53, 1, x_52); x_54 = lean_array_push(x_15, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); x_57 = lean_array_push(x_15, x_56); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); @@ -36212,7 +36102,7 @@ x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_36); lean_ctor_set(x_79, 1, x_78); x_80 = lean_array_push(x_15, x_79); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -36246,14 +36136,14 @@ x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_83); lean_ctor_set(x_93, 1, x_92); x_94 = lean_array_push(x_87, x_93); -x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3; +x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3; lean_inc(x_83); x_96 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_96, 0, x_83); lean_ctor_set(x_96, 1, x_95); x_97 = lean_array_push(x_87, x_96); x_98 = lean_array_push(x_97, x_9); -x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); @@ -36301,12 +36191,12 @@ x_125 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_125, 0, x_108); lean_ctor_set(x_125, 1, x_124); x_126 = lean_array_push(x_87, x_125); -x_127 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_127 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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_87, x_128); -x_130 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_130 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_131 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_131, 0, x_130); lean_ctor_set(x_131, 1, x_129); @@ -36347,7 +36237,7 @@ x_151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_151, 0, x_108); lean_ctor_set(x_151, 1, x_150); x_152 = lean_array_push(x_87, x_151); -x_153 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_153 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_154 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_154, 0, x_153); lean_ctor_set(x_154, 1, x_152); @@ -36359,11 +36249,11 @@ return x_155; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21543____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21517____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21543_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21517_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -36442,7 +36332,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_x27_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1() { _start: { lean_object* x_1; @@ -36450,7 +36340,7 @@ x_1 = lean_mk_string("refineLift'"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36479,14 +36369,14 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -36520,12 +36410,12 @@ x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_26, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -36539,7 +36429,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_24); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_15, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -36554,14 +36444,14 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); x_53 = l_Array_empty___closed__1; x_54 = lean_array_push(x_53, x_52); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_49); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_49); @@ -36595,12 +36485,12 @@ x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = lean_array_push(x_64, x_75); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -36614,7 +36504,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_62); lean_ctor_set(x_83, 1, x_82); x_84 = lean_array_push(x_53, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -36626,11 +36516,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -36737,7 +36627,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__8; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22040_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22014_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36804,12 +36694,12 @@ lean_ctor_set(x_33, 0, x_14); lean_ctor_set(x_33, 1, x_32); x_34 = lean_array_push(x_17, x_33); x_35 = lean_array_push(x_34, x_11); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_31, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -36823,7 +36713,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_23); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_17, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -36874,12 +36764,12 @@ lean_ctor_set(x_69, 0, x_49); lean_ctor_set(x_69, 1, x_68); x_70 = lean_array_push(x_53, x_69); x_71 = lean_array_push(x_70, x_11); -x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); x_74 = lean_array_push(x_67, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -36893,7 +36783,7 @@ x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_59); lean_ctor_set(x_81, 1, x_80); x_82 = lean_array_push(x_53, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -36905,11 +36795,11 @@ return x_85; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22040____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22014____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22040_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22014_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -36988,7 +36878,7 @@ x_1 = l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22238_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22212_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37017,7 +36907,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -37058,7 +36948,7 @@ x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -37077,7 +36967,7 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_24); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_15, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -37092,7 +36982,7 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); @@ -37133,7 +37023,7 @@ x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); @@ -37152,7 +37042,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_62); lean_ctor_set(x_83, 1, x_82); x_84 = lean_array_push(x_53, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -37164,11 +37054,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22238____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22212____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22238_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22212_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -37358,7 +37248,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -37504,7 +37394,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__9; +x_2 = l_Lean_Parser_Tactic_first___closed__9; x_3 = l_Lean_Parser_Tactic_inductionAlt; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); @@ -37529,7 +37419,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_1 = l_Lean_Parser_Tactic_first___closed__6; x_2 = l_Lean_Parser_Tactic_inductionAlts___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -38137,7 +38027,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRepeat_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____closed__1() { _start: { lean_object* x_1; @@ -38145,7 +38035,7 @@ x_1 = lean_mk_string("repeat"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38168,7 +38058,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -38191,7 +38081,7 @@ x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_ x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; 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_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; x_18 = lean_ctor_get(x_16, 0); x_19 = l_Lean_Parser_Tactic_first___closed__1; lean_inc(x_18); @@ -38200,260 +38090,276 @@ lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); x_21 = l_Array_empty___closed__1; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_24 = lean_array_push(x_22, x_23); -x_25 = l_prec_x28___x29___closed__3; +x_23 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; lean_inc(x_18); -x_26 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_26, 0, x_18); -lean_ctor_set(x_26, 1, x_25); -x_27 = lean_array_push(x_21, x_26); -x_28 = lean_array_push(x_21, x_15); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_10); -lean_ctor_set(x_29, 1, x_28); -lean_inc(x_29); -x_30 = lean_array_push(x_27, x_29); -x_31 = l_prec_x28___x29___closed__7; +x_24 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_24, 0, x_18); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_array_push(x_21, x_24); +x_26 = l_prec_x28___x29___closed__3; lean_inc(x_18); -x_32 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_32, 0, x_18); -lean_ctor_set(x_32, 1, x_31); -x_33 = lean_array_push(x_30, x_32); -x_34 = l_Lean_Parser_Tactic_paren___closed__1; -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -x_36 = lean_array_push(x_21, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_16821____closed__12; +x_27 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_27, 0, x_18); +lean_ctor_set(x_27, 1, x_26); +x_28 = lean_array_push(x_21, x_27); +x_29 = lean_array_push(x_21, x_15); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_10); +lean_ctor_set(x_30, 1, x_29); +lean_inc(x_30); +x_31 = lean_array_push(x_28, x_30); +x_32 = l_prec_x28___x29___closed__7; lean_inc(x_18); -x_38 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_38, 0, x_18); -lean_ctor_set(x_38, 1, x_37); -x_39 = lean_array_push(x_21, x_38); -x_40 = l_Lean_nullKind___closed__2; -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_39); -x_42 = lean_array_push(x_36, x_41); -x_43 = l_Lean_groupKind___closed__2; -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_44, 1, x_42); -x_45 = lean_array_push(x_21, x_44); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____closed__1; +x_33 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_33, 0, x_18); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_array_push(x_31, x_33); +x_35 = l_Lean_Parser_Tactic_paren___closed__1; +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +x_37 = lean_array_push(x_21, x_36); +x_38 = l_myMacro____x40_Init_Notation___hyg_16821____closed__12; lean_inc(x_18); -x_47 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_47, 0, x_18); -lean_ctor_set(x_47, 1, x_46); -x_48 = lean_array_push(x_21, x_47); -x_49 = lean_array_push(x_48, x_29); -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_4); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_array_push(x_21, x_50); -x_52 = lean_array_push(x_51, x_23); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_43); -lean_ctor_set(x_53, 1, x_52); -x_54 = lean_array_push(x_45, x_53); +x_39 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_39, 0, x_18); +lean_ctor_set(x_39, 1, x_38); +x_40 = lean_array_push(x_21, x_39); +x_41 = l_Lean_nullKind___closed__2; +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_40); +x_43 = lean_array_push(x_37, x_42); +x_44 = l_Lean_groupKind___closed__2; +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_43); +x_46 = lean_array_push(x_21, x_45); +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____closed__1; +lean_inc(x_18); +x_48 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_48, 0, x_18); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_array_push(x_21, x_48); +x_50 = lean_array_push(x_49, x_30); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_4); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_array_push(x_21, x_51); +x_53 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_54 = lean_array_push(x_52, x_53); x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_40); +lean_ctor_set(x_55, 0, x_44); lean_ctor_set(x_55, 1, x_54); -x_56 = lean_array_push(x_21, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_56); -x_59 = lean_array_push(x_21, x_58); +x_56 = lean_array_push(x_46, x_55); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_41); +lean_ctor_set(x_57, 1, x_56); +x_58 = lean_array_push(x_21, x_57); +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_10); -lean_ctor_set(x_60, 1, x_59); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_58); x_61 = lean_array_push(x_21, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; -lean_inc(x_18); -x_63 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_63, 0, x_18); -lean_ctor_set(x_63, 1, x_62); -x_64 = lean_array_push(x_61, x_63); -x_65 = l_Lean_Parser_Tactic_skip___closed__1; -x_66 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_66, 0, x_18); -lean_ctor_set(x_66, 1, x_65); -x_67 = lean_array_push(x_21, x_66); -x_68 = l_Lean_Parser_Tactic_skip___closed__2; -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_67); -x_70 = lean_array_push(x_21, x_69); -x_71 = lean_array_push(x_70, x_23); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_43); -lean_ctor_set(x_72, 1, x_71); -x_73 = lean_array_push(x_21, x_72); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_40); -lean_ctor_set(x_74, 1, x_73); -x_75 = lean_array_push(x_21, x_74); -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_57); -lean_ctor_set(x_76, 1, x_75); -x_77 = lean_array_push(x_21, x_76); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_10); -lean_ctor_set(x_78, 1, x_77); -x_79 = lean_array_push(x_64, x_78); -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_40); -lean_ctor_set(x_80, 1, x_79); -x_81 = lean_array_push(x_24, x_80); -x_82 = l_Lean_Parser_Tactic_first___closed__2; +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_10); +lean_ctor_set(x_62, 1, x_61); +lean_inc(x_25); +x_63 = lean_array_push(x_25, x_62); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_44); +lean_ctor_set(x_64, 1, x_63); +x_65 = lean_array_push(x_21, x_64); +x_66 = l_Lean_Parser_Tactic_skip___closed__1; +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_18); +lean_ctor_set(x_67, 1, x_66); +x_68 = lean_array_push(x_21, x_67); +x_69 = l_Lean_Parser_Tactic_skip___closed__2; +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_68); +x_71 = lean_array_push(x_21, x_70); +x_72 = lean_array_push(x_71, x_53); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_44); +lean_ctor_set(x_73, 1, x_72); +x_74 = lean_array_push(x_21, x_73); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_41); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_array_push(x_21, x_75); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_59); +lean_ctor_set(x_77, 1, x_76); +x_78 = lean_array_push(x_21, x_77); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_10); +lean_ctor_set(x_79, 1, x_78); +x_80 = lean_array_push(x_25, x_79); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_44); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_65, x_81); x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_82); -lean_ctor_set(x_83, 1, x_81); -lean_ctor_set(x_16, 0, x_83); +lean_ctor_set(x_83, 0, x_41); +lean_ctor_set(x_83, 1, x_82); +x_84 = lean_array_push(x_22, x_83); +x_85 = l_Lean_Parser_Tactic_first___closed__2; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_84); +lean_ctor_set(x_16, 0, x_86); return x_16; } else { -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; -x_84 = lean_ctor_get(x_16, 0); -x_85 = lean_ctor_get(x_16, 1); -lean_inc(x_85); -lean_inc(x_84); +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_87 = lean_ctor_get(x_16, 0); +x_88 = lean_ctor_get(x_16, 1); +lean_inc(x_88); +lean_inc(x_87); lean_dec(x_16); -x_86 = l_Lean_Parser_Tactic_first___closed__1; -lean_inc(x_84); -x_87 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_87, 0, x_84); -lean_ctor_set(x_87, 1, x_86); -x_88 = l_Array_empty___closed__1; -x_89 = lean_array_push(x_88, x_87); -x_90 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_91 = lean_array_push(x_89, x_90); -x_92 = l_prec_x28___x29___closed__3; -lean_inc(x_84); -x_93 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_93, 0, x_84); -lean_ctor_set(x_93, 1, x_92); -x_94 = lean_array_push(x_88, x_93); -x_95 = lean_array_push(x_88, x_15); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_10); -lean_ctor_set(x_96, 1, x_95); -lean_inc(x_96); -x_97 = lean_array_push(x_94, x_96); -x_98 = l_prec_x28___x29___closed__7; -lean_inc(x_84); -x_99 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_99, 0, x_84); -lean_ctor_set(x_99, 1, x_98); -x_100 = lean_array_push(x_97, x_99); -x_101 = l_Lean_Parser_Tactic_paren___closed__1; -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_101); -lean_ctor_set(x_102, 1, x_100); -x_103 = lean_array_push(x_88, x_102); -x_104 = l_myMacro____x40_Init_Notation___hyg_16821____closed__12; -lean_inc(x_84); -x_105 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_105, 0, x_84); -lean_ctor_set(x_105, 1, x_104); -x_106 = lean_array_push(x_88, x_105); -x_107 = l_Lean_nullKind___closed__2; -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = lean_array_push(x_103, x_108); -x_110 = l_Lean_groupKind___closed__2; -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_110); -lean_ctor_set(x_111, 1, x_109); -x_112 = lean_array_push(x_88, x_111); -x_113 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____closed__1; -lean_inc(x_84); -x_114 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_114, 0, x_84); -lean_ctor_set(x_114, 1, x_113); -x_115 = lean_array_push(x_88, x_114); -x_116 = lean_array_push(x_115, x_96); -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_4); -lean_ctor_set(x_117, 1, x_116); -x_118 = lean_array_push(x_88, x_117); -x_119 = lean_array_push(x_118, x_90); -x_120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_120, 0, x_110); -lean_ctor_set(x_120, 1, x_119); -x_121 = lean_array_push(x_112, x_120); -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_107); -lean_ctor_set(x_122, 1, x_121); -x_123 = lean_array_push(x_88, x_122); -x_124 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_89 = l_Lean_Parser_Tactic_first___closed__1; +lean_inc(x_87); +x_90 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_90, 0, x_87); +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 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; +lean_inc(x_87); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_87); +lean_ctor_set(x_94, 1, x_93); +x_95 = lean_array_push(x_91, x_94); +x_96 = l_prec_x28___x29___closed__3; +lean_inc(x_87); +x_97 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_97, 0, x_87); +lean_ctor_set(x_97, 1, x_96); +x_98 = lean_array_push(x_91, x_97); +x_99 = lean_array_push(x_91, x_15); +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_10); +lean_ctor_set(x_100, 1, x_99); +lean_inc(x_100); +x_101 = lean_array_push(x_98, x_100); +x_102 = l_prec_x28___x29___closed__7; +lean_inc(x_87); +x_103 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_103, 0, x_87); +lean_ctor_set(x_103, 1, x_102); +x_104 = lean_array_push(x_101, x_103); +x_105 = l_Lean_Parser_Tactic_paren___closed__1; +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_105); +lean_ctor_set(x_106, 1, x_104); +x_107 = lean_array_push(x_91, x_106); +x_108 = l_myMacro____x40_Init_Notation___hyg_16821____closed__12; +lean_inc(x_87); +x_109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_109, 0, x_87); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_array_push(x_91, x_109); +x_111 = l_Lean_nullKind___closed__2; +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_110); +x_113 = lean_array_push(x_107, x_112); +x_114 = l_Lean_groupKind___closed__2; +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_91, x_115); +x_117 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____closed__1; +lean_inc(x_87); +x_118 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_118, 0, x_87); +lean_ctor_set(x_118, 1, x_117); +x_119 = lean_array_push(x_91, x_118); +x_120 = lean_array_push(x_119, x_100); +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_4); +lean_ctor_set(x_121, 1, x_120); +x_122 = lean_array_push(x_91, x_121); +x_123 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_124 = lean_array_push(x_122, x_123); x_125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_123); -x_126 = lean_array_push(x_88, x_125); +lean_ctor_set(x_125, 0, x_114); +lean_ctor_set(x_125, 1, x_124); +x_126 = lean_array_push(x_116, x_125); x_127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_127, 0, x_10); +lean_ctor_set(x_127, 0, x_111); lean_ctor_set(x_127, 1, x_126); -x_128 = lean_array_push(x_88, x_127); -x_129 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; -lean_inc(x_84); -x_130 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_130, 0, x_84); -lean_ctor_set(x_130, 1, x_129); -x_131 = lean_array_push(x_128, x_130); -x_132 = l_Lean_Parser_Tactic_skip___closed__1; -x_133 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_133, 0, x_84); -lean_ctor_set(x_133, 1, x_132); -x_134 = lean_array_push(x_88, x_133); -x_135 = l_Lean_Parser_Tactic_skip___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_88, x_136); -x_138 = lean_array_push(x_137, x_90); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_110); -lean_ctor_set(x_139, 1, x_138); -x_140 = lean_array_push(x_88, x_139); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_107); -lean_ctor_set(x_141, 1, x_140); -x_142 = lean_array_push(x_88, x_141); +x_128 = lean_array_push(x_91, x_127); +x_129 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_129); +lean_ctor_set(x_130, 1, x_128); +x_131 = lean_array_push(x_91, x_130); +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_10); +lean_ctor_set(x_132, 1, x_131); +lean_inc(x_95); +x_133 = lean_array_push(x_95, x_132); +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_114); +lean_ctor_set(x_134, 1, x_133); +x_135 = lean_array_push(x_91, x_134); +x_136 = l_Lean_Parser_Tactic_skip___closed__1; +x_137 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_137, 0, x_87); +lean_ctor_set(x_137, 1, x_136); +x_138 = lean_array_push(x_91, x_137); +x_139 = l_Lean_Parser_Tactic_skip___closed__2; +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_139); +lean_ctor_set(x_140, 1, x_138); +x_141 = lean_array_push(x_91, x_140); +x_142 = lean_array_push(x_141, x_123); x_143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_143, 0, x_124); +lean_ctor_set(x_143, 0, x_114); lean_ctor_set(x_143, 1, x_142); -x_144 = lean_array_push(x_88, x_143); +x_144 = lean_array_push(x_91, x_143); x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_10); +lean_ctor_set(x_145, 0, x_111); lean_ctor_set(x_145, 1, x_144); -x_146 = lean_array_push(x_131, x_145); +x_146 = lean_array_push(x_91, x_145); x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_107); +lean_ctor_set(x_147, 0, x_129); lean_ctor_set(x_147, 1, x_146); x_148 = lean_array_push(x_91, x_147); -x_149 = l_Lean_Parser_Tactic_first___closed__2; -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_149); -lean_ctor_set(x_150, 1, x_148); -x_151 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_151, 0, x_150); -lean_ctor_set(x_151, 1, x_85); -return x_151; +x_149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_149, 0, x_10); +lean_ctor_set(x_149, 1, x_148); +x_150 = lean_array_push(x_95, x_149); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_114); +lean_ctor_set(x_151, 1, x_150); +x_152 = lean_array_push(x_135, x_151); +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_111); +lean_ctor_set(x_153, 1, x_152); +x_154 = lean_array_push(x_92, x_153); +x_155 = l_Lean_Parser_Tactic_first___closed__2; +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_154); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_156); +lean_ctor_set(x_157, 1, x_88); +return x_157; } } } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -38518,7 +38424,7 @@ x_1 = l_Lean_Parser_Tactic_tacticTrivial___closed__5; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23047_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23031_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38581,16 +38487,16 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23047____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23031____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23047_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23031_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23120_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23104_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38653,16 +38559,16 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23120____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23104____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23120_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23104_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23193_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23177_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38725,16 +38631,16 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23193____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23177____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23193_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23177_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__1() { _start: { lean_object* x_1; @@ -38742,22 +38648,22 @@ x_1 = lean_mk_string("True.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -38765,7 +38671,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__4() { _start: { lean_object* x_1; @@ -38773,51 +38679,51 @@ x_1 = lean_mk_string("True"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; x_2 = l_Lean_Parser_Tactic_intro___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__7; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38854,10 +38760,10 @@ lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6; x_18 = l_Lean_addMacroScope(x_12, x_17, x_11); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__3; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__8; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__3; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__8; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_10); lean_ctor_set(x_21, 1, x_19); @@ -38891,10 +38797,10 @@ lean_ctor_set(x_30, 0, x_25); lean_ctor_set(x_30, 1, x_29); x_31 = l_Array_empty___closed__1; x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6; x_34 = l_Lean_addMacroScope(x_28, x_33, x_27); -x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__3; -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__8; +x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__8; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_25); lean_ctor_set(x_37, 1, x_35); @@ -38913,7 +38819,7 @@ return x_41; } } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__1() { _start: { lean_object* x_1; @@ -38921,22 +38827,22 @@ x_1 = lean_mk_string("And.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -38944,7 +38850,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -38954,31 +38860,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__7() { _start: { lean_object* x_1; @@ -38986,7 +38892,7 @@ x_1 = lean_mk_string("<;>"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -39023,10 +38929,10 @@ lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4; x_18 = l_Lean_addMacroScope(x_12, x_17, x_11); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__3; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__6; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__3; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__6; lean_inc(x_10); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_10); @@ -39039,7 +38945,7 @@ x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); x_25 = lean_array_push(x_15, x_24); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__7; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__7; lean_inc(x_10); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_10); @@ -39081,10 +38987,10 @@ lean_ctor_set(x_41, 0, x_36); lean_ctor_set(x_41, 1, x_40); x_42 = l_Array_empty___closed__1; x_43 = lean_array_push(x_42, x_41); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4; x_45 = l_Lean_addMacroScope(x_39, x_44, x_38); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__3; -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__6; +x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__3; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__6; lean_inc(x_36); x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_36); @@ -39097,7 +39003,7 @@ x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = lean_array_push(x_42, x_51); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__7; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__7; lean_inc(x_36); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_36); @@ -39198,7 +39104,7 @@ x_1 = l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1() { _start: { lean_object* x_1; @@ -39206,17 +39112,17 @@ x_1 = lean_mk_string("set_option"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__3() { _start: { lean_object* x_1; @@ -39224,22 +39130,22 @@ x_1 = lean_mk_string("tactic.hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__4; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -39247,7 +39153,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__6() { _start: { lean_object* x_1; @@ -39255,17 +39161,17 @@ x_1 = lean_mk_string("hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8() { _start: { lean_object* x_1; @@ -39273,7 +39179,7 @@ x_1 = lean_mk_string("false"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9() { _start: { lean_object* x_1; @@ -39281,7 +39187,7 @@ x_1 = lean_mk_string("in"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -39316,17 +39222,17 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); x_17 = l_Array_empty___closed__1; x_18 = lean_array_push(x_17, x_16); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7; x_20 = l_Lean_addMacroScope(x_14, x_19, x_13); x_21 = lean_box(0); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__5; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__5; lean_inc(x_12); x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_12); @@ -39334,19 +39240,19 @@ lean_ctor_set(x_23, 1, x_22); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_21); x_24 = lean_array_push(x_18, x_23); -x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_inc(x_12); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_12); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_push(x_24, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9; x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); x_30 = lean_array_push(x_27, x_29); x_31 = lean_array_push(x_30, x_9); -x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -39356,7 +39262,7 @@ x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); x_37 = lean_array_push(x_17, x_36); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); @@ -39376,17 +39282,17 @@ lean_inc(x_42); x_43 = lean_ctor_get(x_2, 1); lean_inc(x_43); lean_dec(x_2); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_inc(x_40); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_40); lean_ctor_set(x_45, 1, x_44); x_46 = l_Array_empty___closed__1; x_47 = lean_array_push(x_46, x_45); -x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7; +x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7; x_49 = l_Lean_addMacroScope(x_43, x_48, x_42); x_50 = lean_box(0); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__5; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__5; lean_inc(x_40); x_52 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_52, 0, x_40); @@ -39394,19 +39300,19 @@ lean_ctor_set(x_52, 1, x_51); lean_ctor_set(x_52, 2, x_49); lean_ctor_set(x_52, 3, x_50); x_53 = lean_array_push(x_47, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_inc(x_40); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_40); lean_ctor_set(x_55, 1, x_54); x_56 = lean_array_push(x_53, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9; +x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9; x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_40); lean_ctor_set(x_58, 1, x_57); x_59 = lean_array_push(x_56, x_58); x_60 = lean_array_push(x_59, x_9); -x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -39416,7 +39322,7 @@ x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); x_66 = lean_array_push(x_46, x_65); -x_67 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_67 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____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); @@ -39634,7 +39540,7 @@ x_1 = l_term_u2039___u203a___closed__9; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_23708____closed__1() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_23692____closed__1() { _start: { lean_object* x_1; @@ -39642,17 +39548,17 @@ x_1 = lean_mk_string("byTactic"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_23708____closed__2() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_23692____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1; +x_2 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_23708____closed__3() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_23692____closed__3() { _start: { lean_object* x_1; @@ -39660,7 +39566,7 @@ x_1 = lean_mk_string("by"); return x_1; } } -lean_object* l_myMacro____x40_Init_Notation___hyg_23708_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_Notation___hyg_23692_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -39696,7 +39602,7 @@ lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_17 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -39725,17 +39631,17 @@ x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); x_33 = lean_array_push(x_15, x_32); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); x_36 = lean_array_push(x_15, x_35); -x_37 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_37 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); x_39 = lean_array_push(x_19, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_40 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -39787,7 +39693,7 @@ lean_ctor_set(x_62, 0, x_59); lean_ctor_set(x_62, 1, x_61); x_63 = l_Array_empty___closed__1; x_64 = lean_array_push(x_63, x_62); -x_65 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_65 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_inc(x_59); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_59); @@ -39816,17 +39722,17 @@ 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_63, x_80); -x_82 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_82 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_81); x_84 = lean_array_push(x_63, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); x_87 = lean_array_push(x_67, x_86); -x_88 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_88 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); @@ -39868,11 +39774,11 @@ return x_107; } } } -lean_object* l_myMacro____x40_Init_Notation___hyg_23708____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_Notation___hyg_23692____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_myMacro____x40_Init_Notation___hyg_23708_(x_1, x_2, x_3); +x_4 = l_myMacro____x40_Init_Notation___hyg_23692_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -42402,42 +42308,22 @@ l_Lean_Parser_Tactic_first___closed__8 = _init_l_Lean_Parser_Tactic_first___clos lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__8); l_Lean_Parser_Tactic_first___closed__9 = _init_l_Lean_Parser_Tactic_first___closed__9(); lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__9); +l_Lean_Parser_Tactic_first___closed__10 = _init_l_Lean_Parser_Tactic_first___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__10); +l_Lean_Parser_Tactic_first___closed__11 = _init_l_Lean_Parser_Tactic_first___closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__11); +l_Lean_Parser_Tactic_first___closed__12 = _init_l_Lean_Parser_Tactic_first___closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__12); +l_Lean_Parser_Tactic_first___closed__13 = _init_l_Lean_Parser_Tactic_first___closed__13(); +lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__13); +l_Lean_Parser_Tactic_first___closed__14 = _init_l_Lean_Parser_Tactic_first___closed__14(); +lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__14); +l_Lean_Parser_Tactic_first___closed__15 = _init_l_Lean_Parser_Tactic_first___closed__15(); +lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__15); +l_Lean_Parser_Tactic_first___closed__16 = _init_l_Lean_Parser_Tactic_first___closed__16(); +lean_mark_persistent(l_Lean_Parser_Tactic_first___closed__16); l_Lean_Parser_Tactic_first = _init_l_Lean_Parser_Tactic_first(); lean_mark_persistent(l_Lean_Parser_Tactic_first); -l_Lean_Parser_Tactic_firstNew___closed__1 = _init_l_Lean_Parser_Tactic_firstNew___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__1); -l_Lean_Parser_Tactic_firstNew___closed__2 = _init_l_Lean_Parser_Tactic_firstNew___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__2); -l_Lean_Parser_Tactic_firstNew___closed__3 = _init_l_Lean_Parser_Tactic_firstNew___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__3); -l_Lean_Parser_Tactic_firstNew___closed__4 = _init_l_Lean_Parser_Tactic_firstNew___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__4); -l_Lean_Parser_Tactic_firstNew___closed__5 = _init_l_Lean_Parser_Tactic_firstNew___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__5); -l_Lean_Parser_Tactic_firstNew___closed__6 = _init_l_Lean_Parser_Tactic_firstNew___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__6); -l_Lean_Parser_Tactic_firstNew___closed__7 = _init_l_Lean_Parser_Tactic_firstNew___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__7); -l_Lean_Parser_Tactic_firstNew___closed__8 = _init_l_Lean_Parser_Tactic_firstNew___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__8); -l_Lean_Parser_Tactic_firstNew___closed__9 = _init_l_Lean_Parser_Tactic_firstNew___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__9); -l_Lean_Parser_Tactic_firstNew___closed__10 = _init_l_Lean_Parser_Tactic_firstNew___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__10); -l_Lean_Parser_Tactic_firstNew___closed__11 = _init_l_Lean_Parser_Tactic_firstNew___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__11); -l_Lean_Parser_Tactic_firstNew___closed__12 = _init_l_Lean_Parser_Tactic_firstNew___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__12); -l_Lean_Parser_Tactic_firstNew___closed__13 = _init_l_Lean_Parser_Tactic_firstNew___closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__13); -l_Lean_Parser_Tactic_firstNew___closed__14 = _init_l_Lean_Parser_Tactic_firstNew___closed__14(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__14); -l_Lean_Parser_Tactic_firstNew___closed__15 = _init_l_Lean_Parser_Tactic_firstNew___closed__15(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__15); -l_Lean_Parser_Tactic_firstNew___closed__16 = _init_l_Lean_Parser_Tactic_firstNew___closed__16(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew___closed__16); -l_Lean_Parser_Tactic_firstNew = _init_l_Lean_Parser_Tactic_firstNew(); -lean_mark_persistent(l_Lean_Parser_Tactic_firstNew); l_Lean_Parser_Tactic_rotateLeft___closed__1 = _init_l_Lean_Parser_Tactic_rotateLeft___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_rotateLeft___closed__1); l_Lean_Parser_Tactic_rotateLeft___closed__2 = _init_l_Lean_Parser_Tactic_rotateLeft___closed__2(); @@ -42478,16 +42364,16 @@ l_Lean_Parser_Tactic_tacticTry_____closed__6 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry_____closed__6); l_Lean_Parser_Tactic_tacticTry__ = _init_l_Lean_Parser_Tactic_tacticTry__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5); l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1 = _init_l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1); l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2 = _init_l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2(); @@ -42520,16 +42406,16 @@ l_Lean_Parser_Tactic_tacticRfl___closed__5 = _init_l_Lean_Parser_Tactic_tacticRf lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl___closed__5); l_Lean_Parser_Tactic_tacticRfl = _init_l_Lean_Parser_Tactic_tacticRfl(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__5); l_Lean_Parser_Tactic_tacticAdmit___closed__1 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__1); l_Lean_Parser_Tactic_tacticAdmit___closed__2 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__2(); @@ -42542,10 +42428,10 @@ l_Lean_Parser_Tactic_tacticAdmit___closed__5 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__5); l_Lean_Parser_Tactic_tacticAdmit = _init_l_Lean_Parser_Tactic_tacticAdmit(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2); l_Lean_Parser_Tactic_tacticInferInstance___closed__1 = _init_l_Lean_Parser_Tactic_tacticInferInstance___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticInferInstance___closed__1); l_Lean_Parser_Tactic_tacticInferInstance___closed__2 = _init_l_Lean_Parser_Tactic_tacticInferInstance___closed__2(); @@ -42558,16 +42444,16 @@ l_Lean_Parser_Tactic_tacticInferInstance___closed__5 = _init_l_Lean_Parser_Tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticInferInstance___closed__5); l_Lean_Parser_Tactic_tacticInferInstance = _init_l_Lean_Parser_Tactic_tacticInferInstance(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticInferInstance); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5); l_Lean_Parser_Tactic_locationWildcard___closed__1 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___closed__1); l_Lean_Parser_Tactic_locationWildcard___closed__2 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__2(); @@ -42922,12 +42808,12 @@ l_Lean_Parser_Tactic_tacticRefineLift_____closed__6 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefineLift_____closed__6); l_Lean_Parser_Tactic_tacticRefineLift__ = _init_l_Lean_Parser_Tactic_tacticRefineLift__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefineLift__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__3); l_Lean_Parser_Tactic_tacticHave_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____closed__1); l_Lean_Parser_Tactic_tacticHave_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_____closed__2(); @@ -42948,16 +42834,16 @@ l_Lean_Parser_Tactic_tacticHave_____closed__9 = _init_l_Lean_Parser_Tactic_tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____closed__9); l_Lean_Parser_Tactic_tacticHave__ = _init_l_Lean_Parser_Tactic_tacticHave__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2(); @@ -42974,12 +42860,12 @@ l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__ = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3); l_Lean_Parser_Tactic_tacticSuffices_____closed__1 = _init_l_Lean_Parser_Tactic_tacticSuffices_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices_____closed__1); l_Lean_Parser_Tactic_tacticSuffices_____closed__2 = _init_l_Lean_Parser_Tactic_tacticSuffices_____closed__2(); @@ -43000,10 +42886,10 @@ l_Lean_Parser_Tactic_tacticSuffices_____closed__9 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices_____closed__9); l_Lean_Parser_Tactic_tacticSuffices__ = _init_l_Lean_Parser_Tactic_tacticSuffices__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2); l_Lean_Parser_Tactic_tacticLet_____closed__1 = _init_l_Lean_Parser_Tactic_tacticLet_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticLet_____closed__1); l_Lean_Parser_Tactic_tacticLet_____closed__2 = _init_l_Lean_Parser_Tactic_tacticLet_____closed__2(); @@ -43034,16 +42920,16 @@ l_Lean_Parser_Tactic_tacticShow_____closed__6 = _init_l_Lean_Parser_Tactic_tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticShow_____closed__6); l_Lean_Parser_Tactic_tacticShow__ = _init_l_Lean_Parser_Tactic_tacticShow__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticShow__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5); l_Lean_Parser_Tactic_letrec___closed__1 = _init_l_Lean_Parser_Tactic_letrec___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__1); l_Lean_Parser_Tactic_letrec___closed__2 = _init_l_Lean_Parser_Tactic_letrec___closed__2(); @@ -43072,12 +42958,12 @@ l_Lean_Parser_Tactic_letrec___closed__13 = _init_l_Lean_Parser_Tactic_letrec___c lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__13); l_Lean_Parser_Tactic_letrec = _init_l_Lean_Parser_Tactic_letrec(); lean_mark_persistent(l_Lean_Parser_Tactic_letrec); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3); l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1 = _init_l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1); l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__2 = _init_l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__2(); @@ -43106,8 +42992,8 @@ l_Lean_Parser_Tactic_tacticHave_x27_____closed__6 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27_____closed__6); l_Lean_Parser_Tactic_tacticHave_x27__ = _init_l_Lean_Parser_Tactic_tacticHave_x27__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21844____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21818____closed__1); l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1); l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2(); @@ -43310,8 +43196,8 @@ l_Lean_Parser_Tactic_tacticRepeat_____closed__6 = _init_l_Lean_Parser_Tactic_tac lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat_____closed__6); l_Lean_Parser_Tactic_tacticRepeat__ = _init_l_Lean_Parser_Tactic_tacticRepeat__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22722____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22696____closed__1); l_Lean_Parser_Tactic_tacticTrivial___closed__1 = _init_l_Lean_Parser_Tactic_tacticTrivial___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTrivial___closed__1); l_Lean_Parser_Tactic_tacticTrivial___closed__2 = _init_l_Lean_Parser_Tactic_tacticTrivial___closed__2(); @@ -43324,36 +43210,36 @@ l_Lean_Parser_Tactic_tacticTrivial___closed__5 = _init_l_Lean_Parser_Tactic_tact lean_mark_persistent(l_Lean_Parser_Tactic_tacticTrivial___closed__5); l_Lean_Parser_Tactic_tacticTrivial = _init_l_Lean_Parser_Tactic_tacticTrivial(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTrivial); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23362____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23346____closed__7); l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1 = _init_l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1); l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2 = _init_l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2(); @@ -43368,24 +43254,24 @@ l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6); l_Lean_Parser_Tactic_tacticUnhygienic__ = _init_l_Lean_Parser_Tactic_tacticUnhygienic__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9); l_Lean_Parser_Attr_simp___closed__1 = _init_l_Lean_Parser_Attr_simp___closed__1(); lean_mark_persistent(l_Lean_Parser_Attr_simp___closed__1); l_Lean_Parser_Attr_simp___closed__2 = _init_l_Lean_Parser_Attr_simp___closed__2(); @@ -43424,12 +43310,12 @@ l_term_u2039___u203a___closed__9 = _init_l_term_u2039___u203a___closed__9(); lean_mark_persistent(l_term_u2039___u203a___closed__9); l_term_u2039___u203a = _init_l_term_u2039___u203a(); lean_mark_persistent(l_term_u2039___u203a); -l_myMacro____x40_Init_Notation___hyg_23708____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_23708____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_23708____closed__1); -l_myMacro____x40_Init_Notation___hyg_23708____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_23708____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_23708____closed__2); -l_myMacro____x40_Init_Notation___hyg_23708____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_23708____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_23708____closed__3); +l_myMacro____x40_Init_Notation___hyg_23692____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_23692____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_23692____closed__1); +l_myMacro____x40_Init_Notation___hyg_23692____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_23692____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_23692____closed__2); +l_myMacro____x40_Init_Notation___hyg_23692____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_23692____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_23692____closed__3); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/NotationExtra.c b/stage0/stdlib/Init/NotationExtra.c index 999606f591..3a8b0b5c82 100644 --- a/stage0/stdlib/Init/NotationExtra.c +++ b/stage0/stdlib/Init/NotationExtra.c @@ -30,12 +30,12 @@ lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__31; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__4; lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__8; lean_object* l_Lean_unifConstraint___closed__1; -lean_object* l_tacticSolve_x7c___x7c___closed__1; extern lean_object* l_termDepIfThenElse___closed__12; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__9; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__7; extern lean_object* l_Lean_Parser_Tactic_apply___closed__2; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__7; +extern lean_object* l_Lean_Parser_Tactic_first___closed__9; lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_termExists___x2c_____closed__5; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__24; @@ -54,6 +54,7 @@ lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__19; uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_explicitBinders___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; lean_object* l_Lean_unbracktedExplicitBinders___closed__5; lean_object* l_termExists___x2c_____closed__1; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__16; @@ -106,16 +107,15 @@ lean_object* l_Lean_unifConstraintElem; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_expandExplicitBindersAux_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7460____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_getEvenElems___rarg___closed__1; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__17; lean_object* l_term_u2203___x2c_____closed__7; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__26; lean_object* l_term_u2203___x2c__; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l_tacticFunext_______closed__3; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__1; lean_object* l_Lean_bracketedExplicitBinders___closed__3; -lean_object* l_tacticSolve_x7c___x7c___closed__3; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248__match__1(lean_object*); lean_object* l_Lean_explicitBinders___closed__1; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__4; @@ -137,7 +137,6 @@ uint8_t l_USize_decLt(size_t, size_t); lean_object* l_term_u03a3___x2c_____closed__6; lean_object* l_termExists___x2c_____closed__7; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248____closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; lean_object* l_term_u03a3___x2c_____closed__2; extern lean_object* l_Lean_Parser_Tactic_focus___closed__2; extern lean_object* l_Lean_Parser_Tactic_intros___closed__6; @@ -148,7 +147,6 @@ lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_36_(lean_object*, le lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__21; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__5; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__12; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7451____spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_term_u03a3___x2c_____closed__1; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__10; lean_object* l_Lean_expandBrackedBindersAux_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -161,6 +159,7 @@ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__6; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__24; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__6; +lean_object* l_solve___closed__2; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__3___lambda__2___closed__1; lean_object* l_Lean_binderIdent; @@ -168,11 +167,11 @@ lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__7; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__2; lean_object* l_term_u03a3___x2c_____closed__8; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2313____boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__3___lambda__2___closed__2; uint8_t l_Lean_Name_hasMacroScopes(lean_object*); lean_object* l_Lean_expandBrackedBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__25; +lean_object* l_solve___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_term_u03a3_x27___x2c_____closed__5; extern lean_object* l_term_x5b___x5d___closed__10; @@ -192,9 +191,10 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_4972____closed__5; lean_object* l_term_u2203___x2c_____closed__1; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__13; +lean_object* l_solve; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; extern lean_object* l_Lean_Parser_Tactic_focus___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__7; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3; lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__1___boxed(lean_object*, lean_object*); lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_termExists___x2c_____closed__4; @@ -208,6 +208,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_12692____closed__7; lean_object* l_Lean_bracketedExplicitBinders___closed__6; extern lean_object* l_prec_x28___x29___closed__8; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l_solve___closed__6; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_36____closed__8; lean_object* l_Lean_explicitBinders___closed__5; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__28; @@ -222,11 +223,8 @@ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248____closed__3; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__15; lean_object* l_Lean_unifConstraintElem___closed__2; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__14; -lean_object* l_tacticSolve_x7c___x7c___closed__5; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__7; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2; lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_tacticSolve_x7c___x7c___closed__4; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__18; lean_object* l_Lean_unifConstraint___closed__4; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__16; @@ -238,7 +236,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__14; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__10; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__32; lean_object* l_termExists___x2c_____closed__6; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__20; lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__20; @@ -253,7 +250,6 @@ lean_object* l___private_Init_Meta_0__Lean_quoteName(lean_object*); lean_object* l_term_u03a3_x27___x2c_____closed__4; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__22; lean_object* l_Lean_bracketedExplicitBinders___closed__2; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__6; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__3; @@ -267,16 +263,16 @@ lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__7; uint8_t l_Array_anyMUnsafe_any___at_Lean_expandExplicitBinders___spec__1(lean_object*, lean_object*, size_t, size_t); extern lean_object* l_Lean_instInhabitedSyntax; lean_object* l_Lean_unifConstraintElem___closed__5; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7460____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); -lean_object* l_tacticSolve_x7c___x7c___closed__7; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__19; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7460____closed__1; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__25; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_36____closed__3; lean_object* l_term_u2203___x2c_____closed__5; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__9; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__10; extern lean_object* l_term___xd7_____closed__5; -extern lean_object* l_Lean_Parser_Tactic_first___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__13; extern lean_object* l_termDepIfThenElse___closed__14; extern lean_object* l_termDepIfThenElse___closed__9; @@ -290,7 +286,6 @@ lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__34; extern lean_object* l_term_x7b_x7d___closed__5; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__13; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248____closed__5; lean_object* l_tacticFunext____; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__15; @@ -301,13 +296,13 @@ extern lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__29; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__5; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7451____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unexpandPSigma___closed__1; lean_object* l_unexpandPSigma(lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2580____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_36____closed__7; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2580____closed__1; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7460____lambda__1(lean_object*); lean_object* l_unexpandSigma___closed__1; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248____closed__6; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); @@ -323,11 +318,9 @@ lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__6 lean_object* l_term___xd7____1___closed__5; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Macro_throwError___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_36____closed__11; -lean_object* l_tacticSolve_x7c___x7c___closed__2; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_4972____closed__3; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__22; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2580____closed__2; @@ -342,6 +335,7 @@ lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__18; lean_object* l_Lean_expandExplicitBindersAux_loop_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_term___xd7_x27_____closed__6; +extern lean_object* l_Lean_Parser_Tactic_first___closed__14; extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__4; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____lambda__1___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -349,7 +343,6 @@ lean_object* l_tacticFunext_______closed__4; extern lean_object* l_term___x3d_____closed__2; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248____lambda__1(lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__30; -extern lean_object* l_Lean_Parser_Tactic_first___closed__5; lean_object* l_term_u03a3_x27___x2c_____closed__1; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__15; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____lambda__1(lean_object*, lean_object*); @@ -357,8 +350,8 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__3___closed__2; lean_object* l_term_u03a3_x27___x2c_____closed__2; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7460____spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__6; lean_object* l_Lean_MacroScopesView_review(lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__21; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__3; @@ -372,9 +365,9 @@ lean_object* l_term_u03a3___x2c_____closed__7; extern lean_object* l_Lean_Parser_Tactic_simp___closed__5; lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__4; extern lean_object* l_Lean_Parser_Tactic_done___closed__1; +lean_object* l_solve___closed__3; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__16; lean_object* l_Array_ofSubarray___rarg(lean_object*); -lean_object* l_tacticSolve_x7c___x7c; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__33; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2313_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_4972_(lean_object*, lean_object*, lean_object*); @@ -385,9 +378,10 @@ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2580_(lean_object*, lean_ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2744_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2665_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7460_(lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9; lean_object* l_term___xd7_x27__; +lean_object* l_solve___closed__5; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_term_u2203___x2c_____closed__3; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__2; @@ -396,7 +390,7 @@ lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___h uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_term___xd7____1___closed__2; lean_object* l_Lean_expandBrackedBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_tacticSolve_x7c___x7c___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__4; lean_object* l_term___xd7_x27_____closed__5; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_36____closed__10; @@ -409,6 +403,7 @@ lean_object* l_Lean_expandExplicitBindersAux_loop_match__2___rarg___boxed(lean_o extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__1; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__9; lean_object* l_unexpandExists___closed__1; +extern lean_object* l_Lean_Parser_Tactic_first___closed__6; lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2402____boxed(lean_object*, lean_object*, lean_object*); @@ -417,6 +412,7 @@ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711__match__1(lean_objec lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__35; lean_object* l_termExists___x2c__; extern lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__7; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__12; lean_object* l_Lean_expandExplicitBindersAux_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__27; @@ -426,6 +422,7 @@ lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__17; extern lean_object* l_Lean_Parser_Tactic_intro___closed__2; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5711____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; extern lean_object* l_prec_x28___x29___closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__4; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2665____boxed(lean_object*, lean_object*, lean_object*); @@ -439,10 +436,10 @@ lean_object* l_term___xd7____1___closed__1; lean_object* l_Lean_unifConstraint; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__6; extern lean_object* l_Lean_mkOptionalNode___closed__2; +lean_object* l_solve___closed__4; lean_object* l_Lean_expandExplicitBindersAux_loop___closed__2; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__36; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____lambda__2(lean_object*); -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__27; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248__match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_unbracktedExplicitBinders___closed__1; @@ -461,12 +458,12 @@ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__2; lean_object* l_commandClassAbbrev_______x3a_x3d_____x2c___closed__14; lean_object* l_term_u2203___x2c_____closed__4; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__12; lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__7; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__21; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__17; extern lean_object* l_term___xd7_____closed__4; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___closed__1; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2491____closed__1; uint8_t l_Lean_Syntax_matchesIdent(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_4972____closed__2; @@ -483,7 +480,6 @@ lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__23; lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__2; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__17; lean_object* l_Lean_unbracktedExplicitBinders___closed__2; -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__9; lean_object* l_term___xd7_x27_____closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__11; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__4; @@ -2079,7 +2075,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__9; +x_2 = l_Lean_Parser_Tactic_first___closed__9; x_3 = l_Lean_unifConstraint; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); @@ -2342,7 +2338,7 @@ static lean_object* _init_l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_1 = l_Lean_Parser_Tactic_first___closed__6; x_2 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__19; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -6512,7 +6508,7 @@ x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_41); lean_ctor_set(x_59, 1, x_58); x_60 = lean_array_push(x_20, x_59); -x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -6606,7 +6602,7 @@ x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_90); lean_ctor_set(x_108, 1, x_107); x_109 = lean_array_push(x_69, x_108); -x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_110); lean_ctor_set(x_111, 1, x_109); @@ -6683,7 +6679,7 @@ x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_141); lean_ctor_set(x_147, 1, x_146); x_148 = lean_array_push(x_120, x_147); -x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_149); lean_ctor_set(x_150, 1, x_148); @@ -6756,7 +6752,7 @@ x_184 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_184, 0, x_178); lean_ctor_set(x_184, 1, x_183); x_185 = lean_array_push(x_157, x_184); -x_186 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_186 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_187 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_187, 0, x_186); lean_ctor_set(x_187, 1, x_185); @@ -7598,7 +7594,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_Lean_Parser_Tactic_firstNew___closed__9; +x_2 = l_Lean_Parser_Tactic_first___closed__9; x_3 = l_termDepIfThenElse___closed__14; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); @@ -7671,7 +7667,7 @@ static lean_object* _init_l_commandClassAbbrev_______x3a_x3d_____x2c___closed__1 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_1 = l_Lean_Parser_Tactic_first___closed__6; x_2 = l_commandClassAbbrev_______x3a_x3d_____x2c___closed__17; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9975,10 +9971,10 @@ x_49 = lean_ctor_get(x_2, 2); lean_inc(x_49); x_50 = lean_ctor_get(x_2, 1); lean_inc(x_50); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3; x_52 = l_Lean_addMacroScope(x_50, x_51, x_49); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2; -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5; x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_47); lean_ctor_set(x_55, 1, x_53); @@ -10423,10 +10419,10 @@ x_285 = lean_ctor_get(x_2, 2); lean_inc(x_285); x_286 = lean_ctor_get(x_2, 1); lean_inc(x_286); -x_287 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__3; +x_287 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__3; x_288 = l_Lean_addMacroScope(x_286, x_287, x_285); -x_289 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__2; -x_290 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18936____closed__5; +x_289 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__2; +x_290 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18910____closed__5; x_291 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_291, 0, x_283); lean_ctor_set(x_291, 1, x_289); @@ -10806,25 +10802,25 @@ lean_dec(x_2); return x_3; } } -static lean_object* _init_l_tacticSolve_x7c___x7c___closed__1() { +static lean_object* _init_l_solve___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("tacticSolve|_|"); +x_1 = lean_mk_string("solve"); return x_1; } } -static lean_object* _init_l_tacticSolve_x7c___x7c___closed__2() { +static lean_object* _init_l_solve___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_tacticSolve_x7c___x7c___closed__1; +x_2 = l_solve___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_tacticSolve_x7c___x7c___closed__3() { +static lean_object* _init_l_solve___closed__3() { _start: { lean_object* x_1; @@ -10832,11 +10828,11 @@ x_1 = lean_mk_string("solve "); return x_1; } } -static lean_object* _init_l_tacticSolve_x7c___x7c___closed__4() { +static lean_object* _init_l_solve___closed__4() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_tacticSolve_x7c___x7c___closed__3; +x_1 = l_solve___closed__3; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -10844,13 +10840,13 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l_tacticSolve_x7c___x7c___closed__5() { +static lean_object* _init_l_solve___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_tacticSolve_x7c___x7c___closed__4; -x_3 = l_Lean_Parser_Tactic_first___closed__5; +x_2 = l_solve___closed__4; +x_3 = l_Lean_Parser_Tactic_first___closed__14; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10858,27 +10854,13 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_tacticSolve_x7c___x7c___closed__6() { +static lean_object* _init_l_solve___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; -x_2 = l_tacticSolve_x7c___x7c___closed__5; -x_3 = l_Lean_Parser_Tactic_first___closed__7; -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l_tacticSolve_x7c___x7c___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_tacticSolve_x7c___x7c___closed__2; +x_1 = l_solve___closed__2; x_2 = lean_unsigned_to_nat(1022u); -x_3 = l_tacticSolve_x7c___x7c___closed__6; +x_3 = l_solve___closed__5; x_4 = lean_alloc_ctor(3, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10886,23 +10868,22 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_tacticSolve_x7c___x7c() { +static lean_object* _init_l_solve() { _start: { lean_object* x_1; -x_1 = l_tacticSolve_x7c___x7c___closed__7; +x_1 = l_solve___closed__6; return x_1; } } -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7451____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, size_t x_9, size_t x_10, lean_object* x_11) { +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7460____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t x_9, lean_object* x_10) { _start: { -uint8_t x_12; -x_12 = x_10 < x_9; -if (x_12 == 0) +uint8_t x_11; +x_11 = x_9 < x_8; +if (x_11 == 0) { -lean_object* x_13; -lean_dec(x_8); +lean_object* x_12; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -10910,286 +10891,181 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_13 = x_11; -return x_13; +x_12 = x_10; +return x_12; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; 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; size_t x_52; size_t x_53; lean_object* x_54; lean_object* x_55; -x_14 = lean_array_uget(x_11, x_10); -x_15 = lean_unsigned_to_nat(0u); -x_16 = lean_array_uset(x_11, x_10, x_15); -x_17 = x_14; -x_18 = l_myMacro____x40_Init_Notation___hyg_14734____closed__7; -lean_inc(x_2); -x_19 = lean_name_mk_string(x_2, x_18); -x_20 = l_prec_x28___x29___closed__3; +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; size_t x_57; size_t x_58; lean_object* x_59; lean_object* x_60; +x_13 = lean_array_uget(x_10, x_9); +x_14 = lean_unsigned_to_nat(0u); +x_15 = lean_array_uset(x_10, x_9, x_14); +x_16 = x_13; +x_17 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; lean_inc(x_1); -x_21 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_20); +x_18 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); lean_inc(x_3); -x_22 = lean_array_push(x_3, x_21); +x_19 = lean_array_push(x_3, x_18); +x_20 = l_myMacro____x40_Init_Notation___hyg_14734____closed__7; +lean_inc(x_2); +x_21 = lean_name_mk_string(x_2, x_20); +x_22 = l_prec_x28___x29___closed__3; +lean_inc(x_1); +x_23 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_22); lean_inc(x_3); -x_23 = lean_array_push(x_3, x_17); +x_24 = lean_array_push(x_3, x_23); +lean_inc(x_3); +x_25 = lean_array_push(x_3, x_16); lean_inc(x_4); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_4); -lean_ctor_set(x_24, 1, x_23); -x_25 = lean_array_push(x_22, x_24); -x_26 = l_prec_x28___x29___closed__7; +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_4); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_array_push(x_24, x_26); +x_28 = l_prec_x28___x29___closed__7; lean_inc(x_1); -x_27 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_27, 0, x_1); -lean_ctor_set(x_27, 1, x_26); -x_28 = lean_array_push(x_25, x_27); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_19); +x_29 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_29, 0, x_1); lean_ctor_set(x_29, 1, x_28); +x_30 = lean_array_push(x_27, x_29); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_21); +lean_ctor_set(x_31, 1, x_30); lean_inc(x_3); -x_30 = lean_array_push(x_3, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_16821____closed__12; +x_32 = lean_array_push(x_3, x_31); +x_33 = l_myMacro____x40_Init_Notation___hyg_16821____closed__12; lean_inc(x_1); -x_32 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_32, 0, x_1); -lean_ctor_set(x_32, 1, x_31); -lean_inc(x_3); -x_33 = lean_array_push(x_3, x_32); -lean_inc(x_6); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_6); +x_34 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_34, 0, x_1); lean_ctor_set(x_34, 1, x_33); -x_35 = lean_array_push(x_30, x_34); -lean_inc(x_7); +lean_inc(x_3); +x_35 = lean_array_push(x_3, x_34); +lean_inc(x_6); x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_7); +lean_ctor_set(x_36, 0, x_6); lean_ctor_set(x_36, 1, x_35); +x_37 = lean_array_push(x_32, x_36); +lean_inc(x_7); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_7); +lean_ctor_set(x_38, 1, x_37); lean_inc(x_3); -x_37 = lean_array_push(x_3, x_36); -x_38 = l_Lean_Parser_Tactic_done___closed__1; +x_39 = lean_array_push(x_3, x_38); +x_40 = l_Lean_Parser_Tactic_done___closed__1; lean_inc(x_2); -x_39 = lean_name_mk_string(x_2, x_38); +x_41 = lean_name_mk_string(x_2, x_40); lean_inc(x_1); -x_40 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_40, 0, x_1); -lean_ctor_set(x_40, 1, x_38); -lean_inc(x_3); -x_41 = lean_array_push(x_3, x_40); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_39); -lean_ctor_set(x_42, 1, x_41); +x_42 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_42, 0, x_1); +lean_ctor_set(x_42, 1, x_40); lean_inc(x_3); x_43 = lean_array_push(x_3, x_42); -lean_inc(x_8); -x_44 = lean_array_push(x_43, x_8); -lean_inc(x_7); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_7); -lean_ctor_set(x_45, 1, x_44); -x_46 = lean_array_push(x_37, x_45); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_41); +lean_ctor_set(x_44, 1, x_43); +lean_inc(x_3); +x_45 = lean_array_push(x_3, x_44); +lean_inc(x_3); lean_inc(x_6); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_6); -lean_ctor_set(x_47, 1, x_46); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_3); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_7); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_7); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_array_push(x_39, x_48); +lean_inc(x_6); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_6); +lean_ctor_set(x_50, 1, x_49); lean_inc(x_3); -x_48 = lean_array_push(x_3, x_47); +x_51 = lean_array_push(x_3, x_50); lean_inc(x_5); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_5); -lean_ctor_set(x_49, 1, x_48); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_5); +lean_ctor_set(x_52, 1, x_51); lean_inc(x_3); -x_50 = lean_array_push(x_3, x_49); +x_53 = lean_array_push(x_3, x_52); lean_inc(x_4); -x_51 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_51, 0, x_4); -lean_ctor_set(x_51, 1, x_50); -x_52 = 1; -x_53 = x_10 + x_52; -x_54 = x_51; -x_55 = lean_array_uset(x_16, x_10, x_54); -x_10 = x_53; -x_11 = x_55; +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_4); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_array_push(x_19, x_54); +lean_inc(x_7); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_7); +lean_ctor_set(x_56, 1, x_55); +x_57 = 1; +x_58 = x_9 + x_57; +x_59 = x_56; +x_60 = lean_array_uset(x_15, x_9, x_59); +x_9 = x_58; +x_10 = x_60; goto _start; } } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___closed__1() { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7460____lambda__1(lean_object* x_1) { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(2); -x_2 = l_myMacro____x40_Init_Notation___hyg_15342____closed__11; -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* l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: +lean_object* x_2; uint8_t x_3; +x_2 = l_Lean_groupKind___closed__2; +lean_inc(x_1); +x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); +if (x_3 == 0) { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_5 = lean_unsigned_to_nat(2u); -x_6 = l_Lean_Syntax_getArg(x_1, x_5); -x_7 = l_Lean_Syntax_getArgs(x_6); -lean_dec(x_6); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(x_3, x_4); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -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; size_t x_22; size_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_10 = lean_ctor_get(x_8, 0); -x_11 = l_Lean_Parser_Tactic_focus___closed__1; -lean_inc(x_10); -x_12 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_12, 0, x_10); -lean_ctor_set(x_12, 1, x_11); -x_13 = l_Array_empty___closed__1; -x_14 = lean_array_push(x_13, x_12); -x_15 = l_Lean_Parser_Tactic_first___closed__1; -lean_inc(x_10); -x_16 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_16, 0, x_10); -lean_ctor_set(x_16, 1, x_15); -x_17 = lean_array_push(x_13, x_16); -x_18 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_19 = lean_array_push(x_17, x_18); -x_20 = l_Lean_Syntax_SepArray_getElems___rarg(x_7); -lean_dec(x_7); -x_21 = lean_array_get_size(x_20); -x_22 = lean_usize_of_nat(x_21); -lean_dec(x_21); -x_23 = 0; -x_24 = x_20; -x_25 = l_Lean_Parser_Tactic_intro___closed__2; -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; -x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; -x_28 = l_Lean_nullKind___closed__2; -x_29 = l_Lean_groupKind___closed__2; -x_30 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7451____spec__1(x_10, x_25, x_13, x_26, x_27, x_28, x_29, x_18, x_22, x_23, x_24); -x_31 = x_30; -x_32 = l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___closed__1; -x_33 = l_Lean_mkSepArray(x_31, x_32); -lean_dec(x_31); -x_34 = l_Array_appendCore___rarg(x_13, x_33); -lean_dec(x_33); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_28); -lean_ctor_set(x_35, 1, x_34); -x_36 = lean_array_push(x_19, x_35); -x_37 = l_Lean_Parser_Tactic_first___closed__2; -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_36); -x_39 = lean_array_push(x_13, x_38); -x_40 = lean_array_push(x_39, x_18); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_29); -lean_ctor_set(x_41, 1, x_40); -x_42 = lean_array_push(x_13, x_41); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_28); -lean_ctor_set(x_43, 1, x_42); -x_44 = lean_array_push(x_13, x_43); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_27); -lean_ctor_set(x_45, 1, x_44); -x_46 = lean_array_push(x_13, x_45); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_26); -lean_ctor_set(x_47, 1, x_46); -x_48 = lean_array_push(x_14, x_47); -x_49 = l_Lean_Parser_Tactic_focus___closed__2; -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_48); -lean_ctor_set(x_8, 0, x_50); -return x_8; +lean_object* x_4; +lean_dec(x_1); +x_4 = lean_box(0); +return x_4; } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; size_t x_64; size_t 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; -x_51 = lean_ctor_get(x_8, 0); -x_52 = lean_ctor_get(x_8, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_8); -x_53 = l_Lean_Parser_Tactic_focus___closed__1; -lean_inc(x_51); -x_54 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_53); -x_55 = l_Array_empty___closed__1; -x_56 = lean_array_push(x_55, x_54); -x_57 = l_Lean_Parser_Tactic_first___closed__1; -lean_inc(x_51); -x_58 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_58, 0, x_51); -lean_ctor_set(x_58, 1, x_57); -x_59 = lean_array_push(x_55, x_58); -x_60 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_61 = lean_array_push(x_59, x_60); -x_62 = l_Lean_Syntax_SepArray_getElems___rarg(x_7); -lean_dec(x_7); -x_63 = lean_array_get_size(x_62); -x_64 = lean_usize_of_nat(x_63); -lean_dec(x_63); -x_65 = 0; -x_66 = x_62; -x_67 = l_Lean_Parser_Tactic_intro___closed__2; -x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; -x_69 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; -x_70 = l_Lean_nullKind___closed__2; -x_71 = l_Lean_groupKind___closed__2; -x_72 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7451____spec__1(x_51, x_67, x_55, x_68, x_69, x_70, x_71, x_60, x_64, x_65, x_66); -x_73 = x_72; -x_74 = l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___closed__1; -x_75 = l_Lean_mkSepArray(x_73, x_74); -lean_dec(x_73); -x_76 = l_Array_appendCore___rarg(x_55, x_75); -lean_dec(x_75); -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_70); -lean_ctor_set(x_77, 1, x_76); -x_78 = lean_array_push(x_61, x_77); -x_79 = l_Lean_Parser_Tactic_first___closed__2; -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_79); -lean_ctor_set(x_80, 1, x_78); -x_81 = lean_array_push(x_55, x_80); -x_82 = lean_array_push(x_81, x_60); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_71); -lean_ctor_set(x_83, 1, x_82); -x_84 = lean_array_push(x_55, x_83); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_70); -lean_ctor_set(x_85, 1, x_84); -x_86 = lean_array_push(x_55, x_85); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_69); -lean_ctor_set(x_87, 1, x_86); -x_88 = lean_array_push(x_55, x_87); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_68); -lean_ctor_set(x_89, 1, x_88); -x_90 = lean_array_push(x_56, x_89); -x_91 = l_Lean_Parser_Tactic_focus___closed__2; -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_90); -x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_52); -return x_93; +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_unsigned_to_nat(1u); +x_6 = l_Lean_Syntax_getArg(x_1, x_5); +lean_dec(x_1); +x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; +lean_inc(x_6); +x_8 = l_Lean_Syntax_isOfKind(x_6, x_7); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_6); +x_9 = lean_box(0); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Lean_Syntax_getArg(x_6, x_10); +lean_dec(x_6); +x_12 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_12, 0, x_11); +return x_12; } } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7460____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_7460____lambda__1), 1, 0); +return x_1; +} +} +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7460_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_tacticSolve_x7c___x7c___closed__2; +x_4 = l_solve___closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -11204,19 +11080,18 @@ return x_7; } else { -lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_Lean_Syntax_isNone(x_9); -if (x_10 == 0) -{ -lean_object* x_11; uint8_t x_12; -x_11 = l_Lean_nullKind; -x_12 = l_Lean_Syntax_isNodeOf(x_9, x_11, x_8); -if (x_12 == 0) +lean_dec(x_1); +x_10 = l_Lean_Syntax_getArgs(x_9); +lean_dec(x_9); +x_11 = l_myMacro____x40_Init_NotationExtra___hyg_7460____closed__1; +x_12 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__1(x_10, x_11); +lean_dec(x_10); +if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; -lean_dec(x_1); x_13 = lean_box(1); x_14 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_14, 0, x_13); @@ -11225,53 +11100,169 @@ return x_14; } else { -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1(x_1, x_15, x_2, x_3); -lean_dec(x_1); +lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_15 = lean_ctor_get(x_12, 0); +lean_inc(x_15); +lean_dec(x_12); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(x_2, x_3); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; size_t x_27; size_t 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; +x_18 = lean_ctor_get(x_16, 0); +x_19 = l_Lean_Parser_Tactic_focus___closed__1; +lean_inc(x_18); +x_20 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Array_empty___closed__1; +x_22 = lean_array_push(x_21, x_20); +x_23 = l_Lean_Parser_Tactic_first___closed__1; +lean_inc(x_18); +x_24 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_24, 0, x_18); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_array_push(x_21, x_24); +x_26 = lean_array_get_size(x_15); +x_27 = lean_usize_of_nat(x_26); +lean_dec(x_26); +x_28 = 0; +x_29 = x_15; +x_30 = l_Lean_Parser_Tactic_intro___closed__2; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; +x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; +x_33 = l_Lean_nullKind___closed__2; +x_34 = l_Lean_groupKind___closed__2; +x_35 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7460____spec__1(x_18, x_30, x_21, x_31, x_32, x_33, x_34, x_27, x_28, x_29); +x_36 = x_35; +x_37 = l_Array_appendCore___rarg(x_21, x_36); +lean_dec(x_36); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_33); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_array_push(x_25, x_38); +x_40 = l_Lean_Parser_Tactic_first___closed__2; +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +x_42 = lean_array_push(x_21, x_41); +x_43 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_44 = lean_array_push(x_42, x_43); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_34); +lean_ctor_set(x_45, 1, x_44); +x_46 = lean_array_push(x_21, x_45); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_33); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_array_push(x_21, x_47); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_32); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_array_push(x_21, x_49); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_31); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_array_push(x_22, x_51); +x_53 = l_Lean_Parser_Tactic_focus___closed__2; +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_52); +lean_ctor_set(x_16, 0, x_54); return x_16; } -} else { -lean_object* x_17; lean_object* x_18; -lean_dec(x_9); -x_17 = lean_box(0); -x_18 = l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1(x_1, x_17, x_2, x_3); -lean_dec(x_1); -return x_18; +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; size_t x_65; size_t x_66; 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; +x_55 = lean_ctor_get(x_16, 0); +x_56 = lean_ctor_get(x_16, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_16); +x_57 = l_Lean_Parser_Tactic_focus___closed__1; +lean_inc(x_55); +x_58 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_57); +x_59 = l_Array_empty___closed__1; +x_60 = lean_array_push(x_59, x_58); +x_61 = l_Lean_Parser_Tactic_first___closed__1; +lean_inc(x_55); +x_62 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_62, 0, x_55); +lean_ctor_set(x_62, 1, x_61); +x_63 = lean_array_push(x_59, x_62); +x_64 = lean_array_get_size(x_15); +x_65 = lean_usize_of_nat(x_64); +lean_dec(x_64); +x_66 = 0; +x_67 = x_15; +x_68 = l_Lean_Parser_Tactic_intro___closed__2; +x_69 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; +x_70 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; +x_71 = l_Lean_nullKind___closed__2; +x_72 = l_Lean_groupKind___closed__2; +x_73 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7460____spec__1(x_55, x_68, x_59, x_69, x_70, x_71, x_72, x_65, x_66, x_67); +x_74 = x_73; +x_75 = l_Array_appendCore___rarg(x_59, x_74); +lean_dec(x_74); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_71); +lean_ctor_set(x_76, 1, x_75); +x_77 = lean_array_push(x_63, x_76); +x_78 = l_Lean_Parser_Tactic_first___closed__2; +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set(x_79, 1, x_77); +x_80 = lean_array_push(x_59, x_79); +x_81 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_82 = lean_array_push(x_80, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_72); +lean_ctor_set(x_83, 1, x_82); +x_84 = lean_array_push(x_59, x_83); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_71); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_59, x_85); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_70); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_59, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_69); +lean_ctor_set(x_89, 1, x_88); +x_90 = lean_array_push(x_60, x_89); +x_91 = l_Lean_Parser_Tactic_focus___closed__2; +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_91); +lean_ctor_set(x_92, 1, x_90); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_56); +return x_93; } } } } -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7451____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +} +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7460____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -size_t x_12; size_t x_13; lean_object* x_14; +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_8); +lean_dec(x_8); x_12 = lean_unbox_usize(x_9); lean_dec(x_9); -x_13 = lean_unbox_usize(x_10); -lean_dec(x_10); -x_14 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7451____spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12, x_13, x_11); -return x_14; +x_13 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7460____spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11, x_12, x_10); +return x_13; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1(x_1, x_2, x_3, x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_5; -} -} -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7451____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7460____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_myMacro____x40_Init_NotationExtra___hyg_7451_(x_1, x_2, x_3); +x_4 = l_myMacro____x40_Init_NotationExtra___hyg_7460_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -11827,24 +11818,22 @@ l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__27 = _init_l_myMacro__ lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__27); l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__28 = _init_l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__28(); lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__28); -l_tacticSolve_x7c___x7c___closed__1 = _init_l_tacticSolve_x7c___x7c___closed__1(); -lean_mark_persistent(l_tacticSolve_x7c___x7c___closed__1); -l_tacticSolve_x7c___x7c___closed__2 = _init_l_tacticSolve_x7c___x7c___closed__2(); -lean_mark_persistent(l_tacticSolve_x7c___x7c___closed__2); -l_tacticSolve_x7c___x7c___closed__3 = _init_l_tacticSolve_x7c___x7c___closed__3(); -lean_mark_persistent(l_tacticSolve_x7c___x7c___closed__3); -l_tacticSolve_x7c___x7c___closed__4 = _init_l_tacticSolve_x7c___x7c___closed__4(); -lean_mark_persistent(l_tacticSolve_x7c___x7c___closed__4); -l_tacticSolve_x7c___x7c___closed__5 = _init_l_tacticSolve_x7c___x7c___closed__5(); -lean_mark_persistent(l_tacticSolve_x7c___x7c___closed__5); -l_tacticSolve_x7c___x7c___closed__6 = _init_l_tacticSolve_x7c___x7c___closed__6(); -lean_mark_persistent(l_tacticSolve_x7c___x7c___closed__6); -l_tacticSolve_x7c___x7c___closed__7 = _init_l_tacticSolve_x7c___x7c___closed__7(); -lean_mark_persistent(l_tacticSolve_x7c___x7c___closed__7); -l_tacticSolve_x7c___x7c = _init_l_tacticSolve_x7c___x7c(); -lean_mark_persistent(l_tacticSolve_x7c___x7c); -l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7451____lambda__1___closed__1); +l_solve___closed__1 = _init_l_solve___closed__1(); +lean_mark_persistent(l_solve___closed__1); +l_solve___closed__2 = _init_l_solve___closed__2(); +lean_mark_persistent(l_solve___closed__2); +l_solve___closed__3 = _init_l_solve___closed__3(); +lean_mark_persistent(l_solve___closed__3); +l_solve___closed__4 = _init_l_solve___closed__4(); +lean_mark_persistent(l_solve___closed__4); +l_solve___closed__5 = _init_l_solve___closed__5(); +lean_mark_persistent(l_solve___closed__5); +l_solve___closed__6 = _init_l_solve___closed__6(); +lean_mark_persistent(l_solve___closed__6); +l_solve = _init_l_solve(); +lean_mark_persistent(l_solve); +l_myMacro____x40_Init_NotationExtra___hyg_7460____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7460____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7460____closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Compiler/ConstFolding.c b/stage0/stdlib/Lean/Compiler/ConstFolding.c index 696dd8dafe..cbd6b82cb3 100644 --- a/stage0/stdlib/Lean/Compiler/ConstFolding.c +++ b/stage0/stdlib/Lean/Compiler/ConstFolding.c @@ -246,7 +246,6 @@ lean_object* l_Nat_decLe___boxed(lean_object*, lean_object*); lean_object* l_Lean_Compiler_foldUIntAdd___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_uintBinFoldFns___closed__1; lean_object* l_Lean_Compiler_findBinFoldFn(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Lean_Compiler_numScalarTypes___closed__13; lean_object* l_Lean_Compiler_foldUIntAdd___closed__1; lean_object* l_Lean_Compiler_mkNatLt(lean_object*, lean_object*); @@ -265,6 +264,7 @@ lean_object* l_Lean_Compiler_toDecidableExpr_match__1___rarg(uint8_t, uint8_t, l lean_object* l_Lean_Compiler_mkNatLt___closed__6; lean_object* l_Lean_Compiler_NumScalarTypeInfo_toNatFn___default(lean_object*); lean_object* l_Lean_Compiler_foldNatAdd(uint8_t); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Compiler_natFoldFns___closed__24; lean_object* l_Lean_Compiler_foldStrictOr(uint8_t); lean_object* l_Lean_Compiler_mkNatLt___closed__4; @@ -3224,7 +3224,7 @@ if (x_25 == 0) { lean_object* x_26; uint8_t x_27; lean_dec(x_2); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_27 = lean_string_dec_eq(x_11, x_26); if (x_27 == 0) { @@ -3275,7 +3275,7 @@ if (x_38 == 0) { lean_object* x_39; uint8_t x_40; lean_dec(x_2); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_40 = lean_string_dec_eq(x_11, x_39); if (x_40 == 0) { @@ -3358,7 +3358,7 @@ if (x_58 == 0) { lean_object* x_59; uint8_t x_60; lean_dec(x_2); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_60 = lean_string_dec_eq(x_11, x_59); if (x_60 == 0) { @@ -3461,7 +3461,7 @@ if (x_83 == 0) { lean_object* x_84; uint8_t x_85; lean_dec(x_2); -x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_85 = lean_string_dec_eq(x_73, x_84); if (x_85 == 0) { @@ -3630,7 +3630,7 @@ x_11 = lean_string_dec_eq(x_5, x_10); if (x_11 == 0) { lean_object* x_12; uint8_t x_13; -x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_13 = lean_string_dec_eq(x_5, x_12); if (x_13 == 0) { diff --git a/stage0/stdlib/Lean/Data/Json/Parser.c b/stage0/stdlib/Lean/Data/Json/Parser.c index 4cc85f11fe..8b5504ed92 100644 --- a/stage0/stdlib/Lean/Data/Json/Parser.c +++ b/stage0/stdlib/Lean/Data/Json/Parser.c @@ -114,7 +114,6 @@ lean_object* l_Lean_Json_Parser_escapedChar___boxed__const__3; lean_object* l_Lean_Json_Parser_lookahead___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_num___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_num___lambda__3___closed__1___boxed__const__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; uint32_t l_String_Iterator_curr(lean_object*); lean_object* l_Lean_Quickparse_instMonadQuickparse___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_num___lambda__3___closed__1; @@ -125,6 +124,7 @@ lean_object* l_Lean_Quickparse_instMonadQuickparse___closed__9; lean_object* l_Lean_Quickparse_peek_x3f(lean_object*); lean_object* l_Lean_Json_parse___closed__1; lean_object* l_Lean_Json_Parser_lookahead(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Json_Parser_hexChar(lean_object*); lean_object* l_Lean_Quickparse_instMonadQuickparse___closed__4; lean_object* l_Lean_Json_Parser_objectCore___closed__3; @@ -4793,7 +4793,7 @@ return x_87; else { lean_object* x_88; lean_object* x_89; -x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_89 = l_Lean_Quickparse_expect(x_88, x_1); if (lean_obj_tag(x_89) == 0) { diff --git a/stage0/stdlib/Lean/Data/Json/Printer.c b/stage0/stdlib/Lean/Data/Json/Printer.c index e25a54649a..501de64887 100644 --- a/stage0/stdlib/Lean/Data/Json/Printer.c +++ b/stage0/stdlib/Lean/Data/Json/Printer.c @@ -68,10 +68,10 @@ lean_object* l_Lean_Json_render___closed__3; uint8_t l_UInt32_decEq(uint32_t, uint32_t); lean_object* l_String_intercalate(lean_object*, lean_object*); extern lean_object* l_Id_instMonadId; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_String_foldlAux_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_render_match__1(lean_object*); lean_object* l_Lean_Json_instToFormatJson; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Json_render___closed__4; lean_object* l_Lean_Json_instToStringJson(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9; @@ -746,7 +746,7 @@ lean_dec(x_1); if (x_3 == 0) { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; return x_4; } else diff --git a/stage0/stdlib/Lean/Data/KVMap.c b/stage0/stdlib/Lean/Data/KVMap.c index 1c10a6ba15..22fddbf1ea 100644 --- a/stage0/stdlib/Lean/Data/KVMap.c +++ b/stage0/stdlib/Lean/Data/KVMap.c @@ -147,7 +147,6 @@ lean_object* l_Lean_KVMap_instValueNat___closed__1; lean_object* l_Lean_KVMap_instValueNat___closed__2; lean_object* l_Lean_DataValue_str_match__1(lean_object*); uint8_t l___private_Lean_Data_KVMap_0__Lean_beqDataValue____x40_Lean_Data_KVMap___hyg_17_(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Lean_KVMap_get(lean_object*); lean_object* l_Lean_KVMap_empty; lean_object* l_Lean_KVMap_instValueString; @@ -159,6 +158,7 @@ uint8_t lean_int_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_KVMap_getBool_match__1(lean_object*); extern lean_object* l_Int_instInhabitedInt___closed__1; lean_object* l___private_Lean_Data_KVMap_0__Lean_beqDataValue____x40_Lean_Data_KVMap___hyg_17__match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* lean_nat_abs(lean_object*); lean_object* l_Lean_KVMap_subset_match__1(lean_object*); lean_object* l_Lean_KVMap_instValueName___lambda__1(lean_object*); @@ -774,7 +774,7 @@ lean_dec(x_1); if (x_3 == 0) { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; return x_4; } else diff --git a/stage0/stdlib/Lean/Data/LBool.c b/stage0/stdlib/Lean/Data/LBool.c index f66689d18a..088ceb9eea 100644 --- a/stage0/stdlib/Lean/Data/LBool.c +++ b/stage0/stdlib/Lean/Data/LBool.c @@ -37,11 +37,11 @@ lean_object* l_Lean_LBool_and_match__1___rarg(uint8_t, uint8_t, lean_object*, le uint8_t l_Lean_instInhabitedLBool; lean_object* l_Lean_instBEqLBool___closed__1; lean_object* l_toLBoolM___rarg___lambda__1___boxed(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Lean_instBEqLBool; lean_object* l_Bool_toLBool_match__1(lean_object*); uint8_t l_Lean_LBool_neg(uint8_t); uint8_t l_Bool_toLBool(uint8_t); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_LBool_toString___closed__1; lean_object* l_Lean_LBool_and_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Data_LBool_0__Lean_beqLBool____x40_Lean_Data_LBool___hyg_11____boxed(lean_object*, lean_object*); @@ -424,7 +424,7 @@ switch (x_1) { case 0: { lean_object* x_2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; return x_2; } case 1: diff --git a/stage0/stdlib/Lean/Data/Options.c b/stage0/stdlib/Lean/Data/Options.c index 4d93832651..b1a4a85262 100644 --- a/stage0/stdlib/Lean/Data/Options.c +++ b/stage0/stdlib/Lean/Data/Options.c @@ -121,7 +121,6 @@ lean_object* l_Lean_Option_register___rarg(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_894____closed__13; lean_object* l_Std_RBNode_find___at_Lean_getOptionDecl___spec__1(lean_object*, lean_object*); lean_object* l_Lean_setOptionFromString(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Lean_setOptionFromString___closed__6; lean_object* l_Lean_registerOption___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_setOptionFromString___closed__1; @@ -132,6 +131,7 @@ lean_object* l_Lean_getBoolOption___rarg___lambda__1(lean_object*, lean_object*, lean_object* l_Lean_getNatOption___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_instInhabitedOption(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); @@ -1079,7 +1079,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Declaration.c b/stage0/stdlib/Lean/Declaration.c index d1941cba6d..342d66f969 100644 --- a/stage0/stdlib/Lean/Declaration.c +++ b/stage0/stdlib/Lean/Declaration.c @@ -43,7 +43,6 @@ lean_object* lean_mk_inductive_decl(lean_object*, lean_object*, lean_object*, ui lean_object* l_List_foldlM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConstructorValEx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instInhabitedConstantVal___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l_Lean_instInhabitedAxiomVal___closed__1; lean_object* l_Lean_ConstantInfo_value_x3f___boxed(lean_object*); lean_object* l___private_Lean_Declaration_0__Lean_reprDefinitionSafety____x40_Lean_Declaration___hyg_204____closed__6; @@ -185,6 +184,7 @@ lean_object* l_Lean_ReducibilityHints_lt_match__1(lean_object*); lean_object* l_List_foldlM___at_Lean_Declaration_forExprM___spec__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_value_x21___closed__3; lean_object* l_Lean_Declaration_foldExprM___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_object* l_Lean_instInhabitedInductiveVal; lean_object* l_Lean_ConstantInfo_isCtor_match__1(lean_object*); lean_object* l_Lean_ConstantInfo_value_x21(lean_object*); @@ -3491,7 +3491,7 @@ lean_object* l_Lean_mkRecName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index cda26e4dd4..acd49e5783 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -78,6 +78,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_expandArgs___spec__3_ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_Format_defWidth; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__3; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f_match__1(lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -91,12 +92,12 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_Lean_Elab_Term_NamedArg_ref___default; lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instInhabitedTermElabResult___rarg(lean_object*); lean_object* l_Lean_Elab_Term_withoutPostponingUniverseConstraints___at_Lean_Elab_Term_elabPipeProj___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAutoParamTactic_x3f(lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__3; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isCoeDecl___closed__37; lean_object* l_Lean_Elab_Term_throwInvalidNamedArg___rarg___closed__2; @@ -154,7 +155,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg_match__3___r lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2; lean_object* l_Lean_Expr_getOptParamDefault_x3f(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; uint8_t l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody___lambda__1(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_propagateExpectedTypeFor_match__1___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_List_foldr___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__1(lean_object*, uint8_t, lean_object*); @@ -261,6 +261,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_elabExplicit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2; extern lean_object* l_Lean_choiceKind___closed__2; uint8_t l_Lean_Elab_Term_ElabAppArgs_State_ellipsis___default; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__2___closed__1; @@ -312,7 +313,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId___boxed(lea lean_object* l_Lean_Elab_Term_elabAppArgs(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__1___closed__4; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___closed__11; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv___closed__1; @@ -366,7 +366,6 @@ lean_object* lean_expr_dbg_to_string(lean_object*); lean_object* l_Lean_Elab_Term_elabApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedExpr; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l_Lean_getPathToBaseStructure_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeAppInstMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_localDeclDependsOn(lean_object*, lean_object*, lean_object*); @@ -605,6 +604,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__1___closed__2; lean_object* l_Lean_Elab_Term_elabAppArgs___closed__1; lean_object* l_Lean_Elab_Term_withoutPostponingUniverseConstraints___at_Lean_Elab_Term_elabApp___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__8; extern lean_object* l_prec_x28___x29___closed__3; lean_object* l_Lean_Elab_Term_elabAppArgs___closed__2; @@ -4883,12 +4883,12 @@ x_5 = lean_name_eq(x_3, x_4); if (x_5 == 0) { lean_object* x_6; uint8_t x_7; -x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_7 = lean_name_eq(x_3, x_6); if (x_7 == 0) { lean_object* x_8; uint8_t x_9; -x_8 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_8 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_9 = lean_name_eq(x_3, x_8); lean_dec(x_3); if (x_9 == 0) @@ -8255,19 +8255,19 @@ x_72 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_71); x_73 = lean_ctor_get(x_72, 1); lean_inc(x_73); lean_dec(x_72); -x_74 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_74 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_75 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_75, 0, x_68); lean_ctor_set(x_75, 1, x_74); x_76 = l_Array_empty___closed__1; x_77 = lean_array_push(x_76, x_75); x_78 = lean_array_push(x_76, x_66); -x_79 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_79 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); x_81 = lean_array_push(x_77, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_82 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_81); diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 5dbf51dafe..028b13deae 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -23,6 +23,7 @@ lean_object* l_Lean_Meta_getResetPostponed(lean_object*, lean_object*, lean_obje extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__13; lean_object* l_List_forM___at_Lean_Elab_Term_Quotation_precheck___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_evalExpr___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__6; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getMatchAltsNumPatterns(lean_object*); @@ -81,6 +82,7 @@ lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Binders lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -154,7 +156,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandFun___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__3(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__1___rarg(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___lambda__1___closed__6; lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__3; lean_object* lean_string_utf8_byte_size(lean_object*); @@ -227,6 +228,7 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__14; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__7; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__28; @@ -374,7 +376,6 @@ lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg(lea lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews_match__1(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; lean_object* l_Lean_Elab_Term_checkBinderAnnotations; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_State_expectedType_x3f___default; @@ -480,6 +481,7 @@ lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__17; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_prec_x28___x29___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__10; extern lean_object* l_Lean_mkOptionalNode___closed__2; @@ -514,7 +516,6 @@ extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1; lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_State_fvars___default; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__7; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl(lean_object*); lean_object* l_Lean_Meta_setPostponed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); @@ -526,7 +527,6 @@ lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getMatchAltsNumPatterns___boxed(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__11; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagateExpectedType_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_precheckFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -18812,7 +18812,7 @@ lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); x_22 = l_Array_empty___closed__1; x_23 = lean_array_push(x_22, x_21); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_inc(x_19); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_19); @@ -18833,7 +18833,7 @@ x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_22, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -18848,7 +18848,7 @@ lean_ctor_set(x_42, 0, x_33); lean_ctor_set(x_42, 1, x_41); x_43 = lean_array_push(x_38, x_42); x_44 = lean_array_push(x_43, x_2); -x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -18870,7 +18870,7 @@ lean_ctor_set(x_50, 0, x_47); lean_ctor_set(x_50, 1, x_49); x_51 = l_Array_empty___closed__1; x_52 = lean_array_push(x_51, x_50); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_inc(x_47); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_47); @@ -18891,7 +18891,7 @@ x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_62); lean_ctor_set(x_63, 1, x_61); x_64 = lean_array_push(x_51, x_63); -x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); @@ -18906,7 +18906,7 @@ lean_ctor_set(x_71, 0, x_62); lean_ctor_set(x_71, 1, x_70); x_72 = lean_array_push(x_67, x_71); x_73 = lean_array_push(x_72, x_2); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); @@ -19320,7 +19320,7 @@ x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_94); lean_ctor_set(x_104, 1, x_103); x_105 = lean_array_push(x_30, x_104); -x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); @@ -19362,7 +19362,7 @@ x_124 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_124, 0, x_114); lean_ctor_set(x_124, 1, x_123); x_125 = lean_array_push(x_30, x_124); -x_126 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_126 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_127 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_127, 0, x_126); lean_ctor_set(x_127, 1, x_125); @@ -19549,7 +19549,7 @@ x_202 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_202, 0, x_192); lean_ctor_set(x_202, 1, x_201); x_203 = lean_array_push(x_148, x_202); -x_204 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_204 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_205 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_205, 0, x_204); lean_ctor_set(x_205, 1, x_203); @@ -19764,7 +19764,7 @@ x_285 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_285, 0, x_275); lean_ctor_set(x_285, 1, x_284); x_286 = lean_array_push(x_231, x_285); -x_287 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_287 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_288 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_288, 0, x_287); lean_ctor_set(x_288, 1, x_286); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index 04035e9bb4..a9c0712097 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -26,7 +26,6 @@ size_t l_USize_add(size_t, size_t); extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__4; lean_object* l_List_forM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__5; lean_object* l_Lean_stringToMessageData(lean_object*); extern lean_object* l_instReprOption___rarg___closed__1; @@ -36,6 +35,7 @@ lean_object* l_Lean_Elab_Term_expandSuffices___lambda__2___closed__3; lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSort(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; lean_object* l_Std_fmt___at_Lean_Position_instToFormatPosition___spec__1(lean_object*); lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); extern lean_object* l_instReprSigma___rarg___closed__2; @@ -43,6 +43,7 @@ lean_object* l_Lean_Elab_Term_expandSuffices___lambda__1___boxed(lean_object*, l lean_object* l_Lean_Elab_Term_expandHave___closed__2; lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__4; extern lean_object* l_Lean_nullKind; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabCDotFunctionAlias_x3f___spec__5___rarg(lean_object*); @@ -58,6 +59,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__2; lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__3; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__2; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__1; @@ -74,7 +76,6 @@ lean_object* l_Lean_Elab_Term_elabSorry(lean_object*, lean_object*, lean_object* lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__8; lean_object* l_Lean_Elab_Term_expandHave___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__3; extern lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_unreachable___elambda__1___closed__2; uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); @@ -128,15 +129,12 @@ lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__2; lean_object* l_Lean_Elab_Term_elabSubst___closed__7; lean_object* l_Lean_Elab_Term_elabPanic___closed__6; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabParen(lean_object*); lean_object* l_Lean_Elab_Term_expandDbgTrace___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; lean_object* l_Lean_Elab_Term_mkPairs_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabSorry(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__9; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__17; lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__1; lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__2___rarg(lean_object*, lean_object*, lean_object*); @@ -149,6 +147,7 @@ extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_noindex___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_expandHave___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8; @@ -213,6 +212,8 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandShow___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instQuoteProd___rarg___closed__2; lean_object* l_Lean_Elab_Term_expandDbgTrace(lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; lean_object* l_Lean_Elab_Term_elabTrailingParserMacro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__3; lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__1; @@ -230,6 +231,7 @@ lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, uint lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandUnreachable(lean_object*); lean_object* l_Lean_Elab_Term_mkInstMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; extern lean_object* l_Lean_Meta_mkArrow___closed__2; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); @@ -244,9 +246,9 @@ lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__4; lean_object* l_Lean_Elab_Term_expandHave___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux_match__2(lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCDotFunctionAlias_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabCDotFunctionAlias_x3f___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandSuffices(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; lean_object* l_Lean_Elab_Term_elabNoindex(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabPanic___closed__5; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__6; @@ -255,7 +257,6 @@ lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__3; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_expandCDot_x3f_go___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__3; extern lean_object* l_Lean_strLitKind___closed__2; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__8; extern lean_object* l_Lean_instQuoteBool___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabAnonymousCtor(lean_object*); @@ -322,8 +323,10 @@ extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; extern lean_object* l_term___x2b_x2b_____closed__2; lean_object* l_Lean_Elab_Term_expandHave___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabSorry___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__10; extern lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_object* l_Lean_Elab_Term_elabSubst___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabCDotFunctionAlias_x3f_match__1(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); @@ -340,20 +343,19 @@ lean_object* l_Lean_Elab_Term_expandHave___lambda__4(lean_object*, lean_object*, uint8_t l_List_beq___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__2(lean_object*); lean_object* l_Lean_Meta_matchEq_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; extern lean_object* l_Lean_Elab_Term_termElabAttribute; extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_23____closed__13; lean_object* l_Lean_Elab_Term_expandSuffices___lambda__2___closed__2; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248____closed__6; extern lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__2; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandHave(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot___boxed(lean_object*); lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); extern lean_object* l_Lean_Syntax_mkApp___closed__1; lean_object* l_Lean_Elab_Term_elabPanic(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; lean_object* l_Lean_Elab_Term_expandSuffices___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_elabLeadingParserMacro___lambda__1___closed__2; @@ -369,10 +371,8 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParser lean_object* l___regBuiltin_Lean_Elab_Term_expandShow(lean_object*); extern lean_object* l_Lean_Elab_macroAttribute; lean_object* lean_environment_main_module(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__5; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__14; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__4; lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -399,15 +399,16 @@ lean_object* l_Lean_Elab_Term_expandHave___lambda__11___boxed(lean_object*, lean extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_23____closed__8; lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabSubst(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Term_elabAnonymousCtor___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_adaptExpander___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; lean_object* l_Lean_Elab_Term_elabSorry___closed__5; lean_object* l_Lean_Elab_Term_elabSorry___closed__3; lean_object* l_Lean_Elab_Term_elabPanic___closed__12; lean_object* l_Lean_Elab_Term_expandHave___closed__3; uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot___spec__1(lean_object*, size_t, size_t); lean_object* l_Array_ofSubarray___rarg(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9; @@ -427,7 +428,6 @@ extern lean_object* l_Lean_getConstInfoCtor___rarg___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabPanic___closed__8; extern lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__7; uint8_t l_Lean_Syntax_isNone(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandParen___closed__1; @@ -465,15 +465,17 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabCDotFunc lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__14; extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__5; lean_object* l_Lean_Elab_Term_mkPairs___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__1; extern lean_object* l_prec_x28___x29___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__3; lean_object* l_Lean_Elab_Term_expandParen___closed__4; lean_object* l_Lean_Elab_Term_elabSubst___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabTrailingParserMacro___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__6___rarg(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__8; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_object* l_Lean_Elab_Term_mkPairs(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__5; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot_match__1(lean_object*); @@ -527,7 +529,6 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParser lean_object* l_Lean_Elab_Term_elabSubst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandDbgTrace(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Term_elabAnonymousCtor___spec__4(lean_object*); lean_object* l_Lean_Elab_getRefPosition___at_Lean_Elab_Term_elabPanic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabBorrowed___closed__1; @@ -551,7 +552,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__6; lean_object* l_Lean_Syntax_reprint(lean_object*); lean_object* l_Lean_Elab_Term_expandCDot_x3f_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_synthesizeInst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; extern lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabPanic___closed__4; @@ -2061,7 +2061,7 @@ lean_object* l_Lean_Elab_Term_expandShow(lean_object* x_1, lean_object* x_2, lea _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -2081,14 +2081,14 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); -x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; lean_inc(x_11); x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); if (x_13 == 0) { lean_object* x_14; uint8_t x_15; lean_dec(x_1); -x_14 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_14 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; lean_inc(x_11); x_15 = l_Lean_Syntax_isOfKind(x_11, x_14); if (x_15 == 0) @@ -2109,7 +2109,7 @@ x_18 = lean_unsigned_to_nat(0u); x_19 = l_Lean_Syntax_getArg(x_11, x_18); x_20 = l_Lean_Syntax_getArg(x_11, x_8); lean_dec(x_11); -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_inc(x_20); x_22 = l_Lean_Syntax_isOfKind(x_20, x_21); if (x_22 == 0) @@ -2133,7 +2133,7 @@ if (x_26 == 0) { 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; x_27 = lean_ctor_get(x_25, 0); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; lean_inc(x_27); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_27); @@ -2141,7 +2141,7 @@ lean_ctor_set(x_29, 1, x_28); x_30 = l_Array_empty___closed__1; x_31 = lean_array_push(x_30, x_29); x_32 = lean_array_push(x_31, x_9); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_27); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_27); @@ -2152,7 +2152,7 @@ lean_dec(x_19); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_37 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_37 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_27); lean_ctor_set(x_38, 1, x_37); @@ -2179,7 +2179,7 @@ lean_dec(x_27); x_46 = lean_ctor_get(x_36, 0); lean_inc(x_46); lean_dec(x_36); -x_47 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_47 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_48 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_48, 0, x_46); lean_ctor_set(x_48, 1, x_47); @@ -2208,7 +2208,7 @@ x_57 = lean_ctor_get(x_25, 1); lean_inc(x_57); lean_inc(x_56); lean_dec(x_25); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; lean_inc(x_56); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_56); @@ -2216,7 +2216,7 @@ lean_ctor_set(x_59, 1, x_58); x_60 = l_Array_empty___closed__1; x_61 = lean_array_push(x_60, x_59); x_62 = lean_array_push(x_61, x_9); -x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_56); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_56); @@ -2227,7 +2227,7 @@ lean_dec(x_19); if (lean_obj_tag(x_66) == 0) { lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_67 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_67 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_56); lean_ctor_set(x_68, 1, x_67); @@ -2256,7 +2256,7 @@ lean_dec(x_56); x_77 = lean_ctor_get(x_66, 0); lean_inc(x_77); lean_dec(x_66); -x_78 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_78 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_77); lean_ctor_set(x_79, 1, x_78); @@ -2456,7 +2456,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_expandShow___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -2939,14 +2939,14 @@ if (lean_is_exclusive(x_15)) { lean_dec_ref(x_15); x_18 = lean_box(0); } -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_16); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_16); lean_ctor_set(x_20, 1, x_19); x_21 = l_Array_empty___closed__1; x_22 = lean_array_push(x_21, x_20); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_16); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_16); @@ -2998,7 +2998,7 @@ x_36 = lean_array_push(x_35, x_3); if (lean_obj_tag(x_26) == 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; -x_37 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_37 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_16); lean_ctor_set(x_38, 1, x_37); @@ -3037,7 +3037,7 @@ lean_dec(x_16); x_51 = lean_ctor_get(x_26, 0); lean_inc(x_51); lean_dec(x_26); -x_52 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_52 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); @@ -3193,7 +3193,7 @@ x_17 = lean_unsigned_to_nat(1u); x_18 = l_Lean_Syntax_getArg(x_1, x_17); x_19 = lean_unsigned_to_nat(2u); x_20 = l_Lean_Syntax_getArg(x_1, x_19); -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; lean_inc(x_2); x_22 = lean_name_mk_string(x_2, x_21); lean_inc(x_20); @@ -3201,7 +3201,7 @@ x_23 = l_Lean_Syntax_isOfKind(x_20, x_22); if (x_23 == 0) { lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_24 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1; +x_24 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1; lean_inc(x_2); x_25 = lean_name_mk_string(x_2, x_24); lean_inc(x_20); @@ -3251,7 +3251,7 @@ if (x_37 == 0) { lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_dec(x_7); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_39 = lean_name_mk_string(x_2, x_38); lean_inc(x_20); x_40 = l_Lean_Syntax_isOfKind(x_20, x_39); @@ -3313,7 +3313,7 @@ else { lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_dec(x_6); -x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_53 = lean_name_mk_string(x_2, x_52); lean_inc(x_20); x_54 = l_Lean_Syntax_isOfKind(x_20, x_53); @@ -3401,7 +3401,7 @@ return x_71; else { lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_73 = lean_name_mk_string(x_2, x_72); lean_inc(x_20); x_74 = l_Lean_Syntax_isOfKind(x_20, x_73); @@ -3521,7 +3521,7 @@ if (x_103 == 0) { lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_dec(x_7); -x_104 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_104 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_105 = lean_name_mk_string(x_2, x_104); lean_inc(x_20); x_106 = l_Lean_Syntax_isOfKind(x_20, x_105); @@ -3583,7 +3583,7 @@ else { lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_dec(x_6); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_119 = lean_name_mk_string(x_2, x_118); lean_inc(x_20); x_120 = l_Lean_Syntax_isOfKind(x_20, x_119); @@ -3670,7 +3670,7 @@ return x_136; else { lean_object* x_137; lean_object* x_138; uint8_t x_139; -x_137 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_137 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_138 = lean_name_mk_string(x_2, x_137); lean_inc(x_20); x_139 = l_Lean_Syntax_isOfKind(x_20, x_138); @@ -3786,7 +3786,7 @@ if (x_162 == 0) { lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_dec(x_7); -x_163 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_163 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_164 = lean_name_mk_string(x_2, x_163); lean_inc(x_20); x_165 = l_Lean_Syntax_isOfKind(x_20, x_164); @@ -3848,7 +3848,7 @@ else { lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_dec(x_6); -x_177 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_177 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_178 = lean_name_mk_string(x_2, x_177); lean_inc(x_20); x_179 = l_Lean_Syntax_isOfKind(x_20, x_178); @@ -3935,7 +3935,7 @@ return x_195; else { lean_object* x_196; lean_object* x_197; uint8_t x_198; -x_196 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_196 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_197 = lean_name_mk_string(x_2, x_196); lean_inc(x_20); x_198 = l_Lean_Syntax_isOfKind(x_20, x_197); @@ -4090,7 +4090,7 @@ if (x_227 == 0) { lean_object* x_228; lean_object* x_229; uint8_t x_230; lean_dec(x_7); -x_228 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_228 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_229 = lean_name_mk_string(x_2, x_228); lean_inc(x_20); x_230 = l_Lean_Syntax_isOfKind(x_20, x_229); @@ -4152,7 +4152,7 @@ else { lean_object* x_242; lean_object* x_243; uint8_t x_244; lean_dec(x_6); -x_242 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_242 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_243 = lean_name_mk_string(x_2, x_242); lean_inc(x_20); x_244 = l_Lean_Syntax_isOfKind(x_20, x_243); @@ -4240,7 +4240,7 @@ return x_261; else { lean_object* x_262; lean_object* x_263; uint8_t x_264; -x_262 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_262 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_263 = lean_name_mk_string(x_2, x_262); lean_inc(x_20); x_264 = l_Lean_Syntax_isOfKind(x_20, x_263); @@ -4398,7 +4398,7 @@ lean_object* l_Lean_Elab_Term_expandHave(lean_object* x_1, lean_object* x_2, lea _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -4417,7 +4417,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -4479,7 +4479,7 @@ if (x_30 == 0) lean_object* x_31; lean_object* x_32; uint8_t x_33; x_31 = l_Lean_Syntax_getArg(x_9, x_22); lean_dec(x_9); -x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; lean_inc(x_31); x_33 = l_Lean_Syntax_isOfKind(x_31, x_32); if (x_33 == 0) @@ -4538,7 +4538,7 @@ else lean_object* x_46; lean_object* x_47; uint8_t x_48; x_46 = l_Lean_Syntax_getArg(x_9, x_22); lean_dec(x_9); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; lean_inc(x_46); x_48 = l_Lean_Syntax_isOfKind(x_46, x_47); if (x_48 == 0) @@ -4618,7 +4618,7 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; x_66 = l_Lean_Syntax_getArg(x_9, x_8); x_67 = l_Lean_Syntax_getArg(x_9, x_22); lean_dec(x_9); -x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; lean_inc(x_67); x_69 = l_Lean_Syntax_isOfKind(x_67, x_68); if (x_69 == 0) @@ -4831,7 +4831,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_4 = l___regBuiltin_Lean_Elab_Term_expandHave___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -4856,7 +4856,7 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_17 = lean_box(0); } -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_2); x_19 = lean_name_mk_string(x_2, x_18); lean_inc(x_15); @@ -4867,7 +4867,7 @@ x_21 = l_Array_empty___closed__1; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_24 = lean_name_mk_string(x_2, x_23); -x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_15); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_15); @@ -4929,7 +4929,7 @@ x_44 = lean_array_push(x_43, x_34); if (lean_obj_tag(x_35) == 0) { lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_45 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_45 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_46 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_46, 0, x_15); lean_ctor_set(x_46, 1, x_45); @@ -4958,7 +4958,7 @@ lean_dec(x_15); x_53 = lean_ctor_get(x_35, 0); lean_inc(x_53); lean_dec(x_35); -x_54 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_54 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_53); lean_ctor_set(x_55, 1, x_54); @@ -5026,7 +5026,7 @@ if (x_13 == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_2); x_16 = lean_name_mk_string(x_2, x_15); lean_inc(x_14); @@ -5037,7 +5037,7 @@ x_18 = l_Array_empty___closed__1; x_19 = lean_array_push(x_18, x_17); x_20 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_21 = lean_name_mk_string(x_2, x_20); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_14); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_14); @@ -5118,7 +5118,7 @@ x_57 = lean_ctor_get(x_12, 1); lean_inc(x_57); lean_inc(x_56); lean_dec(x_12); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_inc(x_2); x_59 = lean_name_mk_string(x_2, x_58); lean_inc(x_56); @@ -5129,7 +5129,7 @@ x_61 = l_Array_empty___closed__1; x_62 = lean_array_push(x_61, x_60); x_63 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_64 = lean_name_mk_string(x_2, x_63); -x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5; +x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5; lean_inc(x_56); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_56); @@ -5216,7 +5216,7 @@ x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = lean_unsigned_to_nat(2u); x_12 = l_Lean_Syntax_getArg(x_1, x_11); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; lean_inc(x_2); x_14 = lean_name_mk_string(x_2, x_13); lean_inc(x_12); @@ -5224,7 +5224,7 @@ x_15 = l_Lean_Syntax_isOfKind(x_12, x_14); if (x_15 == 0) { lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_16 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1; +x_16 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1; lean_inc(x_2); x_17 = lean_name_mk_string(x_2, x_16); lean_inc(x_12); @@ -5372,7 +5372,7 @@ lean_object* l_Lean_Elab_Term_expandSuffices(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -5519,7 +5519,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_expandSuffices___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -8753,7 +8753,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabSorry___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -8762,7 +8762,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabSorry___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Term_elabSorry___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); @@ -8891,7 +8891,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabSorry___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 7f88653fe3..bb904675b0 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -697,7 +697,6 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabReduce(lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__1; lean_object* l_Lean_Elab_Command_getScope(lean_object*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addScope___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabExport___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -756,6 +755,7 @@ lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext___ lean_object* l_Lean_Elab_Command_elabNamespace(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_State_infoState___default___closed__1; extern lean_object* l_Lean_Elab_pp_macroStack; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadLiftTIOCommandElabM(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabOpen(lean_object*); @@ -31207,7 +31207,7 @@ x_13 = lean_string_dec_eq(x_11, x_12); if (x_13 == 0) { lean_object* x_14; uint8_t x_15; -x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_15 = lean_string_dec_eq(x_11, x_14); lean_dec(x_11); if (x_15 == 0) diff --git a/stage0/stdlib/Lean/Elab/Deriving/BEq.c b/stage0/stdlib/Lean/Elab/Deriving/BEq.c index 8d7311e84f..0b91eb8207 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/BEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/BEq.c @@ -122,6 +122,7 @@ extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__27; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; extern lean_object* l_Lean_nullKind___closed__2; @@ -138,14 +139,13 @@ lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___privat extern lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__1; extern lean_object* l_Lean_instQuoteBool___closed__2; extern lean_object* l_Lean_Parser_Command_end___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_private___elambda__1___closed__1; lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__3; lean_object* l_Lean_Elab_Deriving_BEq_mkMutualBlock___closed__9; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; extern lean_object* l_Lean_Core_betaReduce___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9; lean_object* l_Lean_Elab_Deriving_BEq_mkMutualBlock___closed__1; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -348,7 +348,7 @@ static lean_object* _init_l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__1 _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -357,7 +357,7 @@ static lean_object* _init_l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); @@ -3741,7 +3741,7 @@ x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_19); lean_ctor_set(x_28, 1, x_27); x_29 = lean_array_push(x_14, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_inc(x_19); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_19); @@ -3802,7 +3802,7 @@ x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_19); lean_ctor_set(x_57, 1, x_56); x_58 = lean_array_push(x_14, x_57); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_inc(x_19); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_19); diff --git a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c index 34b997e483..515077b540 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c @@ -31,17 +31,18 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__1; extern lean_object* l_Lean_mkDecIsFalse___closed__1; lean_object* l_Lean_Elab_Command_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; extern lean_object* l_Lean_Parser_Tactic_injection___closed__2; lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___closed__2; lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__2; extern lean_object* l_Lean_getConstInfoInduct___rarg___lambda__1___closed__2; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__3; extern lean_object* l_Lean_Parser_Tactic_intro___closed__4; extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1; lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqHeader___rarg___closed__1; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__3; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch___boxed(lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__4; extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; @@ -55,6 +56,7 @@ lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq__ lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__6; lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_exact___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); @@ -64,7 +66,6 @@ extern lean_object* l_termDepIfThenElse___closed__24; lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__1(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__19; lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqHeader___boxed(lean_object*); @@ -75,7 +76,6 @@ lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8; lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandler___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_injection___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; lean_object* lean_nat_add(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_subst___closed__1; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__19; @@ -87,7 +87,6 @@ extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____close lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; extern lean_object* l_Lean_Syntax_formatStxAux___closed__3; lean_object* l_Lean_Elab_Deriving_mkDiscrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; extern lean_object* l_Lean_Parser_Tactic_subst___closed__2; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__7; lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqHeader___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -102,6 +101,7 @@ lean_object* lean_st_ref_take(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_assumption___closed__1; lean_object* l_Lean_Elab_Deriving_mkInstanceCmds(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch(lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__4; lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__3; @@ -117,7 +117,6 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqCmds(lean_object*, lean_object*, extern lean_object* l_Lean_mkDecIsTrue___closed__1; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; extern lean_object* l_Lean_Core_betaReduce___closed__2; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2; extern lean_object* l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_withNewEqs_loop___rarg___closed__2; lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -141,6 +140,7 @@ extern lean_object* l_Lean_Elab_Tactic_evalIntro___closed__2; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__22; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__1___rarg(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2; lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); lean_object* l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_mkHeader___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -201,11 +201,11 @@ extern lean_object* l_prec_x28___x29___closed__7; extern lean_object* l_Lean_Parser_Tactic_exact___closed__2; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__2___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; extern lean_object* l_termDepIfThenElse___closed__2; extern lean_object* l_prec_x28___x29___closed__3; lean_object* lean_mk_syntax_ident(lean_object*); extern lean_object* l_Lean_Parser_Command_private___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2; extern lean_object* l_Lean_instInhabitedInductiveVal; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__10; extern lean_object* l_Lean_mkOptionalNode___closed__2; @@ -424,7 +424,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -612,9 +612,9 @@ lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); x_24 = l_Array_empty___closed__1; x_25 = lean_array_push(x_24, x_23); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; x_27 = l_Lean_addMacroScope(x_18, x_26, x_14); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2; x_29 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__7; x_30 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_30, 0, x_11); @@ -656,9 +656,9 @@ lean_ctor_set(x_43, 2, x_40); lean_ctor_set(x_43, 3, x_42); x_44 = l_Array_empty___closed__1; x_45 = lean_array_push(x_44, x_43); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3; +x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3; x_47 = l_Lean_addMacroScope(x_37, x_46, x_14); -x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2; +x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2; x_49 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__7; x_50 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_50, 0, x_11); @@ -799,7 +799,7 @@ x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_79); lean_ctor_set(x_110, 1, x_109); x_111 = lean_array_push(x_108, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_112 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_inc(x_79); x_113 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_113, 0, x_79); @@ -861,18 +861,18 @@ x_144 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_144, 0, x_119); lean_ctor_set(x_144, 1, x_143); x_145 = lean_array_push(x_90, x_144); -x_146 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_146 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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_90, x_147); -x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_149); lean_ctor_set(x_150, 1, x_148); lean_inc(x_114); x_151 = lean_array_push(x_114, x_150); -x_152 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_152 = l_myMacro____x40_Init_Notation___hyg_23692____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); @@ -1272,7 +1272,7 @@ x_349 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_349, 0, x_79); lean_ctor_set(x_349, 1, x_348); x_350 = lean_array_push(x_347, x_349); -x_351 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_351 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_inc(x_79); x_352 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_352, 0, x_79); @@ -1334,18 +1334,18 @@ x_383 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_383, 0, x_358); lean_ctor_set(x_383, 1, x_382); x_384 = lean_array_push(x_329, x_383); -x_385 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_385 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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_329, x_386); -x_388 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_388 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_389 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_389, 0, x_388); lean_ctor_set(x_389, 1, x_387); lean_inc(x_353); x_390 = lean_array_push(x_353, x_389); -x_391 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_391 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_392 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_392, 0, x_391); lean_ctor_set(x_392, 1, x_390); @@ -1749,7 +1749,7 @@ x_578 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_578, 0, x_547); lean_ctor_set(x_578, 1, x_577); x_579 = lean_array_push(x_576, x_578); -x_580 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_580 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_inc(x_547); x_581 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_581, 0, x_547); @@ -1811,18 +1811,18 @@ x_612 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_612, 0, x_587); lean_ctor_set(x_612, 1, x_611); x_613 = lean_array_push(x_558, x_612); -x_614 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_614 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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_558, x_615); -x_617 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_617 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_618 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_618, 0, x_617); lean_ctor_set(x_618, 1, x_616); lean_inc(x_582); x_619 = lean_array_push(x_582, x_618); -x_620 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_620 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_621 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_621, 0, x_620); lean_ctor_set(x_621, 1, x_619); @@ -2268,7 +2268,7 @@ x_817 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_817, 0, x_786); lean_ctor_set(x_817, 1, x_816); x_818 = lean_array_push(x_815, x_817); -x_819 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_819 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_inc(x_786); x_820 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_820, 0, x_786); @@ -2330,18 +2330,18 @@ x_851 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_851, 0, x_826); lean_ctor_set(x_851, 1, x_850); x_852 = lean_array_push(x_797, x_851); -x_853 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_853 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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 = lean_array_push(x_797, x_854); -x_856 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_856 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_857 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_857, 0, x_856); lean_ctor_set(x_857, 1, x_855); lean_inc(x_821); x_858 = lean_array_push(x_821, x_857); -x_859 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_859 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_860 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_860, 0, x_859); lean_ctor_set(x_860, 1, x_858); @@ -4211,7 +4211,7 @@ lean_ctor_set(x_95, 0, x_79); lean_ctor_set(x_95, 1, x_94); lean_inc(x_3); x_96 = lean_array_push(x_3, x_95); -x_97 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3; +x_97 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3; lean_inc(x_79); x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_79); @@ -4295,18 +4295,18 @@ lean_ctor_set(x_133, 0, x_53); lean_ctor_set(x_133, 1, x_132); lean_inc(x_3); x_134 = lean_array_push(x_3, x_133); -x_135 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_135 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_135); lean_ctor_set(x_136, 1, x_134); lean_inc(x_3); x_137 = lean_array_push(x_3, x_136); -x_138 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_138 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_139 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_139, 0, x_138); lean_ctor_set(x_139, 1, x_137); x_140 = lean_array_push(x_99, x_139); -x_141 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_141 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_142 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_140); diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index cdce0fa19f..383d640e5a 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -34,6 +34,7 @@ lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__12; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___boxed__const__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__12; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; lean_object* l_Lean_Elab_Term_Do_extendUpdatedVarsAux_update_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__9; @@ -155,6 +156,7 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Do_hasReturn___spec__2(lean_o lean_object* l_Lean_Elab_Term_Do_extendUpdatedVarsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_run(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_doReassignArrow___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; extern lean_object* l_Lean_Parser_Term_letPatDecl___closed__2; uint8_t l_Lean_Elab_Term_Do_hasTerminalAction(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__11; @@ -504,6 +506,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__16; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_concat___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_homogenize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__29; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; extern lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__3; uint8_t l_Lean_Elab_Term_Do_hasExitPoint(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm(lean_object*, lean_object*, lean_object*); @@ -631,7 +634,6 @@ lean_object* l_Lean_Elab_Term_Do_hasExitPointPred_loop(lean_object*, lean_object extern lean_object* l_instMonadEST___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f_match__3___rarg(lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; extern lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f_match__2___rarg___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1136,7 +1138,6 @@ lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_ extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_276____closed__2; extern lean_object* l_List_foldl___at_Lean_Meta_Match_Pattern_toMessageData___spec__1___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; extern lean_object* l_Lean_Parser_Term_doNested___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__15; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__18; @@ -1181,7 +1182,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkUVarTuple___ lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_tryCatchPred(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_pullExitPoints_match__1(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__1; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1592,7 +1592,7 @@ x_8 = lean_name_eq(x_2, x_7); if (x_8 == 0) { lean_object* x_9; uint8_t x_10; -x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_10 = lean_name_eq(x_2, x_9); if (x_10 == 0) { @@ -35784,7 +35784,7 @@ x_30 = l_Lean_Elab_Term_elabNoMatch___closed__1; x_31 = lean_array_push(x_30, x_2); x_32 = l_Array_append___rarg(x_29, x_31); lean_dec(x_31); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -36160,7 +36160,7 @@ x_194 = lean_array_push(x_193, x_191); x_195 = l_Lean_mkOptionalNode___closed__1; x_196 = lean_array_push(x_194, x_195); x_197 = lean_array_push(x_196, x_2); -x_198 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_198 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____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); @@ -36318,7 +36318,7 @@ x_251 = l_Lean_Elab_Term_elabNoMatch___closed__1; x_252 = lean_array_push(x_251, x_2); x_253 = l_Array_append___rarg(x_250, x_252); lean_dec(x_252); -x_254 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_254 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_255 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_255, 0, x_254); lean_ctor_set(x_255, 1, x_253); @@ -36602,7 +36602,7 @@ x_366 = lean_array_push(x_365, x_363); x_367 = l_Lean_mkOptionalNode___closed__1; x_368 = lean_array_push(x_366, x_367); x_369 = lean_array_push(x_368, x_2); -x_370 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_370 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_371 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_371, 0, x_370); lean_ctor_set(x_371, 1, x_369); @@ -36766,7 +36766,7 @@ x_416 = l_Lean_Elab_Term_elabNoMatch___closed__1; x_417 = lean_array_push(x_416, x_2); x_418 = l_Array_append___rarg(x_415, x_417); lean_dec(x_417); -x_419 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_419 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_420 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_420, 0, x_419); lean_ctor_set(x_420, 1, x_418); @@ -37050,7 +37050,7 @@ x_531 = lean_array_push(x_530, x_528); x_532 = l_Lean_mkOptionalNode___closed__1; x_533 = lean_array_push(x_531, x_532); x_534 = lean_array_push(x_533, x_2); -x_535 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_535 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_536 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_536, 0, x_535); lean_ctor_set(x_536, 1, x_534); @@ -68646,7 +68646,7 @@ lean_ctor_set(x_26, 1, x_25); lean_ctor_set(x_26, 2, x_23); lean_ctor_set(x_26, 3, x_24); x_27 = lean_array_push(x_21, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); diff --git a/stage0/stdlib/Lean/Elab/LetRec.c b/stage0/stdlib/Lean/Elab/LetRec.c index 8873d0bde9..48e74ba9b9 100644 --- a/stage0/stdlib/Lean/Elab/LetRec.c +++ b/stage0/stdlib/Lean/Elab/LetRec.c @@ -17,6 +17,7 @@ lean_object* l_Lean_addDocString_x27___at___private_Lean_Elab_LetRec_0__Lean_Ela lean_object* l_List_reverse___rarg(lean_object*); lean_object* l_Array_mapIdxM_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; size_t l_USize_add(size_t, size_t); lean_object* l_List_forM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); @@ -207,7 +208,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabLetRec___spec__1(siz lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__21___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_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__15___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__21(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4387,7 +4387,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; diff --git a/stage0/stdlib/Lean/Elab/SetOption.c b/stage0/stdlib/Lean/Elab/SetOption.c index 6a3d288fb8..7a763d8f34 100644 --- a/stage0/stdlib/Lean/Elab/SetOption.c +++ b/stage0/stdlib/Lean/Elab/SetOption.c @@ -53,7 +53,6 @@ lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__1(lean_object* lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__1___closed__2; lean_object* l_Lean_Elab_elabSetOption_match__2(lean_object*); lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Lean_Elab_elabSetOption_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -63,6 +62,7 @@ lean_object* l_Lean_Elab_elabSetOption_setOption(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption___spec__1(lean_object*); lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__4___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption___spec__2(lean_object*); lean_object* l_IO_toEIO___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption_setOption___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*); @@ -94,7 +94,7 @@ if (x_8 == 0) { lean_object* x_9; uint8_t x_10; lean_dec(x_2); -x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_10 = lean_string_dec_eq(x_6, x_9); lean_dec(x_6); if (x_10 == 0) @@ -791,7 +791,7 @@ x_25 = lean_string_dec_eq(x_23, x_24); if (x_25 == 0) { lean_object* x_26; uint8_t x_27; -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_27 = lean_string_dec_eq(x_23, x_26); lean_dec(x_23); if (x_27 == 0) diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 23b7b81e9e..e97a33a6a6 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -583,6 +583,7 @@ lean_object* l_Lean_ConstantInfo_type(lean_object*); lean_object* l_Lean_Elab_resolveGlobalConstWithInfos___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_toParserDescr_processNonReserved___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory___closed__2; lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___lambda__1___closed__4; @@ -694,7 +695,6 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__1; lean_object* l_Lean_Elab_Term_toParserDescr_processUnary___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabMacroRulesAux___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*); @@ -748,7 +748,6 @@ lean_object* l_Lean_Elab_Term_toParserDescr_processAtom___closed__4; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__2; lean_object* l_Lean_Elab_Term_toParserDescr_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; extern lean_object* l_Lean_evalPrec___closed__1; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_setEnv___at_Lean_Elab_Command_elabInitQuot___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -761,6 +760,7 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__5(lean_object*, lean_obj extern lean_object* l_Lean_Parser_tokenWithAntiquotFn___lambda__2___closed__1; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__47; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_isParserAlias(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4145,7 +4145,7 @@ static lean_object* _init_l_Lean_Elab_Term_toParserDescr_processNonReserved___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -4154,7 +4154,7 @@ static lean_object* _init_l_Lean_Elab_Term_toParserDescr_processNonReserved___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__9; x_4 = lean_alloc_ctor(0, 3, 0); @@ -29942,7 +29942,7 @@ x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); x_99 = lean_array_push(x_47, x_98); -x_100 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_100 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_inc(x_89); x_101 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_101, 0, x_89); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 90ff75889f..c828f8af92 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -50,7 +50,6 @@ lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_ extern lean_object* l_Lean_nullKind; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__6; lean_object* l_Lean_Elab_Tactic_adaptExpander___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalFirstNew(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticAttribute(lean_object*); lean_object* l_Lean_Elab_Tactic_evalSkip___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__15(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -61,6 +60,7 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_io_error_to_string(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRevert___closed__1; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -103,6 +103,7 @@ lean_object* l_Lean_Elab_Tactic_focusAndDone(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenOnly___at_Lean_Elab_Tactic_evalOpen___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFocus___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_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_adaptExpander___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,11 +172,9 @@ extern lean_object* l_Lean_Elab_logException___rarg___lambda__1___closed__2; lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isPrefixOf(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getGoals___boxed(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalClear___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFocus___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirstNew(lean_object*); lean_object* l_Lean_Elab_Tactic_evalDone___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented(lean_object*); @@ -200,7 +199,6 @@ extern lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__2; uint8_t l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_102_(uint8_t, uint8_t); extern lean_object* l_instReprBool___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalContradiction___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); @@ -218,7 +216,6 @@ lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Tactic_Basic_0__Lean_E lean_object* l_Lean_Elab_Tactic_liftMetaMAtMain(lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalAllGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_getFVarId___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_focus___closed__2; lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -235,6 +232,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__5; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalUnknown(lean_object*); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateLeft___closed__1; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_saveState(lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -246,7 +244,6 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_getFVarId___spec__1___boxed lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1; lean_object* l_Lean_ScopedEnvExtension_popScope___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_intro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalFirstNew___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_closeMainGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -281,7 +278,6 @@ extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____close lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getOptRotation___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOpen___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1; uint8_t l_Array_qsort_sort___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__1___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkSorry(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -309,6 +305,7 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f_ lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM; lean_object* l_Lean_Elab_Tactic_evalFirst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; lean_object* l_Lean_Elab_Tactic_withTacticInfoContext(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_elabSetOption___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -392,7 +389,6 @@ lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1___boxed(lean_object*, lean_ lean_object* l_Lean_Meta_revert(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalChoice___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_TacticM_runCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1; lean_object* l_Lean_Elab_Tactic_closeMainGoal___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withMVarContext___at_Lean_Elab_Tactic_withMainContext___spec__1(lean_object*); lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___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*); @@ -423,7 +419,6 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed(lean_object* lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Tactic_elabSetOption___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalChoice(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntros(lean_object*); lean_object* l_Lean_Elab_Tactic_evalTraceState(lean_object*); size_t lean_usize_modn(size_t, lean_object*); @@ -453,7 +448,6 @@ lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__2; lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Tactic_elabSetOption___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__1; lean_object* l_ReaderT_bind___at_Lean_Elab_Term_instMonadLogTermElabM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__2; extern lean_object* l_Lean_Parser_Tactic_paren___closed__1; lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__4; lean_object* l_Lean_Elab_Tactic_evalRotateLeft___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -466,7 +460,6 @@ lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirst(lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_addOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*); @@ -481,7 +474,6 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg( lean_object* l_Lean_Elab_Tactic_evalAssumption___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFirst_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_forEachVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalFirstNew___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___closed__1; extern lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__1___closed__2; @@ -516,10 +508,10 @@ extern lean_object* l_Lean_Syntax_mkApp___closed__1; lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_withMacroExpansion___spec__1(lean_object*); lean_object* l_Lean_Elab_Tactic_withMainContext(lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal_loop_match__1(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; lean_object* l_Lean_Elab_goalsToMessageData(lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; lean_object* l_Lean_Elab_Tactic_getFVarIds___boxed__const__1; lean_object* l_Lean_Elab_Tactic_focusAndDone___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_isAnonymousMVar(lean_object*, lean_object*); @@ -530,6 +522,7 @@ lean_object* l_Lean_Elab_Tactic_evalContradiction(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq1(lean_object*); lean_object* l_Lean_Syntax_getSepArgs(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__1; +lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1; lean_object* l_Lean_Elab_Tactic_evalRotateRight___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight___closed__1; lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux_match__1___rarg(lean_object*, lean_object*); @@ -551,14 +544,12 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spe lean_object* l_Lean_Elab_Tactic_getMainGoal_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__1; extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ensureHasNoMVars___closed__2; lean_object* l_List_rotateRight___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTactic___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_TacticM_runCore_x27___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_SavedState_restore(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); @@ -595,13 +586,12 @@ lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1___box extern lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__1; lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_Lean_Elab_Tactic_withTacticInfoContext___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_List_filterAuxM___at_Lean_Elab_Tactic_pruneSolvedGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenSimple___at_Lean_Elab_Tactic_evalOpen___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntros_match__1(lean_object*); lean_object* l_Lean_Meta_isExprMVarAssigned(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalFirstNew___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalCase___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*); extern lean_object* l_Lean_Parser_Tactic_case___closed__2; lean_object* l_Lean_Elab_Tactic_evalChoiceAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -646,7 +636,7 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__21_ lean_object* l_Lean_Elab_Tactic_closeMainGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tryTactic___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672_(lean_object*); +lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580_(lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withPPInaccessibleNames___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_throwNoGoalsToBeSolved___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -677,6 +667,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_throwNoGoalsToBeSolved___sp lean_object* l_List_findM_x3f___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntroMatch(lean_object*); extern lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__2; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg(lean_object*); extern lean_object* l_Lean_Parser_Tactic_intro___closed__2; lean_object* l_List_forM___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_replaceMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -686,6 +677,7 @@ extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; extern lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__5; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Tactic_elabSetOption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalManyTacticOptSemi(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalSubst___closed__1; @@ -718,7 +710,6 @@ lean_object* l_Lean_Elab_Tactic_withMacroExpansion(lean_object*); lean_object* l_Lean_Elab_Tactic_focusAndDone___rarg___closed__1; extern lean_object* l_Lean_Parser_Tactic_intro___closed__3; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(lean_object*); extern lean_object* l_Lean_scopedEnvExtensionsRef; lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -787,6 +778,7 @@ lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalOpen___spec__8___boxed(le lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalChoiceAux___spec__1___rarg(lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalParen(lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Tactic_elabSetOption___spec__6___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenHiding___at_Lean_Elab_Tactic_evalOpen___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logException___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -803,7 +795,6 @@ lean_object* l_Lean_Elab_Tactic_evalAllGoals(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Elab_Tactic_evalIntros___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAnnotation___closed__1; lean_object* l_Lean_Elab_Tactic_evalSkip___rarg(lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); @@ -13204,7 +13195,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSeq1___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -13460,7 +13451,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -17925,7 +17916,7 @@ x_19 = lean_string_dec_eq(x_17, x_18); if (x_19 == 0) { lean_object* x_20; uint8_t x_21; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_21 = lean_string_dec_eq(x_17, x_20); lean_dec(x_17); if (x_21 == 0) @@ -18259,7 +18250,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_4 = l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -18722,7 +18713,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -19973,7 +19964,7 @@ x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_41); lean_ctor_set(x_54, 1, x_53); x_55 = lean_array_push(x_38, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -20111,7 +20102,7 @@ x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_62); lean_ctor_set(x_122, 1, x_121); x_123 = lean_array_push(x_118, x_122); -x_124 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_124 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_125 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_125, 0, x_124); lean_ctor_set(x_125, 1, x_123); @@ -20163,12 +20154,12 @@ x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_83); lean_ctor_set(x_153, 1, x_152); x_154 = lean_array_push(x_75, x_153); -x_155 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_155 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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_75, x_156); -x_158 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_158 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_159 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_159, 0, x_158); lean_ctor_set(x_159, 1, x_157); @@ -20182,7 +20173,7 @@ x_164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_164, 0, x_83); lean_ctor_set(x_164, 1, x_163); x_165 = lean_array_push(x_75, x_164); -x_166 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_166 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_167 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_167, 0, x_166); lean_ctor_set(x_167, 1, x_165); @@ -24745,7 +24736,7 @@ x_18 = lean_unsigned_to_nat(3u); x_19 = l_Lean_Syntax_getArg(x_1, x_18); x_20 = lean_unsigned_to_nat(4u); x_21 = l_Lean_Syntax_getArg(x_1, x_20); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_inc(x_21); x_23 = l_Lean_Syntax_isOfKind(x_21, x_22); if (x_23 == 0) @@ -25102,7 +25093,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_Tactic_evalFirst_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -25178,16 +25169,16 @@ return x_31; } } } -lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_Tactic_evalFirst_loop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_evalFirstNew_loop(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_1); return x_12; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(lean_object* x_1) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -25198,24 +25189,24 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg), 1, 0); +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg), 1, 0); return x_9; } } -lean_object* l_Lean_Elab_Tactic_evalFirstNew___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Elab_Tactic_evalFirstNew_loop(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_Elab_Tactic_evalFirstNew(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_Elab_Tactic_evalFirst(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; @@ -25228,7 +25219,7 @@ if (x_14 == 0) { lean_object* x_15; lean_object* x_16; x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Lean_Elab_Tactic_evalFirstNew_loop(x_13, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l_Lean_Elab_Tactic_evalFirst_loop(x_13, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_13); return x_16; } @@ -25244,7 +25235,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_17 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(x_10); +x_17 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg(x_10); x_18 = !lean_is_exclusive(x_17); if (x_18 == 0) { @@ -25266,11 +25257,11 @@ return x_21; } } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -25282,198 +25273,6 @@ lean_dec(x_1); return x_9; } } -lean_object* l_Lean_Elab_Tactic_evalFirstNew___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_evalFirstNew___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_2); -lean_dec(x_1); -return x_12; -} -} -lean_object* l_Lean_Elab_Tactic_evalFirstNew___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_evalFirstNew(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_1); -return x_11; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalFirstNew___boxed), 10, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirstNew(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_firstNew___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -lean_object* l_Lean_Elab_Tactic_evalFirst_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_12 = lean_array_get_size(x_1); -x_13 = lean_unsigned_to_nat(1u); -x_14 = lean_nat_sub(x_12, x_13); -lean_dec(x_12); -x_15 = lean_nat_dec_eq(x_2, x_14); -lean_dec(x_14); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_16 = l_Lean_instInhabitedSyntax; -x_17 = lean_array_get(x_16, x_1, x_2); -x_18 = lean_nat_add(x_2, x_13); -lean_dec(x_2); -x_19 = l_Lean_Elab_Tactic_saveState___rarg(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_22 = l_Lean_Elab_Tactic_evalTactic(x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_21); -if (lean_obj_tag(x_22) == 0) -{ -lean_dec(x_20); -lean_dec(x_18); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_22; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -lean_dec(x_22); -x_24 = l_Lean_Elab_Tactic_SavedState_restore(x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_23); -x_25 = lean_ctor_get(x_24, 1); -lean_inc(x_25); -lean_dec(x_24); -x_2 = x_18; -x_11 = x_25; -goto _start; -} -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = l_Lean_instInhabitedSyntax; -x_28 = lean_array_get(x_27, x_1, x_2); -lean_dec(x_2); -x_29 = l_Lean_Elab_Tactic_evalTactic(x_28, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_29; -} -} -} -lean_object* l_Lean_Elab_Tactic_evalFirst_loop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_1); -return x_12; -} -} -lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; -} -} -lean_object* l_Lean_Elab_Tactic_evalFirst(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_11 = l_Lean_Syntax_getNumArgs(x_1); -x_12 = lean_unsigned_to_nat(2u); -x_13 = lean_nat_dec_eq(x_11, x_12); -lean_dec(x_11); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_14 = l_Lean_Syntax_getArg(x_1, x_12); -x_15 = l_Lean_Syntax_getSepArgs(x_14); -lean_dec(x_14); -x_16 = l_Array_isEmpty___rarg(x_15); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Lean_Elab_Tactic_evalFirst_loop(x_15, x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_15); -return x_18; -} -else -{ -lean_object* x_19; uint8_t x_20; -lean_dec(x_15); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(x_10); -x_20 = !lean_is_exclusive(x_19); -if (x_20 == 0) -{ -return x_19; -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_19, 0); -x_22 = lean_ctor_get(x_19, 1); -lean_inc(x_22); -lean_inc(x_21); -lean_dec(x_19); -x_23 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); -return x_23; -} -} -} -else -{ -lean_object* x_24; -x_24 = l_Lean_Elab_Tactic_evalFirstNew(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_24; -} -} -} lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -25512,7 +25311,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_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -25522,11 +25321,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672_(lean_object* x_1) { +lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -25829,19 +25628,14 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalCase(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1); -res = l___regBuiltin_Lean_Elab_Tactic_evalFirstNew(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalFirst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1); -res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672_(lean_io_mk_world()); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1); +res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index 4daa050f15..57ab1fea4d 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -78,6 +78,7 @@ lean_object* l_Lean_Meta_getElimInfo(lean_object*, lean_object*, lean_object*, l lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConst___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_Lean_Elab_Tactic_evalCases___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkMVar(lean_object*); extern lean_object* l_Array_empty___closed__1; @@ -128,7 +129,6 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_mkElimApp___ lean_object* l_Lean_Elab_Tactic_evalInduction___boxed__const__1; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTerm_match__1___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields_match__1(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__5___lambda__2___closed__5; lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_go_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -275,7 +275,6 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_ lean_object* lean_expr_dbg_to_string(lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__2___closed__3; extern lean_object* l_Lean_instInhabitedExpr; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l_Lean_resolveGlobalConst___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -434,6 +433,7 @@ lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___s lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases(lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__1___closed__1; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getArgExpectedType___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); @@ -637,7 +637,7 @@ uint8_t l_Lean_Elab_Tactic_isHoleRHS(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_inc(x_1); x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); if (x_3 == 0) @@ -11537,7 +11537,7 @@ lean_dec(x_35); x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_40 = lean_name_mk_string(x_38, x_39); lean_inc(x_40); x_41 = l_Lean_Meta_getElimInfo(x_40, x_8, x_9, x_10, x_11, x_36); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Match.c b/stage0/stdlib/Lean/Elab/Tactic/Match.c index 1b5a384678..66405baf40 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Match.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Match.c @@ -27,6 +27,7 @@ lean_object* l_Lean_Elab_Tactic_adaptExpander___lambda__1(lean_object*, lean_obj lean_object* lean_name_mk_string(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm_match__1___rarg(lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalMatch___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -35,6 +36,7 @@ lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalMatch___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_adaptExpander___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_AuxMatchTermState_cases___default; @@ -52,7 +54,6 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_9319____closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalMatch___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___spec__2___closed__4; size_t l_USize_shiftRight(size_t, size_t); @@ -63,7 +64,6 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_evalMatch___spec__1___box lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8; uint8_t l_USize_decLt(size_t, size_t); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___spec__2___closed__2; lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -99,7 +99,6 @@ lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryM extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__12; lean_object* l_ReaderT_pure___at_Lean_Elab_liftMacroM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l_Lean_Elab_Tactic_evalEraseAuxDiscrs___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalMatch___closed__1; extern lean_object* l_Lean_Parser_Tactic_paren___closed__1; @@ -141,6 +140,7 @@ lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__3___boxed(lean_object*, lea uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); extern lean_object* l_prec_x28___x29___closed__7; lean_object* l_Lean_Elab_Tactic_replaceMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; extern lean_object* l_prec_x28___x29___closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__10; @@ -940,7 +940,7 @@ x_27 = l_myMacro____x40_Init_Notation___hyg_15342____closed__10; x_28 = l_Lean_Syntax_setKind(x_26, x_27); x_29 = lean_unsigned_to_nat(3u); x_30 = l_Lean_Syntax_getArg(x_28, x_29); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_inc(x_30); x_32 = l_Lean_Syntax_isOfKind(x_30, x_31); if (x_32 == 0) @@ -1091,12 +1091,12 @@ x_105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_105, 0, x_86); lean_ctor_set(x_105, 1, x_104); x_106 = lean_array_push(x_52, x_105); -x_107 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_107 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); x_109 = lean_array_push(x_52, x_108); -x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_110); lean_ctor_set(x_111, 1, x_109); @@ -1272,12 +1272,12 @@ x_182 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_182, 0, x_163); lean_ctor_set(x_182, 1, x_181); x_183 = lean_array_push(x_52, x_182); -x_184 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_184 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; 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_52, x_185); -x_187 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_187 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_188 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_188, 0, x_187); lean_ctor_set(x_188, 1, x_186); @@ -1519,12 +1519,12 @@ x_287 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_287, 0, x_268); lean_ctor_set(x_287, 1, x_286); x_288 = lean_array_push(x_234, x_287); -x_289 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_289 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_290 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_290, 0, x_289); lean_ctor_set(x_290, 1, x_288); x_291 = lean_array_push(x_234, x_290); -x_292 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_292 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_293 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_293, 0, x_292); lean_ctor_set(x_293, 1, x_291); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 7cc2af84b4..a9ba24f2b6 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -79,7 +79,6 @@ lean_object* l_Lean_Level_collectMVars(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_ReaderT_read___at_Lean_Elab_Term_instMonadLogTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_mkAntiquotSpliceNode___closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; extern lean_object* l_myMacro____x40_Init_Coe___hyg_166____closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwMVarError___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -201,6 +200,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkFreshTypeMVarFor___b lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_3526____closed__1; lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_elabDoubleQuotedName___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3___closed__1; @@ -339,7 +339,6 @@ lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__13; 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*); lean_object* l_List_forIn_loop___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabDoubleQuotedName___closed__1; lean_object* l_Lean_Elab_Term_instToStringMVarErrorKind(lean_object*); extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1; @@ -582,6 +581,7 @@ lean_object* l_Lean_Elab_Term_instToStringLVal(lean_object*); extern lean_object* l_Lean_Core_instMonadRefCoreM; lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashSetImp_insert___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__4(lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2; lean_object* l_Lean_Elab_addCompletionInfo___at_Lean_Elab_Term_addDotCompletionInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_decorateErrorMessageWithLambdaImplicitVars___closed__2; @@ -623,6 +623,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda(lea extern lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__2; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabQuotedName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; lean_object* l_List_forIn_loop___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__5___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Level_any(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__4; @@ -670,6 +671,7 @@ lean_object* l_Lean_Elab_Term_blockImplicitLambda___boxed(lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabOptLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; lean_object* l_Lean_ScopedEnvExtension_pushScope___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isCoeDecl___closed__34; @@ -689,7 +691,6 @@ lean_object* l_Lean_MonadQuotation_addMacroScope___rarg___lambda__2(lean_object* lean_object* l_Lean_ofExcept___at_Lean_Elab_Term_evalExpr___spec__12___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_levelMVarToParam___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind___closed__2; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2; lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenOnly___at_Lean_Elab_Term_elabOpen___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withFreshMacroScope(lean_object*); lean_object* l_Lean_Name_toExprAux(lean_object*); @@ -802,7 +803,6 @@ lean_object* l_Lean_Elab_Term_resolveName_x27_match__5(lean_object*); lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_elabOpen___spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l_Lean_Elab_Term_elabLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_localDeclDependsOn(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1057,7 +1057,6 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits_ lean_object* l___private_Init_Data_String_Basic_0__Substring_takeRightWhileAux___at_Lean_Elab_Term_resolveName_x27___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___closed__6; extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_logUnassignedUsingErrorInfos___closed__1; lean_object* l_Lean_Elab_Term_addDotCompletionInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1156,6 +1155,7 @@ lean_object* l_Lean_Elab_throwAbortCommand___at_Lean_Elab_Term_ensureNoUnassigne lean_object* l_Lean_Elab_Term_State_infoState___default___closed__1; lean_object* l_Lean_Elab_Term_evalExpr___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_pp_macroStack; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Elab_Term_resolveName_x27___closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabProp___closed__1; @@ -1343,6 +1343,7 @@ lean_object* l_Lean_Elab_Term_throwTypeMismatchError_match__1(lean_object*); lean_object* l_ReaderT_read___at_Lean_Elab_Term_instMonadLogTermElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_TermElabM_run_x27(lean_object*); uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_object* l_Lean_Elab_Term_tryCoeThunk_x3f___closed__1; lean_object* l_Lean_Expr_FindImpl_findM_x3f_visit(lean_object*, size_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostpone(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1433,7 +1434,6 @@ lean_object* l_Lean_Elab_Term_resolveName___lambda__3___boxed(lean_object*, lean lean_object* lean_usize_to_nat(size_t); lean_object* l_List_foldlM___at_Lean_Elab_Term_evalExpr___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; lean_object* l_Lean_Elab_Term_setMessageLog(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__12; uint8_t lean_level_eq(lean_object*, lean_object*); @@ -22817,7 +22817,7 @@ x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); if (x_3 == 0) { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -22873,7 +22873,7 @@ uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isTacticBlock(lean_object* _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_2 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; lean_inc(x_1); x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); if (x_3 == 0) @@ -22889,7 +22889,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_unsigned_to_nat(1u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); lean_dec(x_1); -x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_8 = l_Lean_Syntax_isOfKind(x_6, x_7); return x_8; } @@ -22908,7 +22908,7 @@ uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda(lean_obj _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); return x_3; } @@ -22927,7 +22927,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -34520,7 +34520,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_4 = l___regBuiltin_Lean_Elab_Term_elabSyntheticHole___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -34671,7 +34671,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -34743,7 +34743,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabNoImplicitLambda___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -44667,7 +44667,7 @@ x_17 = lean_string_dec_eq(x_15, x_16); if (x_17 == 0) { lean_object* x_18; uint8_t x_19; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_19 = lean_string_dec_eq(x_15, x_18); lean_dec(x_15); if (x_19 == 0) diff --git a/stage0/stdlib/Lean/Meta/IndPredBelow.c b/stage0/stdlib/Lean/Meta/IndPredBelow.c index c1dd73b888..26b997a126 100644 --- a/stage0/stdlib/Lean/Meta/IndPredBelow.c +++ b/stage0/stdlib/Lean/Meta/IndPredBelow.c @@ -119,7 +119,6 @@ lean_object* l_Lean_Meta_IndPredBelow_instInhabitedVariables; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_mkContext_addMotives___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_IndPredBelow_mkCtorType_mkMotiveBinder___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_IndPredBelow_mkContext_mkHeader___spec__1(size_t, size_t, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_mkContext_addMotives___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_IndPredBelow_mkCtorType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(size_t, size_t, lean_object*); @@ -384,6 +383,7 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_IndPredBelow_mkCtorType_repla lean_object* l_Lean_Meta_IndPredBelow_mkContext_addMotives_match__1(lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_proveBrecOn_applyCtors___spec__4(lean_object*, size_t, size_t, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_mkContext_addMotives___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; extern lean_object* l_Lean_instInhabitedInductiveVal; lean_object* l_Lean_Meta_IndPredBelow_proveBrecOn_intros_match__1___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; @@ -8313,7 +8313,7 @@ lean_dec(x_30); x_33 = lean_ctor_get(x_23, 0); lean_inc(x_33); lean_dec(x_23); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_35 = lean_name_mk_string(x_33, x_34); x_36 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_35, x_5, x_6, x_7, x_8, x_32); if (lean_obj_tag(x_36) == 0) diff --git a/stage0/stdlib/Lean/Meta/RecursorInfo.c b/stage0/stdlib/Lean/Meta/RecursorInfo.c index 2b5c60ac6b..2d3ddf6cc2 100644 --- a/stage0/stdlib/Lean/Meta/RecursorInfo.c +++ b/stage0/stdlib/Lean/Meta/RecursorInfo.c @@ -95,7 +95,6 @@ extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_getConstInfoInduct___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoForKernelRec___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Attribute_Recursor_getMajorPos___closed__3; lean_object* l_Lean_Meta_RecursorInfo_instToStringRecursorInfo___closed__13; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l_Lean_throwErrorAt___at_Lean_getAttrParamOptPrio___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorInfo_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_instReprBool___closed__2; @@ -260,7 +259,6 @@ uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getProduceMotiveAndRecursive_match__2(lean_object*); lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_initFn____x40_Lean_Meta_RecursorInfo___hyg_2259____spec__1___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f_match__1(lean_object*); @@ -277,6 +275,7 @@ lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lea lean_object* l_Lean_Meta_mkRecursorInfo_match__1(lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getProduceMotiveAndRecursive___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoCore_match__1___rarg(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMotiveLevel___closed__2; lean_object* l_Lean_Meta_Attribute_Recursor_getMajorPos(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosDepElim___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -320,6 +319,7 @@ lean_object* l_Lean_Expr_FindImpl_findM_x3f_visit(lean_object*, size_t, lean_obj lean_object* l_Lean_Meta_RecursorInfo_instToStringRecursorInfo(lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoForKernelRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_instToStringRecursorInfo___closed__7; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; uint8_t l_Array_contains___at_Lean_Meta_CheckAssignment_checkFVar___spec__1(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getParamsPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getUnivLevelPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1001,7 +1001,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_term_x5b___x5d___closed__5; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_3 = lean_string_append(x_1, x_2); return x_3; } @@ -1072,7 +1072,7 @@ x_18 = lean_unbox(x_14); if (x_18 == 0) { lean_object* x_19; lean_object* x_20; -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_20 = lean_string_append(x_19, x_17); lean_dec(x_17); return x_20; @@ -1327,7 +1327,7 @@ x_40 = l_List_toString___at_Lean_Meta_RecursorInfo_instToStringRecursorInfo___sp if (x_23 == 0) { lean_object* x_91; -x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_41 = x_91; goto block_90; } @@ -1349,7 +1349,7 @@ x_45 = lean_string_append(x_43, x_44); if (x_24 == 0) { lean_object* x_88; -x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_46 = x_88; goto block_87; } @@ -2256,7 +2256,7 @@ block_54: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_dec(x_18); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_20 = lean_name_mk_string(x_16, x_19); x_21 = l_Lean_getConstInfoRec___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f___spec__1(x_20, x_3, x_4, x_5, x_6, x_11); if (lean_obj_tag(x_21) == 0) @@ -2473,7 +2473,7 @@ block_99: { lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_dec(x_75); -x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_77 = lean_name_mk_string(x_73, x_76); x_78 = l_Lean_getConstInfoRec___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f___spec__1(x_77, x_3, x_4, x_5, x_6, x_67); if (lean_obj_tag(x_78) == 0) diff --git a/stage0/stdlib/Lean/Meta/SizeOf.c b/stage0/stdlib/Lean/Meta/SizeOf.c index 8f7112941f..83efd5c635 100644 --- a/stage0/stdlib/Lean/Meta/SizeOf.c +++ b/stage0/stdlib/Lean/Meta/SizeOf.c @@ -114,7 +114,6 @@ lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg___closed__1; lean_object* l_Lean_Expr_appArg_x21(lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__1___closed__2; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); lean_object* l_Lean_Meta_whnfI(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -376,6 +375,7 @@ lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4920_(lean_object* lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4479____closed__1; lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isInductivePredicate___at_Lean_Meta_mkSizeOfInstances___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isRecField_x3f_match__1(lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_SizeOfSpecNested_throwFailed___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4479____closed__4; @@ -5210,7 +5210,7 @@ lean_dec(x_13); lean_inc(x_12); lean_inc(x_1); x_16 = lean_name_append_index_after(x_1, x_12); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_18 = lean_name_mk_string(x_10, x_17); lean_inc(x_7); lean_inc(x_6); @@ -5305,7 +5305,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_inc(x_1); x_23 = lean_name_mk_string(x_1, x_22); x_24 = lean_nat_add(x_5, x_16); @@ -5473,7 +5473,7 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_11 = lean_name_mk_string(x_1, x_10); x_12 = l_Lean_getConstInfoRec___at_Lean_Meta_mkSizeOfFn___spec__1(x_11, x_2, x_3, x_4, x_5, x_9); if (lean_obj_tag(x_12) == 0) @@ -11682,7 +11682,7 @@ lean_inc(x_39); x_40 = lean_ctor_get(x_39, 0); lean_inc(x_40); lean_dec(x_39); -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_42 = lean_name_mk_string(x_40, x_41); lean_inc(x_42); x_43 = l_Lean_getConstInfoRec___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_32); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Intro.c b/stage0/stdlib/Lean/Meta/Tactic/Intro.c index b67a536a77..09ea77a965 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Intro.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Intro.c @@ -50,10 +50,10 @@ lean_object* l_Lean_Meta_intro_match__1___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp(lean_object*); lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___rarg___closed__1; lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_621_(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7; lean_object* l_Lean_Meta_intro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonadLiftReaderT(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7; lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_match__1___rarg(lean_object*, lean_object*); @@ -1209,7 +1209,7 @@ lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_621_(lean_ob _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7; x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_621____closed__2; x_4 = l_Lean_Option_register___at_Std_Format_initFn____x40_Lean_Data_Format___hyg_53____spec__1(x_2, x_3, x_1); return x_4; diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c index b02f853435..2dfb7d0f91 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c @@ -17,6 +17,7 @@ lean_object* l_Lean_Meta_Simp_simp_simpLet___closed__1; lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_reduce___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_bindingInfo_x21(lean_object*); lean_object* l_Lean_Meta_Simp_DefaultMethods_methods___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_dsimp___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_unfold_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_replaceTargetDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -118,7 +119,6 @@ lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_mkCongr_ma lean_object* l_Lean_Meta_withIncRecDepth___at___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_dsimp___spec__13___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_reduceProjFn_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_replace___at_Lean_Meta_Simp_simp_cacheResult___spec__6(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f___lambda__6___closed__1; lean_object* l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -190,6 +190,7 @@ lean_object* l_Lean_Meta_transform___at___private_Lean_Meta_Tactic_Simp_Main_0__ lean_object* l_Lean_Meta_Simp_DefaultMethods_methods___closed__2; lean_object* l_Lean_Meta_Simp_simp_simpConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_unfold_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6; lean_object* l_Lean_Meta_Simp_simp___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Simp_CongrLemmas___hyg_1525____closed__1; @@ -211,7 +212,6 @@ lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f_match__3(lean_object*); extern lean_object* l_instReprBool___closed__3; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_instInhabited___rarg(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6; lean_object* l_Lean_ConstantInfo_name(lean_object*); lean_object* l_Lean_Meta_Simp_simp_simpLet_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_simp_simpForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -19545,7 +19545,7 @@ x_12 = lean_ctor_get(x_10, 0); x_13 = lean_ctor_get(x_10, 1); x_14 = lean_ctor_get(x_12, 0); lean_inc(x_14); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; x_16 = l_Lean_Expr_isConstOf(x_14, x_15); lean_dec(x_14); if (x_16 == 0) @@ -19678,7 +19678,7 @@ lean_inc(x_41); lean_dec(x_10); x_43 = lean_ctor_get(x_41, 0); lean_inc(x_43); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; x_45 = l_Lean_Expr_isConstOf(x_43, x_44); lean_dec(x_43); if (x_45 == 0) @@ -19908,7 +19908,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } @@ -19957,7 +19957,7 @@ x_16 = lean_ctor_get(x_14, 0); x_17 = lean_ctor_get(x_14, 1); x_18 = lean_ctor_get(x_16, 0); lean_inc(x_18); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; x_20 = l_Lean_Expr_isConstOf(x_18, x_19); if (x_20 == 0) { @@ -20254,7 +20254,7 @@ lean_inc(x_78); lean_dec(x_14); x_80 = lean_ctor_get(x_78, 0); lean_inc(x_80); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; x_82 = l_Lean_Expr_isConstOf(x_80, x_81); if (x_82 == 0) { diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c index 06474f2d80..6cb5ad1945 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c @@ -14,6 +14,7 @@ extern "C" { #endif uint8_t l_Lean_Meta_Simp_rewrite_inErasedSet(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; size_t l_USize_add(size_t, size_t); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withNewMCtxDepthImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); @@ -60,7 +61,6 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Meta_Simp_synthesizeArgs_synthesizeInstance___closed__5; lean_object* l_Lean_Meta_Simp_rewrite_tryLemma_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isClass_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Simp_synthesizeArgs___spec__1___closed__4; lean_object* l_Lean_Expr_appArg_x21(lean_object*); uint8_t lean_expr_lt(lean_object*, lean_object*); @@ -6853,7 +6853,7 @@ x_8 = l_Lean_Expr_hasMVar(x_1); if (x_8 == 0) { lean_object* x_9; uint8_t x_10; -x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; +x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; x_10 = l_Lean_Expr_isConstOf(x_1, x_9); if (x_10 == 0) { diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c index 39f6d896ad..c484417ada 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c @@ -14,6 +14,7 @@ extern "C" { #endif lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Simp_SimpLemmas___hyg_2179____spec__1(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_addSimpLemmaEntry___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ScopedEnvExtension_modifyState___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); @@ -98,7 +99,6 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Tactic_Simp_SimpLem lean_object* l_List_mapM___at___private_Lean_Meta_Tactic_Simp_SimpLemmas_0__Lean_Meta_preprocess___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkSimpLemmas(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_addSimpLemmaEntry___spec__12(lean_object*, lean_object*, size_t, size_t); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; lean_object* l_Lean_Meta_SimpLemmas_erase___rarg___closed__1; lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -6120,7 +6120,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } diff --git a/stage0/stdlib/Lean/MonadEnv.c b/stage0/stdlib/Lean/MonadEnv.c index 5cbadf7d77..047154a6e9 100644 --- a/stage0/stdlib/Lean/MonadEnv.c +++ b/stage0/stdlib/Lean/MonadEnv.c @@ -72,7 +72,6 @@ lean_object* l_Lean_matchConstRec___rarg___lambda__1(lean_object*, lean_object*, lean_object* l_Lean_compileDecl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConstWithLevelParams___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isInductive_match__1(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__20; lean_object* l_Lean_setEnv(lean_object*); lean_object* l_Lean_hasConst___rarg(lean_object*, lean_object*, lean_object*); @@ -202,6 +201,7 @@ lean_object* l_Lean_matchConstStruct(lean_object*, lean_object*); lean_object* l_Lean_getConstInfoRec___rarg___lambda__1___closed__2; lean_object* l_Lean_findModuleOf_x3f___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_FindImpl_findM_x3f_visit(lean_object*, size_t, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_object* l_Lean_getConstInfoRec___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isInductivePredicate_visit_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*); @@ -2193,7 +2193,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -2221,7 +2221,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__5; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -2231,7 +2231,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_8668____closed__4; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -2281,7 +2281,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_10540____closed__4; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Parser.c b/stage0/stdlib/Lean/Parser.c index 9650c27042..99ee84bbf2 100644 --- a/stage0/stdlib/Lean/Parser.c +++ b/stage0/stdlib/Lean/Parser.c @@ -18,6 +18,7 @@ lean_object* l_Lean_ParserCompiler_CombinatorAttribute_runDeclFor___rarg(lean_ob lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__10(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__35; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_strLit_parenthesizer(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_first___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_ident_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_charLit_parenthesizer___closed__1; @@ -155,7 +156,6 @@ lean_object* l_Lean_Parser_Term_ident_parenthesizer(lean_object*, lean_object*, extern lean_object* l_Lean_PrettyPrinter_combinatorParenthesizerAttribute; extern lean_object* l_Lean_Parser_tokenWithAntiquotFn___lambda__2___closed__4; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__2; -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__9(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -173,6 +173,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr_match__1___ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4_(lean_object*); extern lean_object* l_Lean_Parser_instAndThenParser___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_scientificLit_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_Tactic_first___closed__6; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__34; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -208,7 +209,6 @@ lean_object* l_Lean_Parser_many1(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_ident_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__8; extern lean_object* l_Lean_Parser_leadingNode_formatter___closed__2; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__26; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -693,7 +693,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_Tactic_firstNew___closed__8; +x_39 = l_Lean_Parser_Tactic_first___closed__8; x_40 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__17; x_41 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_39, x_40, x_38); if (lean_obj_tag(x_41) == 0) @@ -756,7 +756,7 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; x_66 = lean_ctor_get(x_65, 1); lean_inc(x_66); lean_dec(x_65); -x_67 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_67 = l_Lean_Parser_Tactic_first___closed__6; x_68 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__31; x_69 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_67, x_68, x_66); if (lean_obj_tag(x_69) == 0) diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 36ab48d608..1f51415278 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -2000,6 +2000,7 @@ lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__19; lean_object* l_Lean_Parser_Command_openOnly___closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__1; lean_object* l_Lean_Parser_Command_declValEqns___closed__6; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__8; @@ -2221,6 +2222,7 @@ lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__1; extern lean_object* l_term_x5b___x5d___closed__5; extern lean_object* l_Lean_Parser_numLit; extern lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__14; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; lean_object* l___regBuiltin_Lean_Parser_Command_end_formatter(lean_object*); lean_object* l_Lean_Parser_Command_structSimpleBinder_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_Term_leftArrow; @@ -2446,7 +2448,6 @@ lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9; lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__16; extern lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_declId___closed__7; @@ -2506,7 +2507,6 @@ lean_object* l_Lean_Parser_Command_openRenaming___closed__8; lean_object* l_Lean_Parser_Command_inductive___closed__12; extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__2; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__5; @@ -2526,6 +2526,7 @@ lean_object* l_Lean_Parser_Command_export___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_declValSimple___closed__9; lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__7; lean_object* l_Lean_Parser_Command_inferMod_parenthesizer___closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9; lean_object* l_Lean_Parser_Command_openRenaming_formatter___closed__7; lean_object* l_Lean_Parser_Command_structure___closed__4; lean_object* l_Lean_Parser_Command_printAxioms___closed__2; @@ -2547,7 +2548,6 @@ lean_object* l_Lean_Parser_Command_declValSimple___closed__8; lean_object* l_Lean_Parser_Command_declModifiers___closed__12; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_attribute___closed__8; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; lean_object* l_Lean_Parser_Command_structureTk___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__14; lean_object* l_Lean_Parser_Command_open___elambda__1(lean_object*, lean_object*); @@ -35952,7 +35952,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -35971,7 +35971,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -36438,7 +36438,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2; x_3 = 1; x_4 = lean_box(x_3); @@ -36584,7 +36584,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2; x_3 = 1; x_4 = lean_box(x_3); @@ -44487,7 +44487,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -46435,7 +46435,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -46454,7 +46454,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -46882,7 +46882,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2; x_3 = 1; x_4 = lean_box(x_3); @@ -46988,7 +46988,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option_parenthesizer___closed_ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2; x_3 = 1; x_4 = lean_box(x_3); @@ -47702,7 +47702,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -47712,7 +47712,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -47771,7 +47771,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -47879,7 +47879,7 @@ goto block_50; block_26: { lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_22 = l_Lean_Parser_ParserState_mkNode(x_20, x_21, x_14); x_23 = lean_ctor_get(x_22, 4); lean_inc(x_23); @@ -48065,7 +48065,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_2 = l_Lean_Parser_Tactic_set__option___closed__4; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -48136,7 +48136,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_set__option; x_6 = lean_unsigned_to_nat(1000u); @@ -48148,7 +48148,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_formatter___closed__1 _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -48211,7 +48211,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_formatter___closed__6 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Tactic_set__option_formatter___closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -48244,7 +48244,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_4 = l___regBuiltin_Lean_Parser_Tactic_set__option_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -48254,7 +48254,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -48317,7 +48317,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Tactic_set__option_parenthesizer___closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -48350,7 +48350,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2; x_4 = l___regBuiltin_Lean_Parser_Tactic_set__option_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; diff --git a/stage0/stdlib/Lean/Parser/Do.c b/stage0/stdlib/Lean/Parser/Do.c index 928c5b4d2d..17f7c82b89 100644 --- a/stage0/stdlib/Lean/Parser/Do.c +++ b/stage0/stdlib/Lean/Parser/Do.c @@ -1095,6 +1095,7 @@ lean_object* l_Lean_Parser_Term_doIf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_liftMethod___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_doBreak___closed__4; lean_object* l_Lean_Parser_Term_termUnless___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; lean_object* l_Lean_Parser_Term_doDbgTrace___closed__7; lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_doDbgTrace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1267,7 +1268,6 @@ lean_object* l_Lean_Parser_Term_doLetArrow___closed__7; lean_object* l_Lean_Parser_Term_doElem_quot___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_termFor_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_doBreak; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; lean_object* l_Lean_Parser_Term_termTry___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_doNested_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__3; @@ -1359,7 +1359,6 @@ lean_object* l_Lean_Parser_Term_doFor___closed__3; lean_object* l_Lean_Parser_Term_doBreak_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_doIf_formatter___closed__4; lean_object* l_Lean_Parser_Term_doIfLetBind; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; lean_object* l_Lean_Parser_Term_doIfLet___closed__7; lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_epsilonInfo; @@ -1601,6 +1600,7 @@ lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__18; lean_object* l_Lean_Parser_Term_doNested___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_doUnless___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__13; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_object* l_Lean_Parser_Term_leftArrow___closed__1; lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__39; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__6; @@ -5493,7 +5493,7 @@ static lean_object* _init_l_Lean_Parser_Term_notFollowedByRedefinedTermToken___e _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; x_2 = l_String_trim(x_1); return x_2; } @@ -5714,7 +5714,7 @@ static lean_object* _init_l_Lean_Parser_Term_notFollowedByRedefinedTermToken___e _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1; x_2 = l_String_trim(x_1); return x_2; } diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 5987cf0219..f5e3d56520 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -88,6 +88,7 @@ lean_object* l_Lean_Parser_Term_sufficesDecl_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_suffices(lean_object*); lean_object* l_Lean_Parser_Term_proj_formatter___closed__2; lean_object* l_Lean_Parser_Term_stateRefT___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; lean_object* l_Lean_Parser_Term_paren_formatter___closed__3; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_subst; @@ -125,7 +126,6 @@ lean_object* l_Lean_Parser_Term_letRecDecl_formatter(lean_object*, lean_object*, lean_object* l_Lean_Parser_Term_letrec_formatter___closed__9; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_explicit_formatter(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; lean_object* l_Lean_Parser_Term_noindex___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_trailing__parser___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_cdot___closed__2; @@ -171,7 +171,6 @@ lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__5; extern lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_sorry_formatter(lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_docComment___closed__3; lean_object* l_Lean_Parser_Term_ensureExpectedType; @@ -217,6 +216,7 @@ lean_object* l_Lean_Parser_Term_letRecDecls___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__17; lean_object* l_Lean_Parser_Term_attributes_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_matchAlt___closed__3; @@ -297,6 +297,7 @@ lean_object* l_Lean_Parser_Term_simpleBinder___closed__5; extern lean_object* l_Lean_Parser_leadPrec; lean_object* l_Lean_Parser_notFollowedByFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_trailing__parser___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_funBinder_quot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_funBinder_quot___closed__4; @@ -345,6 +346,7 @@ lean_object* l_Lean_Parser_Term_attributes_formatter___closed__6; lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_proj___closed__10; lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__10; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; lean_object* l_Lean_Parser_Term_unreachable___closed__6; lean_object* l_Lean_Parser_Term_letRecDecl___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_let_formatter___closed__7; @@ -446,6 +448,7 @@ lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__21; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__15; lean_object* l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; lean_object* l_Lean_Parser_Term_inaccessible___closed__4; lean_object* l_Lean_Parser_Term_trueVal___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_match_formatter___closed__3; @@ -547,6 +550,7 @@ lean_object* l_Lean_Parser_Term_letrec_formatter___closed__3; lean_object* l_Lean_Parser_Term_subst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__17; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_Lean_Parser_Term_letPatDecl___closed__2; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4190____closed__23; lean_object* l_Lean_Parser_Term_haveDecl___closed__9; @@ -938,7 +942,6 @@ 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*); lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__3; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; lean_object* l_Lean_Parser_Term_hole___closed__5; lean_object* l_Lean_Parser_Term_optEllipsis___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_fun_parenthesizer(lean_object*); @@ -949,10 +952,8 @@ lean_object* l_Lean_Parser_Term_funBinder; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__5; lean_object* l_Lean_Parser_unicodeSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_trueVal___elambda__1___closed__8; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l_Lean_Parser_Term_attr_quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_instBinder___closed__3; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4190____closed__4; @@ -970,7 +971,6 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__10; lean_object* l_Lean_Parser_atomicFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_commentBody___closed__1; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__18; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; lean_object* l_Lean_Parser_Term_funBinder_quot___closed__2; lean_object* l_Lean_Parser_Term_assert_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__3; @@ -1020,6 +1020,7 @@ lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l_Lean_Parser_checkPrecFn___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_binop_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__9; lean_object* l_Lean_Parser_Term_sorry___closed__1; @@ -1057,7 +1058,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_arrow_formatter(lean_object*); lean_object* l_Lean_Parser_Term_instBinder___closed__7; lean_object* l_Lean_Parser_Command_docComment___closed__2; lean_object* l_Lean_Parser_Term_explicit___closed__8; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter___closed__4; lean_object* l_Lean_Parser_Term_pipeCompletion___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_quotedName_formatter___closed__1; @@ -1082,6 +1082,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_bracketedBinder_quot_formatter___closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; lean_object* l_Lean_Parser_Term_binderType(uint8_t); lean_object* l_Lean_Parser_Term_pipeCompletion___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__13; @@ -1113,6 +1114,7 @@ lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer(lean_object*, lean_object extern lean_object* l_instReprBool___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forInMacro_parenthesizer___closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__12; lean_object* l_Lean_Parser_Tactic_tacticSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkStackTop_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1186,7 +1188,6 @@ lean_object* l_Lean_Parser_Term_optEllipsis___closed__2; lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; lean_object* l_Lean_Parser_Term_stateRefT_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__15; @@ -1305,7 +1306,6 @@ lean_object* l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_depArrow___closed__8; lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_completion___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_sorry(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___closed__4; lean_object* l_Lean_Parser_Term_whereDecls___closed__2; @@ -1712,8 +1712,10 @@ lean_object* l_Lean_Parser_Term_dynamicQuot___closed__7; lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_optEllipsis_formatter___closed__4; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2; lean_object* l_Lean_Parser_Term_proj___closed__9; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__33; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; lean_object* l_Lean_Parser_Term_attributes_formatter___closed__4; lean_object* l_Lean_Parser_Term_parenSpecial___closed__3; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; @@ -1754,6 +1756,7 @@ lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_scoped_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; lean_object* l_Lean_Parser_Term_bracketedBinder_quot___closed__3; lean_object* l_Lean_Parser_Term_haveAssign___closed__7; lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__2; @@ -1868,6 +1871,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom(lean_object*, lean_object* lean_object* l___regBuiltin_Lean_Parser_Term_prop_formatter___closed__1; lean_object* l_Lean_Parser_Term_whereDecls___closed__7; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__10; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__4; @@ -1889,6 +1893,7 @@ extern lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__3; lean_object* l_Lean_Parser_Term_forInMacro_formatter___closed__1; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; extern lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_type_formatter___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___closed__3; @@ -2016,6 +2021,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer(le lean_object* l_Lean_Parser_Term_panic___closed__4; lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__9; lean_object* l___regBuiltin_Lean_Parser_Term_matchDiscr_quot_formatter(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; 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_attr_quot___closed__7; @@ -2029,9 +2035,9 @@ lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_tupleTail_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; lean_object* l_Lean_Parser_Term_funImplicitBinder_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_argPrec; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; lean_object* l_Lean_Parser_Term_fromTerm_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_letRecDecls_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2074,7 +2080,6 @@ lean_object* l_Lean_Parser_Term_syntheticHole___closed__6; lean_object* l_Lean_Parser_Term_inaccessible___closed__6; lean_object* l_Lean_Parser_Term_structInst___closed__5; lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__1; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2; lean_object* l_Lean_Parser_Term_typeOf_formatter___closed__3; lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___closed__7; @@ -2197,7 +2202,6 @@ lean_object* l_Lean_Parser_Term_attr_quot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__21; lean_object* l___regBuiltin_Lean_Parser_Term_unreachable_formatter(lean_object*); lean_object* l_Lean_Parser_Term_pipeProj_parenthesizer___closed__3; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4; lean_object* l_Lean_Parser_Term_forInMacro___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__18; @@ -2282,6 +2286,7 @@ lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_trailing__parser_formatter(lean_object*); lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__5; lean_object* l_Lean_Parser_Term_fromTerm___closed__7; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4; lean_object* l_Lean_Parser_Term_forInMacro_formatter___closed__2; lean_object* l_Lean_Parser_Term_dynamicQuot___closed__10; lean_object* l_Lean_Parser_Term_trueVal___elambda__1___closed__12; @@ -2414,7 +2419,6 @@ extern lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__15; lean_object* l_Lean_Parser_Term_let__fun___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_formatter___closed__1; lean_object* l_Lean_Parser_Term_haveDecl___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l_Lean_Parser_Term_sufficesDecl___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_argument___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_letDecl___closed__9; @@ -2723,6 +2727,7 @@ lean_object* l_Lean_Parser_Term_generalizingParam___closed__7; lean_object* l_Lean_Parser_Term_unreachable___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_binderIdent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_pushNone___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; @@ -2898,7 +2903,6 @@ lean_object* l_Lean_Parser_Term_macroDollarArg___closed__7; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_dynamicQuot___closed__6; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__9; lean_object* l_Lean_Parser_sepBy1(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__5; @@ -3000,6 +3004,7 @@ lean_object* l_Lean_Parser_Term_fromTerm___closed__4; extern lean_object* l_Lean_Name_instReprName___closed__1; lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__5; lean_object* l_Lean_Parser_Tactic_quot___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; lean_object* l_Lean_Parser_Term_falseVal___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_paren___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___elambda__1___closed__6; @@ -3025,7 +3030,6 @@ lean_object* l_Lean_Parser_Term_ident___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_inaccessible_formatter___closed__1; lean_object* l_Lean_Parser_Term_binderTactic___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; lean_object* l_Lean_Parser_Term_forall___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_funBinder_quot___closed__7; @@ -3111,7 +3115,6 @@ lean_object* l_Lean_Parser_Term_attrKind___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal___closed__4; lean_object* l_Lean_Parser_Term_macroArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlt(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4; lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_depArrow_formatter___closed__3; @@ -3136,7 +3139,6 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__25; lean_object* l_Lean_Parser_Tactic_quot___closed__8; lean_object* l_Lean_Parser_Term_subst___elambda__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; lean_object* l_Lean_Parser_Term_binderType___boxed(lean_object*); lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__22; lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__4; @@ -3185,7 +3187,6 @@ lean_object* l_Lean_Parser_Level_quot; lean_object* l_Lean_Parser_Term_anonymousCtor_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrKind_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__4; lean_object* l_Lean_Parser_Term_attr_quot___elambda__1(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__4; @@ -3335,6 +3336,7 @@ lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__2; lean_object* l_Lean_Parser_Term_falseVal___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_quot___closed__4; lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInst___closed__13; lean_object* l_Lean_Parser_Term_ellipsis___elambda__1___closed__2; @@ -3526,6 +3528,7 @@ lean_object* l_Lean_Parser_Term_pipeCompletion___closed__1; lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__8; extern lean_object* l_Lean_Parser_optional___closed__2; lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_syntheticHole_formatter___closed__1; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__5; @@ -3552,6 +3555,7 @@ extern lean_object* l_Lean_Parser_Tactic_letrec___closed__8; lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_match___closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; lean_object* l_Lean_Parser_Term_forall___closed__8; lean_object* l_Lean_Parser_Term_local_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_fromTerm___closed__6; @@ -3583,7 +3587,6 @@ lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4190____closed__16; lean_object* l_Lean_Parser_Term_trueVal_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_dynamicQuot_parenthesizer(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letIdDecl___closed__7; lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4; @@ -3715,7 +3718,6 @@ lean_object* l_Lean_Parser_Term_optEllipsis___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_forInMacro___closed__6; lean_object* l_Lean_Parser_Term_typeSpec___closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; lean_object* l_Lean_Parser_Term_app___closed__6; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_letRecDecl_formatter___closed__6; @@ -3966,6 +3968,7 @@ lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_let__fun_parenthesizer___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_pipeCompletion(lean_object*); lean_object* l_Lean_Parser_Term_have_formatter___closed__8; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__1; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__2; @@ -4012,6 +4015,7 @@ lean_object* l_Lean_Parser_Term_forall___closed__5; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__6; lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; lean_object* l_Lean_Parser_Term_letIdDecl___closed__4; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4190____closed__6; lean_object* l_Lean_Parser_Term_binop___elambda__1___closed__1; @@ -4032,7 +4036,6 @@ lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Term_funBinder___closed__2; lean_object* l_Lean_Parser_Term_basicFun_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr_quot___elambda__1___closed__11; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__1; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr_quot___closed__6; @@ -4043,6 +4046,7 @@ lean_object* l_Lean_Parser_Term_structInstFieldAbbrev_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_match_formatter___closed__10; lean_object* l_Lean_Parser_Term_scientific___closed__1; lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_dbgTrace___closed__10; lean_object* l_Lean_Parser_Term_letRecDecls___closed__1; @@ -4066,6 +4070,7 @@ lean_object* l_Lean_Parser_Term_noindex_formatter(lean_object*, lean_object*, le lean_object* l_Lean_Parser_Term_attrInstance___closed__3; lean_object* l_Lean_Parser_Term_typeAscription___closed__6; lean_object* l_Lean_Parser_Term_panic_parenthesizer___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; lean_object* l_Lean_Parser_Term_trailing__parser___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__2; @@ -4346,7 +4351,6 @@ lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_sufficesDecl___closed__4; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9627____closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; lean_object* l_Lean_Parser_Term_noindex___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_leading__parser_formatter(lean_object*); lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__8; @@ -4401,6 +4405,7 @@ lean_object* l_Lean_Parser_Term_ensureTypeOf___closed__6; lean_object* l_Lean_Parser_Term_let__fun___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_optEllipsis___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_letRecDecl___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__16; @@ -4418,7 +4423,6 @@ lean_object* l_Lean_Parser_Term_binrel_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_generalizingParam___closed__8; lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_let__delayed_formatter(lean_object*); lean_object* l_Lean_Parser_Term_trailing__parser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4430,7 +4434,6 @@ lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__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_borrowed___elambda__1___closed__14; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_trueVal___elambda__1___closed__6; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_74_(lean_object*); @@ -4450,7 +4453,6 @@ lean_object* l_Lean_Parser_Term_depArrow_formatter___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_formatter___closed__1; lean_object* l_Lean_Parser_Term_dbgTrace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_pipeCompletion_formatter(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInstFieldAbbrev___closed__1; lean_object* l_Lean_Parser_Term_matchAlt___closed__6; @@ -4595,7 +4597,6 @@ lean_object* l_Lean_Parser_Term_falseVal___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_attrKind___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_num_formatter(lean_object*); lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__3; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; lean_object* l_Lean_Parser_Term_ensureExpectedType_formatter___closed__1; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__9; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__14; @@ -4621,7 +4622,6 @@ lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___boxed(lean_object lean_object* l_Lean_Parser_Term_instBinder___closed__6; lean_object* l_Lean_Parser_Term_dynamicQuot___closed__2; lean_object* l_Lean_Parser_Term_bracketedBinder_quot_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; lean_object* l_Lean_Parser_Term_let__fun_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_trueVal; @@ -5380,7 +5380,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -5390,7 +5390,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4; x_2 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -5607,7 +5607,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_2 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__21; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -5710,7 +5710,7 @@ lean_ctor_set(x_26, 5, x_25); lean_ctor_set(x_26, 6, x_21); lean_ctor_set_uint8(x_26, sizeof(void*)*7, x_20); x_27 = lean_apply_2(x_15, x_26, x_7); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_29 = l_Lean_Parser_ParserState_mkNode(x_27, x_28, x_12); x_30 = lean_ctor_get(x_29, 4); lean_inc(x_30); @@ -5760,7 +5760,7 @@ lean_ctor_set(x_40, 5, x_39); lean_ctor_set(x_40, 6, x_21); lean_ctor_set_uint8(x_40, sizeof(void*)*7, x_20); x_41 = lean_apply_2(x_15, x_40, x_7); -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_43 = l_Lean_Parser_ParserState_mkNode(x_41, x_42, x_12); x_44 = lean_ctor_get(x_43, 4); lean_inc(x_44); @@ -5835,7 +5835,7 @@ lean_ctor_set(x_59, 5, x_58); lean_ctor_set(x_59, 6, x_21); lean_ctor_set_uint8(x_59, sizeof(void*)*7, x_20); x_60 = lean_apply_2(x_15, x_59, x_7); -x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_62 = l_Lean_Parser_ParserState_mkNode(x_60, x_61, x_12); x_63 = lean_ctor_get(x_62, 4); lean_inc(x_63); @@ -5873,7 +5873,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__20; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } @@ -6510,7 +6510,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_case___closed__10; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_3 = l_Lean_Parser_Tactic_tacticSeq___closed__3; x_4 = 0; x_5 = l_Lean_Parser_nodeWithAntiquot(x_1, x_2, x_3, x_4); @@ -6607,7 +6607,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = lean_apply_2(x_4, x_1, x_2); -x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_9 = l_Lean_Parser_ParserState_mkNode(x_7, x_8, x_6); return x_9; } @@ -6619,7 +6619,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_seq1___elambda__1___closed__7; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } @@ -6763,7 +6763,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -6773,7 +6773,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1; x_2 = l_Lean_Parser_Term_byTactic___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -6845,7 +6845,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__9() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_2 = l_Lean_Parser_Term_byTactic___elambda__1___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -6991,7 +6991,7 @@ if (x_22 == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_dec(x_4); -x_23 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_23 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_24 = l_Lean_Parser_ParserState_mkNode(x_20, x_23, x_14); x_25 = lean_ctor_get(x_24, 4); lean_inc(x_25); @@ -7015,7 +7015,7 @@ else lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_inc(x_1); x_28 = lean_apply_2(x_4, x_1, x_20); -x_29 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_29 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_14); x_31 = lean_ctor_get(x_30, 4); lean_inc(x_31); @@ -7073,7 +7073,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_2 = l_Lean_Parser_Term_byTactic___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -7144,7 +7144,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_byTactic; x_6 = lean_unsigned_to_nat(1000u); @@ -7359,7 +7359,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented_formatter___cl _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4; x_2 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -7384,7 +7384,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented_formatter___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Tactic_tacticSeq1Indented_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -7437,7 +7437,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; x_6 = l_Lean_Parser_Tactic_case___closed__10; -x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_8 = l_Lean_Parser_Tactic_tacticSeq_formatter___closed__3; x_9 = 0; x_10 = l_Lean_Parser_nodeWithAntiquot_formatter(x_6, x_7, x_8, x_9, x_1, x_2, x_3, x_4, x_5); @@ -7448,7 +7448,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1; x_2 = l_Lean_Parser_Term_byTactic___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -7493,7 +7493,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_byTactic_formatter___closed__4; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -7526,7 +7526,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_byTactic_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -7724,7 +7724,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented_parenthesizer_ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__4; x_2 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -7749,7 +7749,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented_parenthesizer_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Tactic_tacticSeq1Indented_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -7802,7 +7802,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; x_6 = l_Lean_Parser_Tactic_case___closed__10; -x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_8 = l_Lean_Parser_Tactic_tacticSeq_parenthesizer___closed__3; x_9 = 0; x_10 = l_Lean_Parser_nodeWithAntiquot_parenthesizer(x_6, x_7, x_8, x_9, x_1, x_2, x_3, x_4, x_5); @@ -7813,7 +7813,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__1( _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1; x_2 = l_Lean_Parser_Term_byTactic___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -7858,7 +7858,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__5( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__4; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -7891,7 +7891,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -10830,7 +10830,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -10840,7 +10840,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4; x_2 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -10875,7 +10875,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_2 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -11006,7 +11006,7 @@ lean_dec(x_19); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_22 = l_Lean_Parser_ParserState_mkNode(x_18, x_21, x_12); x_23 = lean_ctor_get(x_22, 4); lean_inc(x_23); @@ -11033,7 +11033,7 @@ x_27 = l_Lean_Parser_Term_hole___closed__5; x_28 = 1; lean_inc(x_1); x_29 = l_Lean_Parser_orelseFnCore(x_26, x_27, x_28, x_1, x_18); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_31 = l_Lean_Parser_ParserState_mkNode(x_29, x_30, x_12); x_32 = lean_ctor_get(x_31, 4); lean_inc(x_32); @@ -11093,7 +11093,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_2 = l_Lean_Parser_Term_syntheticHole___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -11164,7 +11164,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_4 = 1; x_5 = l_Lean_Parser_Term_syntheticHole; x_6 = lean_unsigned_to_nat(1000u); @@ -11176,7 +11176,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole_formatter___closed__1 _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4; x_2 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -11215,7 +11215,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole_formatter___closed__4 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_syntheticHole_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -11248,7 +11248,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_4 = l___regBuiltin_Lean_Parser_Term_syntheticHole_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -11258,7 +11258,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__4; x_2 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -11297,7 +11297,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -11330,7 +11330,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_4 = l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -11340,7 +11340,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -11350,7 +11350,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -11361,7 +11361,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_2 = l_String_trim(x_1); return x_2; } @@ -11390,7 +11390,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -11486,7 +11486,7 @@ lean_dec(x_16); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_19 = l_Lean_Parser_ParserState_mkNode(x_15, x_18, x_12); x_20 = lean_ctor_get(x_19, 4); lean_inc(x_20); @@ -11519,7 +11519,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean x_26 = lean_box(0); lean_inc(x_1); x_27 = l_Lean_Parser_Level_paren___elambda__1___lambda__1(x_15, x_1, x_9, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_29 = l_Lean_Parser_ParserState_mkNode(x_27, x_28, x_12); x_30 = lean_ctor_get(x_29, 4); lean_inc(x_30); @@ -11541,7 +11541,7 @@ return x_32; else { lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_34 = l_Lean_Parser_ParserState_mkNode(x_15, x_33, x_12); x_35 = lean_ctor_get(x_34, 4); lean_inc(x_35); @@ -11586,7 +11586,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_2 = l_Lean_Parser_Term_sorry___closed__1; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -11657,7 +11657,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_sorry; x_6 = lean_unsigned_to_nat(1000u); @@ -11669,7 +11669,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -11684,7 +11684,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -11694,7 +11694,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_sorry_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -11727,7 +11727,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_sorry_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -11737,7 +11737,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -11752,7 +11752,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -11762,7 +11762,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_sorry_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -11795,7 +11795,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -15392,7 +15392,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -15402,7 +15402,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -15462,7 +15462,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__8() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -15593,7 +15593,7 @@ lean_dec(x_19); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_22 = l_Lean_Parser_ParserState_mkNode(x_18, x_21, x_12); x_23 = lean_ctor_get(x_22, 4); lean_inc(x_23); @@ -15619,7 +15619,7 @@ x_26 = l_term___u2218_____closed__6; x_27 = lean_unsigned_to_nat(0u); lean_inc(x_1); x_28 = l_Lean_Parser_categoryParser___elambda__1(x_26, x_27, x_1, x_18); -x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_12); x_31 = lean_ctor_get(x_30, 4); lean_inc(x_31); @@ -15676,7 +15676,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_2 = l_Lean_Parser_Term_fromTerm___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -15746,7 +15746,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__1 _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -15756,7 +15756,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__2 _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -15808,7 +15808,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__7 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -15939,7 +15939,7 @@ lean_dec(x_19); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_22 = l_Lean_Parser_ParserState_mkNode(x_18, x_21, x_12); x_23 = lean_ctor_get(x_22, 4); lean_inc(x_23); @@ -15965,7 +15965,7 @@ x_26 = l_term___u2218_____closed__6; x_27 = lean_unsigned_to_nat(0u); lean_inc(x_1); x_28 = l_Lean_Parser_categoryParser___elambda__1(x_26, x_27, x_1, x_18); -x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_12); x_31 = lean_ctor_get(x_30, 4); lean_inc(x_31); @@ -16022,7 +16022,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_2 = l_Lean_Parser_Term_haveAssign___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -16092,7 +16092,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -16163,7 +16163,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl___elambda__1___closed__7() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_2 = l_Lean_Parser_Term_haveDecl___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -16241,7 +16241,7 @@ lean_dec(x_16); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_19 = l_Lean_Parser_ParserState_mkNode(x_15, x_18, x_14); x_20 = lean_ctor_get(x_19, 4); lean_inc(x_20); @@ -16274,7 +16274,7 @@ lean_dec(x_26); if (x_27 == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_29 = l_Lean_Parser_ParserState_mkNode(x_25, x_28, x_14); x_30 = lean_ctor_get(x_29, 4); lean_inc(x_30); @@ -16301,7 +16301,7 @@ x_34 = l_Lean_Parser_Term_haveDecl___elambda__1___closed__3; x_35 = 1; lean_inc(x_1); x_36 = l_Lean_Parser_orelseFnCore(x_33, x_34, x_35, x_1, x_25); -x_37 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_37 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_38 = l_Lean_Parser_ParserState_mkNode(x_36, x_37, x_14); x_39 = lean_ctor_get(x_38, 4); lean_inc(x_39); @@ -16388,7 +16388,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_2 = l_Lean_Parser_Term_haveDecl___closed__4; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -16851,7 +16851,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -16861,7 +16861,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -16914,7 +16914,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -17102,7 +17102,7 @@ if (x_34 == 0) { lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_dec(x_4); -x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_36 = l_Lean_Parser_ParserState_mkNode(x_32, x_35, x_14); x_37 = lean_ctor_get(x_36, 4); lean_inc(x_37); @@ -17126,7 +17126,7 @@ else lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_inc(x_1); x_40 = lean_apply_2(x_4, x_1, x_32); -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_14); x_43 = lean_ctor_get(x_42, 4); lean_inc(x_43); @@ -17242,7 +17242,7 @@ if (x_70 == 0) { lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; lean_dec(x_4); -x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_72 = l_Lean_Parser_ParserState_mkNode(x_68, x_71, x_14); x_73 = lean_ctor_get(x_72, 4); lean_inc(x_73); @@ -17266,7 +17266,7 @@ else lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; lean_inc(x_1); x_76 = lean_apply_2(x_4, x_1, x_68); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_78 = l_Lean_Parser_ParserState_mkNode(x_76, x_77, x_14); x_79 = lean_ctor_get(x_78, 4); lean_inc(x_79); @@ -17407,7 +17407,7 @@ if (x_111 == 0) { lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_dec(x_4); -x_112 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_112 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_113 = l_Lean_Parser_ParserState_mkNode(x_109, x_112, x_14); x_114 = lean_ctor_get(x_113, 4); lean_inc(x_114); @@ -17431,7 +17431,7 @@ else lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_inc(x_1); x_117 = lean_apply_2(x_4, x_1, x_109); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_119 = l_Lean_Parser_ParserState_mkNode(x_117, x_118, x_14); x_120 = lean_ctor_get(x_119, 4); lean_inc(x_120); @@ -17502,7 +17502,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_2 = l_Lean_Parser_Term_have___closed__3; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -17582,7 +17582,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_4 = 1; x_5 = l_Lean_Parser_Term_have; x_6 = lean_unsigned_to_nat(1000u); @@ -17625,7 +17625,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -17662,7 +17662,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_formatter___closed__4() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveAssign_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -17686,7 +17686,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -17723,7 +17723,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm_formatter___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_fromTerm_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -17834,7 +17834,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveDecl_formatter___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -17874,7 +17874,7 @@ static lean_object* _init_l_Lean_Parser_Term_have_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -17951,7 +17951,7 @@ static lean_object* _init_l_Lean_Parser_Term_have_formatter___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_have_formatter___closed__7; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -17984,7 +17984,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_4 = l___regBuiltin_Lean_Parser_Term_have_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -18025,7 +18025,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -18062,7 +18062,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveAssign_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -18086,7 +18086,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm_parenthesizer___closed__1( _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -18123,7 +18123,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm_parenthesizer___closed__4( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_fromTerm_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -18234,7 +18234,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl_parenthesizer___closed__9( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveDecl_parenthesizer___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -18271,7 +18271,7 @@ static lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -18348,7 +18348,7 @@ static lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_have_parenthesizer___closed__7; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -18381,7 +18381,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3; x_4 = l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -19110,7 +19110,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -19120,7 +19120,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -19164,7 +19164,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___elambda__1___closed__6() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -19352,7 +19352,7 @@ if (x_34 == 0) { lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_dec(x_4); -x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_32, x_35, x_14); x_37 = lean_ctor_get(x_36, 4); lean_inc(x_37); @@ -19376,7 +19376,7 @@ else lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_inc(x_1); x_40 = lean_apply_2(x_4, x_1, x_32); -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_14); x_43 = lean_ctor_get(x_42, 4); lean_inc(x_43); @@ -19492,7 +19492,7 @@ if (x_70 == 0) { lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; lean_dec(x_4); -x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_72 = l_Lean_Parser_ParserState_mkNode(x_68, x_71, x_14); x_73 = lean_ctor_get(x_72, 4); lean_inc(x_73); @@ -19516,7 +19516,7 @@ else lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; lean_inc(x_1); x_76 = lean_apply_2(x_4, x_1, x_68); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_78 = l_Lean_Parser_ParserState_mkNode(x_76, x_77, x_14); x_79 = lean_ctor_get(x_78, 4); lean_inc(x_79); @@ -19657,7 +19657,7 @@ if (x_111 == 0) { lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_dec(x_4); -x_112 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_112 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_113 = l_Lean_Parser_ParserState_mkNode(x_109, x_112, x_14); x_114 = lean_ctor_get(x_113, 4); lean_inc(x_114); @@ -19681,7 +19681,7 @@ else lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_inc(x_1); x_117 = lean_apply_2(x_4, x_1, x_109); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_119 = l_Lean_Parser_ParserState_mkNode(x_117, x_118, x_14); x_120 = lean_ctor_get(x_119, 4); lean_inc(x_120); @@ -19752,7 +19752,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_2 = l_Lean_Parser_Term_suffices___closed__3; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -19832,7 +19832,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_suffices; x_6 = lean_unsigned_to_nat(1000u); @@ -19907,7 +19907,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -19974,7 +19974,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices_formatter___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_suffices_formatter___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -20007,7 +20007,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_suffices_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -20080,7 +20080,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__1( _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__1; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -20147,7 +20147,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__7( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_suffices_parenthesizer___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -20180,7 +20180,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -20190,7 +20190,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -20200,7 +20200,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -20252,7 +20252,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -20383,7 +20383,7 @@ lean_dec(x_19); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_22 = l_Lean_Parser_ParserState_mkNode(x_18, x_21, x_12); x_23 = lean_ctor_get(x_22, 4); lean_inc(x_23); @@ -20416,7 +20416,7 @@ lean_dec(x_29); if (x_30 == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_32 = l_Lean_Parser_ParserState_mkNode(x_28, x_31, x_12); x_33 = lean_ctor_get(x_32, 4); lean_inc(x_33); @@ -20443,7 +20443,7 @@ x_37 = l_Lean_Parser_Term_byTactic___closed__7; x_38 = 1; lean_inc(x_1); x_39 = l_Lean_Parser_orelseFnCore(x_36, x_37, x_38, x_1, x_28); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_41 = l_Lean_Parser_ParserState_mkNode(x_39, x_40, x_12); x_42 = lean_ctor_get(x_41, 4); lean_inc(x_42); @@ -20499,7 +20499,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_2 = l_Lean_Parser_Term_show___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -20570,7 +20570,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_show; x_6 = lean_unsigned_to_nat(1000u); @@ -20582,7 +20582,7 @@ static lean_object* _init_l_Lean_Parser_Term_show_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -20619,7 +20619,7 @@ static lean_object* _init_l_Lean_Parser_Term_show_formatter___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_show_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -20652,7 +20652,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_show_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -20662,7 +20662,7 @@ static lean_object* _init_l_Lean_Parser_Term_show_parenthesizer___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -20699,7 +20699,7 @@ static lean_object* _init_l_Lean_Parser_Term_show_parenthesizer___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_show_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -20732,7 +20732,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -32309,7 +32309,7 @@ static lean_object* _init_l_Lean_Parser_Term_falseVal___elambda__1___closed__5() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = l_String_trim(x_1); return x_2; } @@ -33828,7 +33828,7 @@ static lean_object* _init_l_Lean_Parser_Term_falseVal_formatter___closed__2() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = 0; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbol_formatter___boxed), 7, 2); @@ -34444,7 +34444,7 @@ static lean_object* _init_l_Lean_Parser_Term_falseVal_parenthesizer___closed__2( _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_2 = 0; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbol_parenthesizer___boxed), 7, 2); @@ -40755,7 +40755,7 @@ static lean_object* _init_l_Lean_Parser_Term_letDecl___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_2 = l_String_trim(x_1); return x_2; } @@ -40785,7 +40785,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_letDecl___closed__3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_notFollowedByFn___boxed), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -42304,7 +42304,7 @@ static lean_object* _init_l_Lean_Parser_Term_letDecl_formatter___closed__1() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_2 = 0; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbol_formatter___boxed), 7, 2); @@ -42757,7 +42757,7 @@ static lean_object* _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__1() _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3; x_2 = 0; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbol_parenthesizer___boxed), 7, 2); @@ -47183,7 +47183,7 @@ static lean_object* _init_l_Lean_Parser_Term_letRecDecls___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -47219,7 +47219,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_letRecDecls___elambda__1___closed__3; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_4, 0, x_3); lean_closure_set(x_4, 1, x_2); @@ -47289,7 +47289,7 @@ x_14 = lean_array_get_size(x_13); lean_dec(x_13); lean_inc(x_1); x_15 = lean_apply_2(x_4, x_1, x_9); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_17 = l_Lean_Parser_ParserState_mkNode(x_15, x_16, x_14); x_18 = lean_ctor_get(x_17, 4); lean_inc(x_18); @@ -47327,7 +47327,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_letRecDecls___elambda__1___closed__3; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } @@ -48209,7 +48209,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -48265,7 +48265,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_2 = l_Lean_Parser_Term_letrec___elambda__1___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -48433,7 +48433,7 @@ if (x_34 == 0) { lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_dec(x_4); -x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_32, x_35, x_14); x_37 = lean_ctor_get(x_36, 4); lean_inc(x_37); @@ -48457,7 +48457,7 @@ else lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_inc(x_1); x_40 = lean_apply_2(x_4, x_1, x_32); -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_14); x_43 = lean_ctor_get(x_42, 4); lean_inc(x_43); @@ -48681,7 +48681,7 @@ if (x_99 == 0) { lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_dec(x_4); -x_100 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_100 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_101 = l_Lean_Parser_ParserState_mkNode(x_97, x_100, x_14); x_102 = lean_ctor_get(x_101, 4); lean_inc(x_102); @@ -48705,7 +48705,7 @@ else lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; lean_inc(x_1); x_105 = lean_apply_2(x_4, x_1, x_97); -x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_107 = l_Lean_Parser_ParserState_mkNode(x_105, x_106, x_14); x_108 = lean_ctor_get(x_107, 4); lean_inc(x_108); @@ -48954,7 +48954,7 @@ if (x_169 == 0) { lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_173; lean_dec(x_4); -x_170 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_170 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_171 = l_Lean_Parser_ParserState_mkNode(x_167, x_170, x_14); x_172 = lean_ctor_get(x_171, 4); lean_inc(x_172); @@ -48978,7 +48978,7 @@ else lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_inc(x_1); x_175 = lean_apply_2(x_4, x_1, x_167); -x_176 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_176 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_177 = l_Lean_Parser_ParserState_mkNode(x_175, x_176, x_14); x_178 = lean_ctor_get(x_177, 4); lean_inc(x_178); @@ -49198,7 +49198,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_2 = l_Lean_Parser_Term_letrec___closed__5; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -49278,7 +49278,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_letrec; x_6 = lean_unsigned_to_nat(1000u); @@ -49871,7 +49871,7 @@ static lean_object* _init_l_Lean_Parser_Term_letRecDecls_formatter___closed__4() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_letRecDecls_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -49987,7 +49987,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_letrec_formatter___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -50020,7 +50020,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_letrec_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -50602,7 +50602,7 @@ static lean_object* _init_l_Lean_Parser_Term_letRecDecls_parenthesizer___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_letRecDecls_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -50718,7 +50718,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec_parenthesizer___closed__9() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_letrec_parenthesizer___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -50751,7 +50751,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -56303,7 +56303,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___clo _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -56313,7 +56313,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___clo _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -56373,7 +56373,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -56504,7 +56504,7 @@ lean_dec(x_19); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_22 = l_Lean_Parser_ParserState_mkNode(x_18, x_21, x_12); x_23 = lean_ctor_get(x_22, 4); lean_inc(x_23); @@ -56530,7 +56530,7 @@ x_26 = l_term___u2218_____closed__6; x_27 = l_Lean_Parser_maxPrec; lean_inc(x_1); x_28 = l_Lean_Parser_categoryParser___elambda__1(x_26, x_27, x_1, x_18); -x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_29 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_12); x_31 = lean_ctor_get(x_30, 4); lean_inc(x_31); @@ -56587,7 +56587,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_2 = l_Lean_Parser_Term_noImplicitLambda___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -56658,7 +56658,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_noImplicitLambda; x_6 = lean_unsigned_to_nat(1000u); @@ -56670,7 +56670,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_formatter___closed _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -56707,7 +56707,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_formatter___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_noImplicitLambda_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -56740,7 +56740,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_noImplicitLambda_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -56750,7 +56750,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_parenthesizer___cl _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1; x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -56787,7 +56787,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_parenthesizer___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_noImplicitLambda_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -56820,7 +56820,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_noImplicitLambda_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -72403,7 +72403,7 @@ lean_object* l_Lean_Parser_Tactic_seq1_formatter(lean_object* x_1, lean_object* _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_7 = l_Lean_Parser_Tactic_seq1_formatter___closed__2; x_8 = l_Lean_PrettyPrinter_Formatter_node_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -72540,7 +72540,7 @@ lean_object* l_Lean_Parser_Tactic_seq1_parenthesizer(lean_object* x_1, lean_obje _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2; +x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2; x_7 = l_Lean_Parser_Tactic_seq1_parenthesizer___closed__2; x_8 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; diff --git a/stage0/stdlib/Lean/ParserCompiler.c b/stage0/stdlib/Lean/ParserCompiler.c index b0c1df8b7e..5f5a7900cc 100644 --- a/stage0/stdlib/Lean/ParserCompiler.c +++ b/stage0/stdlib/Lean/ParserCompiler.c @@ -1660,8 +1660,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -1679,8 +1679,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -1716,7 +1716,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -1773,7 +1773,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -1831,7 +1831,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -1888,7 +1888,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -1920,7 +1920,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -1954,7 +1954,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -1987,7 +1987,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -2018,7 +2018,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -2035,7 +2035,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -2088,8 +2088,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -2527,8 +2527,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -3094,8 +3094,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -3113,8 +3113,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -3150,7 +3150,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -3207,7 +3207,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -3265,7 +3265,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -3322,7 +3322,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -3354,7 +3354,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -3388,7 +3388,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -3421,7 +3421,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -3452,7 +3452,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -3469,7 +3469,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -3504,8 +3504,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -3905,8 +3905,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -4472,8 +4472,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -4491,8 +4491,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -4528,7 +4528,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -4585,7 +4585,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -4643,7 +4643,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -4700,7 +4700,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -4732,7 +4732,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -4766,7 +4766,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -4799,7 +4799,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -4830,7 +4830,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -4847,7 +4847,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -4882,8 +4882,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -5283,8 +5283,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -5850,8 +5850,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -5869,8 +5869,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -5906,7 +5906,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -5963,7 +5963,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -6021,7 +6021,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -6078,7 +6078,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -6110,7 +6110,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -6144,7 +6144,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -6177,7 +6177,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -6208,7 +6208,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -6225,7 +6225,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -6260,8 +6260,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -6661,8 +6661,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -7228,8 +7228,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -7247,8 +7247,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -7284,7 +7284,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -7341,7 +7341,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -7399,7 +7399,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -7456,7 +7456,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -7488,7 +7488,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -7522,7 +7522,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -7555,7 +7555,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -7586,7 +7586,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -7603,7 +7603,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -7638,8 +7638,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -8039,8 +8039,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -8606,8 +8606,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -8625,8 +8625,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -8662,7 +8662,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -8719,7 +8719,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -8777,7 +8777,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -8834,7 +8834,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -8866,7 +8866,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -8900,7 +8900,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -8933,7 +8933,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -8964,7 +8964,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -8981,7 +8981,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -9016,8 +9016,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -9417,8 +9417,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -9984,8 +9984,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -10003,8 +10003,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -10040,7 +10040,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -10097,7 +10097,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -10155,7 +10155,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -10212,7 +10212,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -10244,7 +10244,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -10278,7 +10278,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -10311,7 +10311,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -10342,7 +10342,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -10359,7 +10359,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -10394,8 +10394,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -10795,8 +10795,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -11362,8 +11362,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -11381,8 +11381,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -11418,7 +11418,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -11475,7 +11475,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -11533,7 +11533,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -11590,7 +11590,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -11622,7 +11622,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -11656,7 +11656,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -11689,7 +11689,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -11720,7 +11720,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -11737,7 +11737,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -11772,8 +11772,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -12173,8 +12173,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -12740,8 +12740,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -12759,8 +12759,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -12796,7 +12796,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -12853,7 +12853,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -12911,7 +12911,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -12968,7 +12968,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -13000,7 +13000,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -13034,7 +13034,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -13067,7 +13067,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -13098,7 +13098,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -13115,7 +13115,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -13150,8 +13150,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -13551,8 +13551,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -14118,8 +14118,8 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_7, x_19); lean_dec(x_7); x_21 = l_Lean_instInhabitedExpr; -x_22 = lean_array_get(x_21, x_4, x_8); -x_23 = lean_array_get(x_21, x_5, x_8); +x_22 = lean_array_get(x_21, x_5, x_8); +x_23 = lean_array_get(x_21, x_3, x_8); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); @@ -14137,8 +14137,8 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_3); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_3, x_10, x_11, x_12, x_13, x_26); +lean_inc(x_4); +x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_4, x_10, x_11, x_12, x_13, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; @@ -14174,7 +14174,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_35 = !lean_is_exclusive(x_33); if (x_35 == 0) @@ -14231,7 +14231,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_46 = !lean_is_exclusive(x_33); if (x_46 == 0) @@ -14289,7 +14289,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_55 = !lean_is_exclusive(x_53); if (x_55 == 0) @@ -14346,7 +14346,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_66 = !lean_is_exclusive(x_53); if (x_66 == 0) @@ -14378,7 +14378,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_70 = !lean_is_exclusive(x_50); if (x_70 == 0) @@ -14412,7 +14412,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_74 = !lean_is_exclusive(x_27); if (x_74 == 0) @@ -14445,7 +14445,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_78 = !lean_is_exclusive(x_24); if (x_78 == 0) @@ -14476,7 +14476,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_82 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_82, 0, x_9); @@ -14493,7 +14493,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_9); @@ -14528,8 +14528,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -14929,8 +14929,8 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_6, x_18); lean_dec(x_6); x_20 = l_Lean_instInhabitedExpr; -x_21 = lean_array_get(x_20, x_3, x_7); -x_22 = lean_array_get(x_20, x_4, x_7); +x_21 = lean_array_get(x_20, x_4, x_7); +x_22 = lean_array_get(x_20, x_3, x_7); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -15382,71 +15382,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -15759,71 +15751,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__6___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__6___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -15898,71 +15882,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__9___at_Lean_ParserCompiler_compileParserExpr___spec__10___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__9___at_Lean_ParserCompiler_compileParserExpr___spec__10___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -16275,71 +16251,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__11___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__11___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -16414,71 +16382,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__12(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__14___at_Lean_ParserCompiler_compileParserExpr___spec__15___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__14___at_Lean_ParserCompiler_compileParserExpr___spec__15___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -16791,71 +16751,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__15(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__16___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__16___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -16930,71 +16882,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__17(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__19___at_Lean_ParserCompiler_compileParserExpr___spec__20___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__19___at_Lean_ParserCompiler_compileParserExpr___spec__20___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -17307,71 +17251,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__20(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__21___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__21___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -17446,71 +17382,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__22(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__24___at_Lean_ParserCompiler_compileParserExpr___spec__25___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__24___at_Lean_ParserCompiler_compileParserExpr___spec__25___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -17823,71 +17751,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__25(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__26___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__26___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -18016,71 +17936,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__28(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__29___at_Lean_ParserCompiler_compileParserExpr___spec__30___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__29___at_Lean_ParserCompiler_compileParserExpr___spec__30___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -18393,71 +18305,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__31(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__31___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__31___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -18532,71 +18436,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__33(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__34___at_Lean_ParserCompiler_compileParserExpr___spec__35___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__34___at_Lean_ParserCompiler_compileParserExpr___spec__35___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -18909,71 +18805,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__36(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__36___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__36___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -19048,71 +18936,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__38(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__39___at_Lean_ParserCompiler_compileParserExpr___spec__40___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__39___at_Lean_ParserCompiler_compileParserExpr___spec__40___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -19425,71 +19305,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__41(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__41___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__41___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -19564,71 +19436,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__43(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__44___at_Lean_ParserCompiler_compileParserExpr___spec__45___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__44___at_Lean_ParserCompiler_compileParserExpr___spec__45___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -19941,71 +19805,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__46(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__46___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__46___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -20080,71 +19936,63 @@ return x_25; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__48(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__49___at_Lean_ParserCompiler_compileParserExpr___spec__50___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__49___at_Lean_ParserCompiler_compileParserExpr___spec__50___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -20457,71 +20305,63 @@ return x_71; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__51(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Expr_getAppNumArgsAux(x_1, x_12); -x_14 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_13); -x_15 = lean_mk_array(x_13, x_14); -x_16 = lean_unsigned_to_nat(1u); -x_17 = lean_nat_sub(x_13, x_16); +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; +x_12 = lean_array_get_size(x_5); +x_13 = lean_array_get_size(x_1); +x_14 = l_Nat_min(x_12, x_13); lean_dec(x_13); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); -x_19 = lean_array_get_size(x_5); -x_20 = lean_array_get_size(x_18); -x_21 = l_Nat_min(x_19, x_20); -lean_dec(x_20); -lean_dec(x_19); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_14); +lean_ctor_set(x_17, 2, x_16); +x_18 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__51___rarg(x_2, x_3, x_1, x_5, x_17, x_14, x_15, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_12); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_16); -x_23 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__51___rarg(x_2, x_3, x_5, x_18, x_22, x_21, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_22); +lean_inc(x_20); lean_dec(x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -return x_23; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_23, 0); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); +uint8_t x_23; +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) +{ +return x_18; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); lean_inc(x_25); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -20652,3052 +20492,3161 @@ lean_dec(x_9); x_12 = l_Lean_Expr_getAppFn(x_10); if (lean_obj_tag(x_12) == 4) { -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_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; x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); lean_dec(x_12); -x_14 = lean_st_ref_get(x_7, x_11); -x_15 = lean_ctor_get(x_14, 0); +x_14 = lean_unsigned_to_nat(0u); +x_15 = l_Lean_Expr_getAppNumArgsAux(x_10, x_14); +x_16 = l_Lean_Expr_getAppArgs___closed__1; lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); +x_17 = lean_mk_array(x_15, x_16); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_15, x_18); lean_dec(x_15); -x_18 = lean_ctor_get(x_1, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_1, 2); -lean_inc(x_19); -x_20 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_19, x_17, x_13); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_inc(x_18); -x_21 = l_Lean_Name_append(x_13, x_18); -lean_inc(x_13); -x_22 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_13, x_4, x_5, x_6, x_7, x_16); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_10); +x_20 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_17, x_19); +x_21 = lean_st_ref_get(x_7, x_11); +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); +lean_dec(x_21); +x_24 = lean_ctor_get(x_22, 0); lean_inc(x_24); lean_dec(x_22); -x_25 = l_Lean_ConstantInfo_type(x_23); -x_26 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +x_25 = lean_ctor_get(x_1, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_1, 2); +lean_inc(x_26); +x_27 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_26, x_24, x_13); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; +lean_inc(x_25); +x_28 = l_Lean_Name_append(x_13, x_25); +lean_inc(x_13); +x_29 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_13, x_4, x_5, x_6, x_7, x_23); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec(x_29); +x_32 = l_Lean_ConstantInfo_type(x_30); +x_33 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_25); -x_27 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_25, x_26, x_4, x_5, x_6, x_7, x_24); -if (lean_obj_tag(x_27) == 0) +lean_inc(x_32); +x_34 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_32, x_33, x_4, x_5, x_6, x_7, x_31); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_59; uint8_t x_60; -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 1); -lean_inc(x_29); -lean_dec(x_27); -x_59 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_60 = l_Lean_Expr_isConstOf(x_28, x_59); -if (x_60 == 0) +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_66; uint8_t x_67; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_66 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_67 = l_Lean_Expr_isConstOf(x_35, x_66); +if (x_67 == 0) { -lean_object* x_61; uint8_t x_62; -x_61 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_62 = l_Lean_Expr_isConstOf(x_28, x_61); +lean_object* x_68; uint8_t x_69; +x_68 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_69 = l_Lean_Expr_isConstOf(x_35, x_68); +lean_dec(x_35); +if (x_69 == 0) +{ +lean_object* x_70; +lean_dec(x_32); +lean_dec(x_30); lean_dec(x_28); -if (x_62 == 0) -{ -lean_object* x_63; -lean_dec(x_25); -lean_dec(x_23); -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_17); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_20); lean_dec(x_13); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_63 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_29); -if (lean_obj_tag(x_63) == 0) +x_70 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_36); +if (lean_obj_tag(x_70) == 0) { -lean_object* x_64; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -if (lean_obj_tag(x_64) == 0) +lean_object* x_71; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +if (lean_obj_tag(x_71) == 0) { -lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +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_dec(x_1); -x_65 = lean_ctor_get(x_63, 1); -lean_inc(x_65); -lean_dec(x_63); -x_66 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_66, 0, x_18); -x_67 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_68 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_66); -x_69 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_70 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set(x_70, 1, x_69); -x_71 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_71, 0, x_10); -x_72 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -x_73 = l_Lean_KernelException_toMessageData___closed__3; -x_74 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -x_75 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_74, x_4, x_5, x_6, x_7, x_65); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +lean_dec(x_70); +x_73 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_73, 0, x_25); +x_74 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_75 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +x_76 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_77 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +x_78 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_78, 0, x_10); +x_79 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_79, 0, x_77); +lean_ctor_set(x_79, 1, x_78); +x_80 = l_Lean_KernelException_toMessageData___closed__3; +x_81 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +x_82 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_81, x_4, x_5, x_6, x_7, x_72); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_75; +return x_82; } else { -lean_object* x_76; lean_object* x_77; -lean_dec(x_18); +lean_object* x_83; lean_object* x_84; +lean_dec(x_25); lean_dec(x_10); -x_76 = lean_ctor_get(x_63, 1); -lean_inc(x_76); -lean_dec(x_63); -x_77 = lean_ctor_get(x_64, 0); -lean_inc(x_77); -lean_dec(x_64); -x_3 = x_77; -x_8 = x_76; +x_83 = lean_ctor_get(x_70, 1); +lean_inc(x_83); +lean_dec(x_70); +x_84 = lean_ctor_get(x_71, 0); +lean_inc(x_84); +lean_dec(x_71); +x_3 = x_84; +x_8 = x_83; goto _start; } } else { -uint8_t x_79; -lean_dec(x_18); +uint8_t x_86; +lean_dec(x_25); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_79 = !lean_is_exclusive(x_63); -if (x_79 == 0) +x_86 = !lean_is_exclusive(x_70); +if (x_86 == 0) { -return x_63; +return x_70; } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_80 = lean_ctor_get(x_63, 0); -x_81 = lean_ctor_get(x_63, 1); -lean_inc(x_81); -lean_inc(x_80); -lean_dec(x_63); -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_80); -lean_ctor_set(x_82, 1, x_81); -return x_82; +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_70, 0); +x_88 = lean_ctor_get(x_70, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_70); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +return x_89; } } } else { -lean_object* x_83; -x_83 = lean_box(0); -x_30 = x_83; -goto block_58; +lean_object* x_90; +x_90 = lean_box(0); +x_37 = x_90; +goto block_65; } } else { -lean_object* x_84; -lean_dec(x_28); -x_84 = lean_box(0); -x_30 = x_84; -goto block_58; +lean_object* x_91; +lean_dec(x_35); +x_91 = lean_box(0); +x_37 = x_91; +goto block_65; } -block_58: +block_65: { -lean_object* x_31; +lean_object* x_38; +lean_dec(x_37); +x_38 = l_Lean_ConstantInfo_value_x3f(x_30); lean_dec(x_30); -x_31 = l_Lean_ConstantInfo_value_x3f(x_23); -lean_dec(x_23); -if (lean_obj_tag(x_31) == 0) +if (lean_obj_tag(x_38) == 0) { -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_dec(x_25); -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_17); +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_dec(x_32); +lean_dec(x_28); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_20); lean_dec(x_13); lean_dec(x_1); -x_32 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_32, 0, x_18); -x_33 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_34 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_32); -x_35 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_36 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_36, 0, x_34); -lean_ctor_set(x_36, 1, x_35); -x_37 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_37, 0, x_10); -x_38 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_KernelException_toMessageData___closed__3; -x_40 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); -x_41 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_40, x_4, x_5, x_6, x_7, x_29); +x_39 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_39, 0, x_25); +x_40 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_41 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +x_42 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_43 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_44, 0, x_10); +x_45 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +x_46 = l_Lean_KernelException_toMessageData___closed__3; +x_47 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +x_48 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_47, x_4, x_5, x_6, x_7, x_36); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_41; +return x_48; } else { -lean_object* x_42; lean_object* x_43; -lean_dec(x_18); -x_42 = lean_ctor_get(x_31, 0); -lean_inc(x_42); -lean_dec(x_31); -x_43 = l_Lean_Environment_getModuleIdxFor_x3f(x_17, x_13); -lean_dec(x_17); -if (lean_obj_tag(x_43) == 0) +lean_object* x_49; lean_object* x_50; +lean_dec(x_25); +lean_dec(x_10); +x_49 = lean_ctor_get(x_38, 0); +lean_inc(x_49); +lean_dec(x_38); +x_50 = l_Lean_Environment_getModuleIdxFor_x3f(x_24, x_13); +lean_dec(x_24); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_44; lean_object* x_45; -x_44 = lean_box(0); -x_45 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__4(x_1, x_42, x_2, x_25, x_21, x_19, x_13, x_10, x_44, x_4, x_5, x_6, x_7, x_29); -return x_45; +lean_object* x_51; lean_object* x_52; +x_51 = lean_box(0); +x_52 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__4(x_1, x_49, x_2, x_32, x_28, x_26, x_13, x_20, x_51, x_4, x_5, x_6, x_7, x_36); +return x_52; } else { -lean_dec(x_43); +lean_dec(x_50); if (x_2 == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; -lean_dec(x_42); -lean_dec(x_25); -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_1); -x_46 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_46, 0, x_13); -x_47 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_48 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_46); -x_49 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_50 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -x_51 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_50, x_4, x_5, x_6, x_7, x_29); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_52 = !lean_is_exclusive(x_51); -if (x_52 == 0) -{ -return x_51; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_51, 0); -x_54 = lean_ctor_get(x_51, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_51); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; -} -} -else -{ -lean_object* x_56; lean_object* x_57; -x_56 = lean_box(0); -x_57 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__4(x_1, x_42, x_2, x_25, x_21, x_19, x_13, x_10, x_56, x_4, x_5, x_6, x_7, x_29); -return x_57; -} -} -} -} -} -else -{ -uint8_t x_85; -lean_dec(x_25); -lean_dec(x_23); -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_85 = !lean_is_exclusive(x_27); -if (x_85 == 0) -{ -return x_27; -} -else -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_27, 0); -x_87 = lean_ctor_get(x_27, 1); -lean_inc(x_87); -lean_inc(x_86); -lean_dec(x_27); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; -} -} -} -else -{ -uint8_t x_89; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_89 = !lean_is_exclusive(x_22); -if (x_89 == 0) -{ -return x_22; -} -else -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_90 = lean_ctor_get(x_22, 0); -x_91 = lean_ctor_get(x_22, 1); -lean_inc(x_91); -lean_inc(x_90); -lean_dec(x_22); -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_90); -lean_ctor_set(x_92, 1, x_91); -return x_92; -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_13); -x_93 = lean_ctor_get(x_20, 0); -lean_inc(x_93); +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; +lean_dec(x_49); +lean_dec(x_32); +lean_dec(x_28); +lean_dec(x_26); lean_dec(x_20); -x_94 = lean_box(0); -x_95 = l_Lean_mkConst(x_93, x_94); +lean_dec(x_1); +x_53 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_53, 0, x_13); +x_54 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_55 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_53); +x_56 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_57 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +x_58 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_57, x_4, x_5, x_6, x_7, x_36); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_59 = !lean_is_exclusive(x_58); +if (x_59 == 0) +{ +return x_58; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_58, 0); +x_61 = lean_ctor_get(x_58, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_58); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +else +{ +lean_object* x_63; lean_object* x_64; +x_63 = lean_box(0); +x_64 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__4(x_1, x_49, x_2, x_32, x_28, x_26, x_13, x_20, x_63, x_4, x_5, x_6, x_7, x_36); +return x_64; +} +} +} +} +} +else +{ +uint8_t x_92; +lean_dec(x_32); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_13); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_92 = !lean_is_exclusive(x_34); +if (x_92 == 0) +{ +return x_34; +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_93 = lean_ctor_get(x_34, 0); +x_94 = lean_ctor_get(x_34, 1); +lean_inc(x_94); +lean_inc(x_93); +lean_dec(x_34); +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; +} +} +} +else +{ +uint8_t x_96; +lean_dec(x_28); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_13); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_96 = !lean_is_exclusive(x_29); +if (x_96 == 0) +{ +return x_29; +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_29, 0); +x_98 = lean_ctor_get(x_29, 1); +lean_inc(x_98); +lean_inc(x_97); +lean_dec(x_29); +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; +} +} +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec(x_10); +x_100 = lean_ctor_get(x_27, 0); +lean_inc(x_100); +lean_dec(x_27); +x_101 = lean_box(0); +x_102 = l_Lean_mkConst(x_100, x_101); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_95); -x_96 = l_Lean_Meta_inferType(x_95, x_4, x_5, x_6, x_7, x_16); -if (lean_obj_tag(x_96) == 0) +lean_inc(x_102); +x_103 = l_Lean_Meta_inferType(x_102, x_4, x_5, x_6, x_7, x_23); +if (lean_obj_tag(x_103) == 0) { -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_97 = lean_ctor_get(x_96, 0); -lean_inc(x_97); -x_98 = lean_ctor_get(x_96, 1); -lean_inc(x_98); -lean_dec(x_96); -x_99 = lean_box(x_2); -x_100 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__5___boxed), 11, 4); -lean_closure_set(x_100, 0, x_10); -lean_closure_set(x_100, 1, x_1); -lean_closure_set(x_100, 2, x_99); -lean_closure_set(x_100, 3, x_95); -x_101 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_97, x_100, x_4, x_5, x_6, x_7, x_98); -return x_101; +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec(x_103); +x_106 = lean_box(x_2); +x_107 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__5___boxed), 11, 4); +lean_closure_set(x_107, 0, x_20); +lean_closure_set(x_107, 1, x_1); +lean_closure_set(x_107, 2, x_106); +lean_closure_set(x_107, 3, x_102); +x_108 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_104, x_107, x_4, x_5, x_6, x_7, x_105); +return x_108; } else { -uint8_t x_102; -lean_dec(x_95); -lean_dec(x_10); +uint8_t x_109; +lean_dec(x_102); +lean_dec(x_20); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_102 = !lean_is_exclusive(x_96); -if (x_102 == 0) +x_109 = !lean_is_exclusive(x_103); +if (x_109 == 0) { -return x_96; +return x_103; } else { -lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_103 = lean_ctor_get(x_96, 0); -x_104 = lean_ctor_get(x_96, 1); -lean_inc(x_104); -lean_inc(x_103); -lean_dec(x_96); -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; +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_103, 0); +x_111 = lean_ctor_get(x_103, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_103); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +return x_112; } } } } else { -lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_dec(x_12); lean_dec(x_1); -x_106 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_106, 0, x_10); -x_107 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_108 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Lean_KernelException_toMessageData___closed__3; -x_110 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -x_111 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_110, x_4, x_5, x_6, x_7, x_11); +x_113 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_113, 0, x_10); +x_114 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_115 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_113); +x_116 = l_Lean_KernelException_toMessageData___closed__3; +x_117 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +x_118 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_117, x_4, x_5, x_6, x_7, x_11); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_111; +return x_118; } } case 1: { -uint8_t x_112; +uint8_t x_119; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_112 = !lean_is_exclusive(x_9); -if (x_112 == 0) +x_119 = !lean_is_exclusive(x_9); +if (x_119 == 0) { -lean_object* x_113; -x_113 = lean_ctor_get(x_9, 0); -lean_dec(x_113); +lean_object* x_120; +x_120 = lean_ctor_get(x_9, 0); +lean_dec(x_120); return x_9; } else { -lean_object* x_114; lean_object* x_115; -x_114 = lean_ctor_get(x_9, 1); -lean_inc(x_114); +lean_object* x_121; lean_object* x_122; +x_121 = lean_ctor_get(x_9, 1); +lean_inc(x_121); lean_dec(x_9); -x_115 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_115, 0, x_10); -lean_ctor_set(x_115, 1, x_114); -return x_115; +x_122 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_122, 0, x_10); +lean_ctor_set(x_122, 1, x_121); +return x_122; } } case 2: { -lean_object* x_116; lean_object* x_117; -x_116 = lean_ctor_get(x_9, 1); -lean_inc(x_116); +lean_object* x_123; lean_object* x_124; +x_123 = lean_ctor_get(x_9, 1); +lean_inc(x_123); lean_dec(x_9); -x_117 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_117) == 4) +x_124 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_124) == 4) { -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_118 = lean_ctor_get(x_117, 0); -lean_inc(x_118); -lean_dec(x_117); -x_119 = lean_st_ref_get(x_7, x_116); -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -x_121 = lean_ctor_get(x_119, 1); -lean_inc(x_121); -lean_dec(x_119); -x_122 = lean_ctor_get(x_120, 0); -lean_inc(x_122); -lean_dec(x_120); -x_123 = lean_ctor_get(x_1, 0); -lean_inc(x_123); -x_124 = lean_ctor_get(x_1, 2); -lean_inc(x_124); -x_125 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_124, x_122, x_118); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; lean_object* x_127; -lean_inc(x_123); -x_126 = l_Lean_Name_append(x_118, x_123); -lean_inc(x_118); -x_127 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_118, x_4, x_5, x_6, x_7, x_121); -if (lean_obj_tag(x_127) == 0) -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_128 = lean_ctor_get(x_127, 0); -lean_inc(x_128); -x_129 = lean_ctor_get(x_127, 1); -lean_inc(x_129); +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; +x_125 = lean_ctor_get(x_124, 0); +lean_inc(x_125); +lean_dec(x_124); +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Lean_Expr_getAppNumArgsAux(x_10, x_126); +x_128 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_127); +x_129 = lean_mk_array(x_127, x_128); +x_130 = lean_unsigned_to_nat(1u); +x_131 = lean_nat_sub(x_127, x_130); lean_dec(x_127); -x_130 = l_Lean_ConstantInfo_type(x_128); -x_131 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_inc(x_10); +x_132 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_129, x_131); +x_133 = lean_st_ref_get(x_7, x_123); +x_134 = lean_ctor_get(x_133, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_133, 1); +lean_inc(x_135); +lean_dec(x_133); +x_136 = lean_ctor_get(x_134, 0); +lean_inc(x_136); +lean_dec(x_134); +x_137 = lean_ctor_get(x_1, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_1, 2); +lean_inc(x_138); +x_139 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_138, x_136, x_125); +if (lean_obj_tag(x_139) == 0) +{ +lean_object* x_140; lean_object* x_141; +lean_inc(x_137); +x_140 = l_Lean_Name_append(x_125, x_137); +lean_inc(x_125); +x_141 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_125, x_4, x_5, x_6, x_7, x_135); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +x_143 = lean_ctor_get(x_141, 1); +lean_inc(x_143); +lean_dec(x_141); +x_144 = l_Lean_ConstantInfo_type(x_142); +x_145 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_130); -x_132 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_130, x_131, x_4, x_5, x_6, x_7, x_129); -if (lean_obj_tag(x_132) == 0) +lean_inc(x_144); +x_146 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_144, x_145, x_4, x_5, x_6, x_7, x_143); +if (lean_obj_tag(x_146) == 0) { -lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_164; uint8_t x_165; -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -x_134 = lean_ctor_get(x_132, 1); -lean_inc(x_134); +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_178; uint8_t x_179; +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +lean_dec(x_146); +x_178 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_179 = l_Lean_Expr_isConstOf(x_147, x_178); +if (x_179 == 0) +{ +lean_object* x_180; uint8_t x_181; +x_180 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_181 = l_Lean_Expr_isConstOf(x_147, x_180); +lean_dec(x_147); +if (x_181 == 0) +{ +lean_object* x_182; +lean_dec(x_144); +lean_dec(x_142); +lean_dec(x_140); +lean_dec(x_138); +lean_dec(x_136); lean_dec(x_132); -x_164 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_165 = l_Lean_Expr_isConstOf(x_133, x_164); -if (x_165 == 0) -{ -lean_object* x_166; uint8_t x_167; -x_166 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_167 = l_Lean_Expr_isConstOf(x_133, x_166); -lean_dec(x_133); -if (x_167 == 0) -{ -lean_object* x_168; -lean_dec(x_130); -lean_dec(x_128); -lean_dec(x_126); -lean_dec(x_124); -lean_dec(x_122); -lean_dec(x_118); +lean_dec(x_125); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_168 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_134); -if (lean_obj_tag(x_168) == 0) +x_182 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_148); +if (lean_obj_tag(x_182) == 0) { -lean_object* x_169; -x_169 = lean_ctor_get(x_168, 0); -lean_inc(x_169); -if (lean_obj_tag(x_169) == 0) +lean_object* x_183; +x_183 = lean_ctor_get(x_182, 0); +lean_inc(x_183); +if (lean_obj_tag(x_183) == 0) { -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_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_1); -x_170 = lean_ctor_get(x_168, 1); -lean_inc(x_170); -lean_dec(x_168); -x_171 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_171, 0, x_123); -x_172 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_173 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_171); -x_174 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_175 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_175, 0, x_173); -lean_ctor_set(x_175, 1, x_174); -x_176 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_176, 0, x_10); -x_177 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_177, 0, x_175); -lean_ctor_set(x_177, 1, x_176); -x_178 = l_Lean_KernelException_toMessageData___closed__3; -x_179 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_179, 0, x_177); -lean_ctor_set(x_179, 1, x_178); -x_180 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_179, x_4, x_5, x_6, x_7, x_170); +x_184 = lean_ctor_get(x_182, 1); +lean_inc(x_184); +lean_dec(x_182); +x_185 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_185, 0, x_137); +x_186 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_187 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_185); +x_188 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_189 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_189, 0, x_187); +lean_ctor_set(x_189, 1, x_188); +x_190 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_190, 0, x_10); +x_191 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_191, 0, x_189); +lean_ctor_set(x_191, 1, x_190); +x_192 = l_Lean_KernelException_toMessageData___closed__3; +x_193 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_193, 0, x_191); +lean_ctor_set(x_193, 1, x_192); +x_194 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_193, x_4, x_5, x_6, x_7, x_184); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_180; +return x_194; } else { -lean_object* x_181; lean_object* x_182; -lean_dec(x_123); +lean_object* x_195; lean_object* x_196; +lean_dec(x_137); lean_dec(x_10); -x_181 = lean_ctor_get(x_168, 1); -lean_inc(x_181); -lean_dec(x_168); -x_182 = lean_ctor_get(x_169, 0); -lean_inc(x_182); -lean_dec(x_169); -x_3 = x_182; -x_8 = x_181; +x_195 = lean_ctor_get(x_182, 1); +lean_inc(x_195); +lean_dec(x_182); +x_196 = lean_ctor_get(x_183, 0); +lean_inc(x_196); +lean_dec(x_183); +x_3 = x_196; +x_8 = x_195; goto _start; } } else { -uint8_t x_184; -lean_dec(x_123); +uint8_t x_198; +lean_dec(x_137); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_184 = !lean_is_exclusive(x_168); -if (x_184 == 0) +x_198 = !lean_is_exclusive(x_182); +if (x_198 == 0) { -return x_168; +return x_182; } else { -lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_185 = lean_ctor_get(x_168, 0); -x_186 = lean_ctor_get(x_168, 1); -lean_inc(x_186); -lean_inc(x_185); -lean_dec(x_168); -x_187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -return x_187; +lean_object* x_199; lean_object* x_200; lean_object* x_201; +x_199 = lean_ctor_get(x_182, 0); +x_200 = lean_ctor_get(x_182, 1); +lean_inc(x_200); +lean_inc(x_199); +lean_dec(x_182); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_199); +lean_ctor_set(x_201, 1, x_200); +return x_201; } } } else { -lean_object* x_188; -x_188 = lean_box(0); -x_135 = x_188; -goto block_163; +lean_object* x_202; +x_202 = lean_box(0); +x_149 = x_202; +goto block_177; } } else { -lean_object* x_189; -lean_dec(x_133); -x_189 = lean_box(0); -x_135 = x_189; -goto block_163; -} -block_163: -{ -lean_object* x_136; -lean_dec(x_135); -x_136 = l_Lean_ConstantInfo_value_x3f(x_128); -lean_dec(x_128); -if (lean_obj_tag(x_136) == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; -lean_dec(x_130); -lean_dec(x_126); -lean_dec(x_124); -lean_dec(x_122); -lean_dec(x_118); -lean_dec(x_1); -x_137 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_137, 0, x_123); -x_138 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_139 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_137); -x_140 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_141 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -x_142 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_142, 0, x_10); -x_143 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -x_144 = l_Lean_KernelException_toMessageData___closed__3; -x_145 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_145, 0, x_143); -lean_ctor_set(x_145, 1, x_144); -x_146 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_145, x_4, x_5, x_6, x_7, x_134); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_146; -} -else -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_123); -x_147 = lean_ctor_get(x_136, 0); -lean_inc(x_147); -lean_dec(x_136); -x_148 = l_Lean_Environment_getModuleIdxFor_x3f(x_122, x_118); -lean_dec(x_122); -if (lean_obj_tag(x_148) == 0) -{ -lean_object* x_149; lean_object* x_150; -x_149 = lean_box(0); -x_150 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__9(x_1, x_147, x_2, x_130, x_126, x_124, x_118, x_10, x_149, x_4, x_5, x_6, x_7, x_134); -return x_150; -} -else -{ -lean_dec(x_148); -if (x_2 == 0) -{ -lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; +lean_object* x_203; lean_dec(x_147); -lean_dec(x_130); -lean_dec(x_126); -lean_dec(x_124); -lean_dec(x_10); +x_203 = lean_box(0); +x_149 = x_203; +goto block_177; +} +block_177: +{ +lean_object* x_150; +lean_dec(x_149); +x_150 = l_Lean_ConstantInfo_value_x3f(x_142); +lean_dec(x_142); +if (lean_obj_tag(x_150) == 0) +{ +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_dec(x_144); +lean_dec(x_140); +lean_dec(x_138); +lean_dec(x_136); +lean_dec(x_132); +lean_dec(x_125); lean_dec(x_1); x_151 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_151, 0, x_118); -x_152 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +lean_ctor_set(x_151, 0, x_137); +x_152 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; x_153 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); -x_154 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_154 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; x_155 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_155, 0, x_153); lean_ctor_set(x_155, 1, x_154); -x_156 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_155, x_4, x_5, x_6, x_7, x_134); +x_156 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_156, 0, x_10); +x_157 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +x_158 = l_Lean_KernelException_toMessageData___closed__3; +x_159 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_159, 0, x_157); +lean_ctor_set(x_159, 1, x_158); +x_160 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_159, x_4, x_5, x_6, x_7, x_148); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_157 = !lean_is_exclusive(x_156); -if (x_157 == 0) -{ -return x_156; -} -else -{ -lean_object* x_158; lean_object* x_159; lean_object* x_160; -x_158 = lean_ctor_get(x_156, 0); -x_159 = lean_ctor_get(x_156, 1); -lean_inc(x_159); -lean_inc(x_158); -lean_dec(x_156); -x_160 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_160, 0, x_158); -lean_ctor_set(x_160, 1, x_159); return x_160; } -} else { lean_object* x_161; lean_object* x_162; -x_161 = lean_box(0); -x_162 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__9(x_1, x_147, x_2, x_130, x_126, x_124, x_118, x_10, x_161, x_4, x_5, x_6, x_7, x_134); -return x_162; -} -} -} -} -} -else -{ -uint8_t x_190; -lean_dec(x_130); -lean_dec(x_128); -lean_dec(x_126); -lean_dec(x_124); -lean_dec(x_123); -lean_dec(x_122); -lean_dec(x_118); +lean_dec(x_137); lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_190 = !lean_is_exclusive(x_132); -if (x_190 == 0) +x_161 = lean_ctor_get(x_150, 0); +lean_inc(x_161); +lean_dec(x_150); +x_162 = l_Lean_Environment_getModuleIdxFor_x3f(x_136, x_125); +lean_dec(x_136); +if (lean_obj_tag(x_162) == 0) { -return x_132; +lean_object* x_163; lean_object* x_164; +x_163 = lean_box(0); +x_164 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__9(x_1, x_161, x_2, x_144, x_140, x_138, x_125, x_132, x_163, x_4, x_5, x_6, x_7, x_148); +return x_164; } else { -lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_191 = lean_ctor_get(x_132, 0); -x_192 = lean_ctor_get(x_132, 1); -lean_inc(x_192); -lean_inc(x_191); +lean_dec(x_162); +if (x_2 == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; +lean_dec(x_161); +lean_dec(x_144); +lean_dec(x_140); +lean_dec(x_138); lean_dec(x_132); -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; +lean_dec(x_1); +x_165 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_165, 0, x_125); +x_166 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_167 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_167, 0, x_166); +lean_ctor_set(x_167, 1, x_165); +x_168 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_169 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_169, 0, x_167); +lean_ctor_set(x_169, 1, x_168); +x_170 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_169, x_4, x_5, x_6, x_7, x_148); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_171 = !lean_is_exclusive(x_170); +if (x_171 == 0) +{ +return x_170; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_172 = lean_ctor_get(x_170, 0); +x_173 = lean_ctor_get(x_170, 1); +lean_inc(x_173); +lean_inc(x_172); +lean_dec(x_170); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +return x_174; +} +} +else +{ +lean_object* x_175; lean_object* x_176; +x_175 = lean_box(0); +x_176 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__9(x_1, x_161, x_2, x_144, x_140, x_138, x_125, x_132, x_175, x_4, x_5, x_6, x_7, x_148); +return x_176; +} +} } } } else { -uint8_t x_194; -lean_dec(x_126); -lean_dec(x_124); -lean_dec(x_123); -lean_dec(x_122); -lean_dec(x_118); +uint8_t x_204; +lean_dec(x_144); +lean_dec(x_142); +lean_dec(x_140); +lean_dec(x_138); +lean_dec(x_137); +lean_dec(x_136); +lean_dec(x_132); +lean_dec(x_125); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_194 = !lean_is_exclusive(x_127); -if (x_194 == 0) +x_204 = !lean_is_exclusive(x_146); +if (x_204 == 0) { -return x_127; +return x_146; } else { -lean_object* x_195; lean_object* x_196; lean_object* x_197; -x_195 = lean_ctor_get(x_127, 0); -x_196 = lean_ctor_get(x_127, 1); -lean_inc(x_196); -lean_inc(x_195); -lean_dec(x_127); -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; +lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_205 = lean_ctor_get(x_146, 0); +x_206 = lean_ctor_get(x_146, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_146); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +return x_207; } } } else { -lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; -lean_dec(x_124); -lean_dec(x_123); -lean_dec(x_122); -lean_dec(x_118); -x_198 = lean_ctor_get(x_125, 0); -lean_inc(x_198); +uint8_t x_208; +lean_dec(x_140); +lean_dec(x_138); +lean_dec(x_137); +lean_dec(x_136); +lean_dec(x_132); lean_dec(x_125); -x_199 = lean_box(0); -x_200 = l_Lean_mkConst(x_198, x_199); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_208 = !lean_is_exclusive(x_141); +if (x_208 == 0) +{ +return x_141; +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; +x_209 = lean_ctor_get(x_141, 0); +x_210 = lean_ctor_get(x_141, 1); +lean_inc(x_210); +lean_inc(x_209); +lean_dec(x_141); +x_211 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_211, 0, x_209); +lean_ctor_set(x_211, 1, x_210); +return x_211; +} +} +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; +lean_dec(x_138); +lean_dec(x_137); +lean_dec(x_136); +lean_dec(x_125); +lean_dec(x_10); +x_212 = lean_ctor_get(x_139, 0); +lean_inc(x_212); +lean_dec(x_139); +x_213 = lean_box(0); +x_214 = l_Lean_mkConst(x_212, x_213); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_200); -x_201 = l_Lean_Meta_inferType(x_200, x_4, x_5, x_6, x_7, x_121); -if (lean_obj_tag(x_201) == 0) +lean_inc(x_214); +x_215 = l_Lean_Meta_inferType(x_214, x_4, x_5, x_6, x_7, x_135); +if (lean_obj_tag(x_215) == 0) { -lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_202 = lean_ctor_get(x_201, 0); -lean_inc(x_202); -x_203 = lean_ctor_get(x_201, 1); -lean_inc(x_203); -lean_dec(x_201); -x_204 = lean_box(x_2); -x_205 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__10___boxed), 11, 4); -lean_closure_set(x_205, 0, x_10); -lean_closure_set(x_205, 1, x_1); -lean_closure_set(x_205, 2, x_204); -lean_closure_set(x_205, 3, x_200); -x_206 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_202, x_205, x_4, x_5, x_6, x_7, x_203); -return x_206; +lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; +x_216 = lean_ctor_get(x_215, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_215, 1); +lean_inc(x_217); +lean_dec(x_215); +x_218 = lean_box(x_2); +x_219 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__10___boxed), 11, 4); +lean_closure_set(x_219, 0, x_132); +lean_closure_set(x_219, 1, x_1); +lean_closure_set(x_219, 2, x_218); +lean_closure_set(x_219, 3, x_214); +x_220 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_216, x_219, x_4, x_5, x_6, x_7, x_217); +return x_220; } else { -uint8_t x_207; -lean_dec(x_200); -lean_dec(x_10); +uint8_t x_221; +lean_dec(x_214); +lean_dec(x_132); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_207 = !lean_is_exclusive(x_201); -if (x_207 == 0) +x_221 = !lean_is_exclusive(x_215); +if (x_221 == 0) { -return x_201; +return x_215; } else { -lean_object* x_208; lean_object* x_209; lean_object* x_210; -x_208 = lean_ctor_get(x_201, 0); -x_209 = lean_ctor_get(x_201, 1); -lean_inc(x_209); -lean_inc(x_208); -lean_dec(x_201); -x_210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_210, 0, x_208); -lean_ctor_set(x_210, 1, x_209); -return x_210; +lean_object* x_222; lean_object* x_223; lean_object* x_224; +x_222 = lean_ctor_get(x_215, 0); +x_223 = lean_ctor_get(x_215, 1); +lean_inc(x_223); +lean_inc(x_222); +lean_dec(x_215); +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_222); +lean_ctor_set(x_224, 1, x_223); +return x_224; } } } } else { -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_dec(x_117); +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_dec(x_124); lean_dec(x_1); -x_211 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_211, 0, x_10); -x_212 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_213 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_213, 0, x_212); -lean_ctor_set(x_213, 1, x_211); -x_214 = l_Lean_KernelException_toMessageData___closed__3; -x_215 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_215, 0, x_213); -lean_ctor_set(x_215, 1, x_214); -x_216 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_215, x_4, x_5, x_6, x_7, x_116); +x_225 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_225, 0, x_10); +x_226 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_227 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_227, 0, x_226); +lean_ctor_set(x_227, 1, x_225); +x_228 = l_Lean_KernelException_toMessageData___closed__3; +x_229 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_229, 0, x_227); +lean_ctor_set(x_229, 1, x_228); +x_230 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_229, x_4, x_5, x_6, x_7, x_123); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_216; +return x_230; } } case 3: { -lean_object* x_217; lean_object* x_218; -x_217 = lean_ctor_get(x_9, 1); -lean_inc(x_217); +lean_object* x_231; lean_object* x_232; +x_231 = lean_ctor_get(x_9, 1); +lean_inc(x_231); lean_dec(x_9); -x_218 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_218) == 4) +x_232 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_232) == 4) { -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; -x_219 = lean_ctor_get(x_218, 0); -lean_inc(x_219); -lean_dec(x_218); -x_220 = lean_st_ref_get(x_7, x_217); -x_221 = lean_ctor_get(x_220, 0); -lean_inc(x_221); -x_222 = lean_ctor_get(x_220, 1); -lean_inc(x_222); -lean_dec(x_220); -x_223 = lean_ctor_get(x_221, 0); -lean_inc(x_223); -lean_dec(x_221); -x_224 = lean_ctor_get(x_1, 0); -lean_inc(x_224); -x_225 = lean_ctor_get(x_1, 2); -lean_inc(x_225); -x_226 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_225, x_223, x_219); -if (lean_obj_tag(x_226) == 0) +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; +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +lean_dec(x_232); +x_234 = lean_unsigned_to_nat(0u); +x_235 = l_Lean_Expr_getAppNumArgsAux(x_10, x_234); +x_236 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_235); +x_237 = lean_mk_array(x_235, x_236); +x_238 = lean_unsigned_to_nat(1u); +x_239 = lean_nat_sub(x_235, x_238); +lean_dec(x_235); +lean_inc(x_10); +x_240 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_237, x_239); +x_241 = lean_st_ref_get(x_7, x_231); +x_242 = lean_ctor_get(x_241, 0); +lean_inc(x_242); +x_243 = lean_ctor_get(x_241, 1); +lean_inc(x_243); +lean_dec(x_241); +x_244 = lean_ctor_get(x_242, 0); +lean_inc(x_244); +lean_dec(x_242); +x_245 = lean_ctor_get(x_1, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_1, 2); +lean_inc(x_246); +x_247 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_246, x_244, x_233); +if (lean_obj_tag(x_247) == 0) { -lean_object* x_227; lean_object* x_228; -lean_inc(x_224); -x_227 = l_Lean_Name_append(x_219, x_224); -lean_inc(x_219); -x_228 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_219, x_4, x_5, x_6, x_7, x_222); -if (lean_obj_tag(x_228) == 0) +lean_object* x_248; lean_object* x_249; +lean_inc(x_245); +x_248 = l_Lean_Name_append(x_233, x_245); +lean_inc(x_233); +x_249 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_233, x_4, x_5, x_6, x_7, x_243); +if (lean_obj_tag(x_249) == 0) { -lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_229 = lean_ctor_get(x_228, 0); -lean_inc(x_229); -x_230 = lean_ctor_get(x_228, 1); -lean_inc(x_230); -lean_dec(x_228); -x_231 = l_Lean_ConstantInfo_type(x_229); -x_232 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_250 = lean_ctor_get(x_249, 0); +lean_inc(x_250); +x_251 = lean_ctor_get(x_249, 1); +lean_inc(x_251); +lean_dec(x_249); +x_252 = l_Lean_ConstantInfo_type(x_250); +x_253 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_231); -x_233 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_231, x_232, x_4, x_5, x_6, x_7, x_230); -if (lean_obj_tag(x_233) == 0) +lean_inc(x_252); +x_254 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_252, x_253, x_4, x_5, x_6, x_7, x_251); +if (lean_obj_tag(x_254) == 0) { -lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_265; uint8_t x_266; -x_234 = lean_ctor_get(x_233, 0); -lean_inc(x_234); -x_235 = lean_ctor_get(x_233, 1); -lean_inc(x_235); +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_286; uint8_t x_287; +x_255 = lean_ctor_get(x_254, 0); +lean_inc(x_255); +x_256 = lean_ctor_get(x_254, 1); +lean_inc(x_256); +lean_dec(x_254); +x_286 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_287 = l_Lean_Expr_isConstOf(x_255, x_286); +if (x_287 == 0) +{ +lean_object* x_288; uint8_t x_289; +x_288 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_289 = l_Lean_Expr_isConstOf(x_255, x_288); +lean_dec(x_255); +if (x_289 == 0) +{ +lean_object* x_290; +lean_dec(x_252); +lean_dec(x_250); +lean_dec(x_248); +lean_dec(x_246); +lean_dec(x_244); +lean_dec(x_240); lean_dec(x_233); -x_265 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_266 = l_Lean_Expr_isConstOf(x_234, x_265); -if (x_266 == 0) -{ -lean_object* x_267; uint8_t x_268; -x_267 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_268 = l_Lean_Expr_isConstOf(x_234, x_267); -lean_dec(x_234); -if (x_268 == 0) -{ -lean_object* x_269; -lean_dec(x_231); -lean_dec(x_229); -lean_dec(x_227); -lean_dec(x_225); -lean_dec(x_223); -lean_dec(x_219); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_269 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_235); -if (lean_obj_tag(x_269) == 0) +x_290 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_256); +if (lean_obj_tag(x_290) == 0) { -lean_object* x_270; -x_270 = lean_ctor_get(x_269, 0); -lean_inc(x_270); -if (lean_obj_tag(x_270) == 0) +lean_object* x_291; +x_291 = lean_ctor_get(x_290, 0); +lean_inc(x_291); +if (lean_obj_tag(x_291) == 0) { -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_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_dec(x_1); -x_271 = lean_ctor_get(x_269, 1); -lean_inc(x_271); -lean_dec(x_269); -x_272 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_272, 0, x_224); -x_273 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_274 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_274, 0, x_273); -lean_ctor_set(x_274, 1, x_272); -x_275 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_276 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_276, 0, x_274); -lean_ctor_set(x_276, 1, x_275); -x_277 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_277, 0, x_10); -x_278 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_278, 0, x_276); -lean_ctor_set(x_278, 1, x_277); -x_279 = l_Lean_KernelException_toMessageData___closed__3; -x_280 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_280, 0, x_278); -lean_ctor_set(x_280, 1, x_279); -x_281 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_280, x_4, x_5, x_6, x_7, x_271); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_281; -} -else -{ -lean_object* x_282; lean_object* x_283; -lean_dec(x_224); -lean_dec(x_10); -x_282 = lean_ctor_get(x_269, 1); -lean_inc(x_282); -lean_dec(x_269); -x_283 = lean_ctor_get(x_270, 0); -lean_inc(x_283); -lean_dec(x_270); -x_3 = x_283; -x_8 = x_282; -goto _start; -} -} -else -{ -uint8_t x_285; -lean_dec(x_224); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_285 = !lean_is_exclusive(x_269); -if (x_285 == 0) -{ -return x_269; -} -else -{ -lean_object* x_286; lean_object* x_287; lean_object* x_288; -x_286 = lean_ctor_get(x_269, 0); -x_287 = lean_ctor_get(x_269, 1); -lean_inc(x_287); -lean_inc(x_286); -lean_dec(x_269); -x_288 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_288, 0, x_286); -lean_ctor_set(x_288, 1, x_287); -return x_288; -} -} -} -else -{ -lean_object* x_289; -x_289 = lean_box(0); -x_236 = x_289; -goto block_264; -} -} -else -{ -lean_object* x_290; -lean_dec(x_234); -x_290 = lean_box(0); -x_236 = x_290; -goto block_264; -} -block_264: -{ -lean_object* x_237; -lean_dec(x_236); -x_237 = l_Lean_ConstantInfo_value_x3f(x_229); -lean_dec(x_229); -if (lean_obj_tag(x_237) == 0) -{ -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_dec(x_231); -lean_dec(x_227); -lean_dec(x_225); -lean_dec(x_223); -lean_dec(x_219); -lean_dec(x_1); -x_238 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_238, 0, x_224); -x_239 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_240 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_240, 0, x_239); -lean_ctor_set(x_240, 1, x_238); -x_241 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_242 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -x_243 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_243, 0, x_10); -x_244 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_244, 0, x_242); -lean_ctor_set(x_244, 1, x_243); -x_245 = l_Lean_KernelException_toMessageData___closed__3; -x_246 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_246, 0, x_244); -lean_ctor_set(x_246, 1, x_245); -x_247 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_246, x_4, x_5, x_6, x_7, x_235); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_247; -} -else -{ -lean_object* x_248; lean_object* x_249; -lean_dec(x_224); -x_248 = lean_ctor_get(x_237, 0); -lean_inc(x_248); -lean_dec(x_237); -x_249 = l_Lean_Environment_getModuleIdxFor_x3f(x_223, x_219); -lean_dec(x_223); -if (lean_obj_tag(x_249) == 0) -{ -lean_object* x_250; lean_object* x_251; -x_250 = lean_box(0); -x_251 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__14(x_1, x_248, x_2, x_231, x_227, x_225, x_219, x_10, x_250, x_4, x_5, x_6, x_7, x_235); -return x_251; -} -else -{ -lean_dec(x_249); -if (x_2 == 0) -{ -lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; uint8_t x_258; -lean_dec(x_248); -lean_dec(x_231); -lean_dec(x_227); -lean_dec(x_225); -lean_dec(x_10); -lean_dec(x_1); -x_252 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_252, 0, x_219); -x_253 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_254 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_254, 0, x_253); -lean_ctor_set(x_254, 1, x_252); -x_255 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_256 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_256, 0, x_254); -lean_ctor_set(x_256, 1, x_255); -x_257 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_256, x_4, x_5, x_6, x_7, x_235); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_258 = !lean_is_exclusive(x_257); -if (x_258 == 0) -{ -return x_257; -} -else -{ -lean_object* x_259; lean_object* x_260; lean_object* x_261; -x_259 = lean_ctor_get(x_257, 0); -x_260 = lean_ctor_get(x_257, 1); -lean_inc(x_260); -lean_inc(x_259); -lean_dec(x_257); -x_261 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_261, 0, x_259); -lean_ctor_set(x_261, 1, x_260); -return x_261; -} -} -else -{ -lean_object* x_262; lean_object* x_263; -x_262 = lean_box(0); -x_263 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__14(x_1, x_248, x_2, x_231, x_227, x_225, x_219, x_10, x_262, x_4, x_5, x_6, x_7, x_235); -return x_263; -} -} -} -} -} -else -{ -uint8_t x_291; -lean_dec(x_231); -lean_dec(x_229); -lean_dec(x_227); -lean_dec(x_225); -lean_dec(x_224); -lean_dec(x_223); -lean_dec(x_219); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_291 = !lean_is_exclusive(x_233); -if (x_291 == 0) -{ -return x_233; -} -else -{ -lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_292 = lean_ctor_get(x_233, 0); -x_293 = lean_ctor_get(x_233, 1); -lean_inc(x_293); +x_292 = lean_ctor_get(x_290, 1); lean_inc(x_292); -lean_dec(x_233); -x_294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_294, 0, x_292); -lean_ctor_set(x_294, 1, x_293); -return x_294; -} -} -} -else -{ -uint8_t x_295; -lean_dec(x_227); -lean_dec(x_225); -lean_dec(x_224); -lean_dec(x_223); -lean_dec(x_219); -lean_dec(x_10); +lean_dec(x_290); +x_293 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_293, 0, x_245); +x_294 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_295 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_295, 0, x_294); +lean_ctor_set(x_295, 1, x_293); +x_296 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_297 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_297, 0, x_295); +lean_ctor_set(x_297, 1, x_296); +x_298 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_298, 0, x_10); +x_299 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_299, 0, x_297); +lean_ctor_set(x_299, 1, x_298); +x_300 = l_Lean_KernelException_toMessageData___closed__3; +x_301 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_301, 0, x_299); +lean_ctor_set(x_301, 1, x_300); +x_302 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_301, x_4, x_5, x_6, x_7, x_292); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1); -x_295 = !lean_is_exclusive(x_228); -if (x_295 == 0) -{ -return x_228; -} -else -{ -lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_296 = lean_ctor_get(x_228, 0); -x_297 = lean_ctor_get(x_228, 1); -lean_inc(x_297); -lean_inc(x_296); -lean_dec(x_228); -x_298 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_298, 0, x_296); -lean_ctor_set(x_298, 1, x_297); -return x_298; -} -} -} -else -{ -lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; -lean_dec(x_225); -lean_dec(x_224); -lean_dec(x_223); -lean_dec(x_219); -x_299 = lean_ctor_get(x_226, 0); -lean_inc(x_299); -lean_dec(x_226); -x_300 = lean_box(0); -x_301 = l_Lean_mkConst(x_299, x_300); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_301); -x_302 = l_Lean_Meta_inferType(x_301, x_4, x_5, x_6, x_7, x_222); -if (lean_obj_tag(x_302) == 0) -{ -lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; -x_303 = lean_ctor_get(x_302, 0); -lean_inc(x_303); -x_304 = lean_ctor_get(x_302, 1); -lean_inc(x_304); -lean_dec(x_302); -x_305 = lean_box(x_2); -x_306 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__15___boxed), 11, 4); -lean_closure_set(x_306, 0, x_10); -lean_closure_set(x_306, 1, x_1); -lean_closure_set(x_306, 2, x_305); -lean_closure_set(x_306, 3, x_301); -x_307 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_303, x_306, x_4, x_5, x_6, x_7, x_304); -return x_307; -} -else -{ -uint8_t x_308; -lean_dec(x_301); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_308 = !lean_is_exclusive(x_302); -if (x_308 == 0) -{ return x_302; } else { -lean_object* x_309; lean_object* x_310; lean_object* x_311; -x_309 = lean_ctor_get(x_302, 0); -x_310 = lean_ctor_get(x_302, 1); -lean_inc(x_310); -lean_inc(x_309); -lean_dec(x_302); -x_311 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_311, 0, x_309); -lean_ctor_set(x_311, 1, x_310); -return x_311; +lean_object* x_303; lean_object* x_304; +lean_dec(x_245); +lean_dec(x_10); +x_303 = lean_ctor_get(x_290, 1); +lean_inc(x_303); +lean_dec(x_290); +x_304 = lean_ctor_get(x_291, 0); +lean_inc(x_304); +lean_dec(x_291); +x_3 = x_304; +x_8 = x_303; +goto _start; +} +} +else +{ +uint8_t x_306; +lean_dec(x_245); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_306 = !lean_is_exclusive(x_290); +if (x_306 == 0) +{ +return x_290; +} +else +{ +lean_object* x_307; lean_object* x_308; lean_object* x_309; +x_307 = lean_ctor_get(x_290, 0); +x_308 = lean_ctor_get(x_290, 1); +lean_inc(x_308); +lean_inc(x_307); +lean_dec(x_290); +x_309 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_309, 0, x_307); +lean_ctor_set(x_309, 1, x_308); +return x_309; +} +} +} +else +{ +lean_object* x_310; +x_310 = lean_box(0); +x_257 = x_310; +goto block_285; +} +} +else +{ +lean_object* x_311; +lean_dec(x_255); +x_311 = lean_box(0); +x_257 = x_311; +goto block_285; +} +block_285: +{ +lean_object* x_258; +lean_dec(x_257); +x_258 = l_Lean_ConstantInfo_value_x3f(x_250); +lean_dec(x_250); +if (lean_obj_tag(x_258) == 0) +{ +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_dec(x_252); +lean_dec(x_248); +lean_dec(x_246); +lean_dec(x_244); +lean_dec(x_240); +lean_dec(x_233); +lean_dec(x_1); +x_259 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_259, 0, x_245); +x_260 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_261 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_261, 0, x_260); +lean_ctor_set(x_261, 1, x_259); +x_262 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_263 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_263, 0, x_261); +lean_ctor_set(x_263, 1, x_262); +x_264 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_264, 0, x_10); +x_265 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_265, 0, x_263); +lean_ctor_set(x_265, 1, x_264); +x_266 = l_Lean_KernelException_toMessageData___closed__3; +x_267 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_267, 0, x_265); +lean_ctor_set(x_267, 1, x_266); +x_268 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_267, x_4, x_5, x_6, x_7, x_256); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_268; +} +else +{ +lean_object* x_269; lean_object* x_270; +lean_dec(x_245); +lean_dec(x_10); +x_269 = lean_ctor_get(x_258, 0); +lean_inc(x_269); +lean_dec(x_258); +x_270 = l_Lean_Environment_getModuleIdxFor_x3f(x_244, x_233); +lean_dec(x_244); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; +x_271 = lean_box(0); +x_272 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__14(x_1, x_269, x_2, x_252, x_248, x_246, x_233, x_240, x_271, x_4, x_5, x_6, x_7, x_256); +return x_272; +} +else +{ +lean_dec(x_270); +if (x_2 == 0) +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; uint8_t x_279; +lean_dec(x_269); +lean_dec(x_252); +lean_dec(x_248); +lean_dec(x_246); +lean_dec(x_240); +lean_dec(x_1); +x_273 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_273, 0, x_233); +x_274 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_275 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_275, 0, x_274); +lean_ctor_set(x_275, 1, x_273); +x_276 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_277 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_277, 0, x_275); +lean_ctor_set(x_277, 1, x_276); +x_278 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_277, x_4, x_5, x_6, x_7, x_256); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_279 = !lean_is_exclusive(x_278); +if (x_279 == 0) +{ +return x_278; +} +else +{ +lean_object* x_280; lean_object* x_281; lean_object* x_282; +x_280 = lean_ctor_get(x_278, 0); +x_281 = lean_ctor_get(x_278, 1); +lean_inc(x_281); +lean_inc(x_280); +lean_dec(x_278); +x_282 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_282, 0, x_280); +lean_ctor_set(x_282, 1, x_281); +return x_282; +} +} +else +{ +lean_object* x_283; lean_object* x_284; +x_283 = lean_box(0); +x_284 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__14(x_1, x_269, x_2, x_252, x_248, x_246, x_233, x_240, x_283, x_4, x_5, x_6, x_7, x_256); +return x_284; +} } } } } 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_dec(x_218); -lean_dec(x_1); -x_312 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_312, 0, x_10); -x_313 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_314 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_314, 0, x_313); -lean_ctor_set(x_314, 1, x_312); -x_315 = l_Lean_KernelException_toMessageData___closed__3; -x_316 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_316, 0, x_314); -lean_ctor_set(x_316, 1, x_315); -x_317 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_316, x_4, x_5, x_6, x_7, x_217); +uint8_t x_312; +lean_dec(x_252); +lean_dec(x_250); +lean_dec(x_248); +lean_dec(x_246); +lean_dec(x_245); +lean_dec(x_244); +lean_dec(x_240); +lean_dec(x_233); +lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_317; +lean_dec(x_1); +x_312 = !lean_is_exclusive(x_254); +if (x_312 == 0) +{ +return x_254; +} +else +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; +x_313 = lean_ctor_get(x_254, 0); +x_314 = lean_ctor_get(x_254, 1); +lean_inc(x_314); +lean_inc(x_313); +lean_dec(x_254); +x_315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_315, 0, x_313); +lean_ctor_set(x_315, 1, x_314); +return x_315; +} +} +} +else +{ +uint8_t x_316; +lean_dec(x_248); +lean_dec(x_246); +lean_dec(x_245); +lean_dec(x_244); +lean_dec(x_240); +lean_dec(x_233); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_316 = !lean_is_exclusive(x_249); +if (x_316 == 0) +{ +return x_249; +} +else +{ +lean_object* x_317; lean_object* x_318; lean_object* x_319; +x_317 = lean_ctor_get(x_249, 0); +x_318 = lean_ctor_get(x_249, 1); +lean_inc(x_318); +lean_inc(x_317); +lean_dec(x_249); +x_319 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_319, 0, x_317); +lean_ctor_set(x_319, 1, x_318); +return x_319; +} +} +} +else +{ +lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; +lean_dec(x_246); +lean_dec(x_245); +lean_dec(x_244); +lean_dec(x_233); +lean_dec(x_10); +x_320 = lean_ctor_get(x_247, 0); +lean_inc(x_320); +lean_dec(x_247); +x_321 = lean_box(0); +x_322 = l_Lean_mkConst(x_320, x_321); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_322); +x_323 = l_Lean_Meta_inferType(x_322, x_4, x_5, x_6, x_7, x_243); +if (lean_obj_tag(x_323) == 0) +{ +lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; +x_324 = lean_ctor_get(x_323, 0); +lean_inc(x_324); +x_325 = lean_ctor_get(x_323, 1); +lean_inc(x_325); +lean_dec(x_323); +x_326 = lean_box(x_2); +x_327 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__15___boxed), 11, 4); +lean_closure_set(x_327, 0, x_240); +lean_closure_set(x_327, 1, x_1); +lean_closure_set(x_327, 2, x_326); +lean_closure_set(x_327, 3, x_322); +x_328 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_324, x_327, x_4, x_5, x_6, x_7, x_325); +return x_328; +} +else +{ +uint8_t x_329; +lean_dec(x_322); +lean_dec(x_240); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_329 = !lean_is_exclusive(x_323); +if (x_329 == 0) +{ +return x_323; +} +else +{ +lean_object* x_330; lean_object* x_331; lean_object* x_332; +x_330 = lean_ctor_get(x_323, 0); +x_331 = lean_ctor_get(x_323, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_323); +x_332 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_332, 0, x_330); +lean_ctor_set(x_332, 1, x_331); +return x_332; +} +} +} +} +else +{ +lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; +lean_dec(x_232); +lean_dec(x_1); +x_333 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_333, 0, x_10); +x_334 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_335 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_335, 0, x_334); +lean_ctor_set(x_335, 1, x_333); +x_336 = l_Lean_KernelException_toMessageData___closed__3; +x_337 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_337, 0, x_335); +lean_ctor_set(x_337, 1, x_336); +x_338 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_337, x_4, x_5, x_6, x_7, x_231); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_338; } } case 4: { -lean_object* x_318; lean_object* x_319; -x_318 = lean_ctor_get(x_9, 1); -lean_inc(x_318); +lean_object* x_339; lean_object* x_340; +x_339 = lean_ctor_get(x_9, 1); +lean_inc(x_339); lean_dec(x_9); -x_319 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_319) == 4) +x_340 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_340) == 4) { -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; -x_320 = lean_ctor_get(x_319, 0); -lean_inc(x_320); -lean_dec(x_319); -x_321 = lean_st_ref_get(x_7, x_318); -x_322 = lean_ctor_get(x_321, 0); -lean_inc(x_322); -x_323 = lean_ctor_get(x_321, 1); -lean_inc(x_323); -lean_dec(x_321); -x_324 = lean_ctor_get(x_322, 0); -lean_inc(x_324); -lean_dec(x_322); -x_325 = lean_ctor_get(x_1, 0); -lean_inc(x_325); -x_326 = lean_ctor_get(x_1, 2); -lean_inc(x_326); -x_327 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_326, x_324, x_320); -if (lean_obj_tag(x_327) == 0) +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; +x_341 = lean_ctor_get(x_340, 0); +lean_inc(x_341); +lean_dec(x_340); +x_342 = lean_unsigned_to_nat(0u); +x_343 = l_Lean_Expr_getAppNumArgsAux(x_10, x_342); +x_344 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_343); +x_345 = lean_mk_array(x_343, x_344); +x_346 = lean_unsigned_to_nat(1u); +x_347 = lean_nat_sub(x_343, x_346); +lean_dec(x_343); +lean_inc(x_10); +x_348 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_345, x_347); +x_349 = lean_st_ref_get(x_7, x_339); +x_350 = lean_ctor_get(x_349, 0); +lean_inc(x_350); +x_351 = lean_ctor_get(x_349, 1); +lean_inc(x_351); +lean_dec(x_349); +x_352 = lean_ctor_get(x_350, 0); +lean_inc(x_352); +lean_dec(x_350); +x_353 = lean_ctor_get(x_1, 0); +lean_inc(x_353); +x_354 = lean_ctor_get(x_1, 2); +lean_inc(x_354); +x_355 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_354, x_352, x_341); +if (lean_obj_tag(x_355) == 0) { -lean_object* x_328; lean_object* x_329; -lean_inc(x_325); -x_328 = l_Lean_Name_append(x_320, x_325); -lean_inc(x_320); -x_329 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_320, x_4, x_5, x_6, x_7, x_323); -if (lean_obj_tag(x_329) == 0) +lean_object* x_356; lean_object* x_357; +lean_inc(x_353); +x_356 = l_Lean_Name_append(x_341, x_353); +lean_inc(x_341); +x_357 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_341, x_4, x_5, x_6, x_7, x_351); +if (lean_obj_tag(x_357) == 0) { -lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_330 = lean_ctor_get(x_329, 0); -lean_inc(x_330); -x_331 = lean_ctor_get(x_329, 1); -lean_inc(x_331); -lean_dec(x_329); -x_332 = l_Lean_ConstantInfo_type(x_330); -x_333 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; +x_358 = lean_ctor_get(x_357, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_357, 1); +lean_inc(x_359); +lean_dec(x_357); +x_360 = l_Lean_ConstantInfo_type(x_358); +x_361 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_332); -x_334 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_332, x_333, x_4, x_5, x_6, x_7, x_331); -if (lean_obj_tag(x_334) == 0) +lean_inc(x_360); +x_362 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_360, x_361, x_4, x_5, x_6, x_7, x_359); +if (lean_obj_tag(x_362) == 0) { -lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_366; uint8_t x_367; -x_335 = lean_ctor_get(x_334, 0); -lean_inc(x_335); -x_336 = lean_ctor_get(x_334, 1); -lean_inc(x_336); -lean_dec(x_334); -x_366 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_367 = l_Lean_Expr_isConstOf(x_335, x_366); -if (x_367 == 0) +lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_394; uint8_t x_395; +x_363 = lean_ctor_get(x_362, 0); +lean_inc(x_363); +x_364 = lean_ctor_get(x_362, 1); +lean_inc(x_364); +lean_dec(x_362); +x_394 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_395 = l_Lean_Expr_isConstOf(x_363, x_394); +if (x_395 == 0) { -lean_object* x_368; uint8_t x_369; -x_368 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_369 = l_Lean_Expr_isConstOf(x_335, x_368); -lean_dec(x_335); -if (x_369 == 0) +lean_object* x_396; uint8_t x_397; +x_396 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_397 = l_Lean_Expr_isConstOf(x_363, x_396); +lean_dec(x_363); +if (x_397 == 0) { -lean_object* x_370; -lean_dec(x_332); -lean_dec(x_330); -lean_dec(x_328); -lean_dec(x_326); -lean_dec(x_324); -lean_dec(x_320); +lean_object* x_398; +lean_dec(x_360); +lean_dec(x_358); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_352); +lean_dec(x_348); +lean_dec(x_341); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_370 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_336); -if (lean_obj_tag(x_370) == 0) +x_398 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_364); +if (lean_obj_tag(x_398) == 0) { -lean_object* x_371; -x_371 = lean_ctor_get(x_370, 0); -lean_inc(x_371); -if (lean_obj_tag(x_371) == 0) +lean_object* x_399; +x_399 = lean_ctor_get(x_398, 0); +lean_inc(x_399); +if (lean_obj_tag(x_399) == 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_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_dec(x_1); -x_372 = lean_ctor_get(x_370, 1); -lean_inc(x_372); -lean_dec(x_370); -x_373 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_373, 0, x_325); -x_374 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_375 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_375, 0, x_374); -lean_ctor_set(x_375, 1, x_373); -x_376 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_377 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_377, 0, x_375); -lean_ctor_set(x_377, 1, x_376); -x_378 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_378, 0, x_10); -x_379 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_379, 0, x_377); -lean_ctor_set(x_379, 1, x_378); -x_380 = l_Lean_KernelException_toMessageData___closed__3; -x_381 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_381, 0, x_379); -lean_ctor_set(x_381, 1, x_380); -x_382 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_381, x_4, x_5, x_6, x_7, x_372); +x_400 = lean_ctor_get(x_398, 1); +lean_inc(x_400); +lean_dec(x_398); +x_401 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_401, 0, x_353); +x_402 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_403 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_403, 0, x_402); +lean_ctor_set(x_403, 1, x_401); +x_404 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_405 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_405, 0, x_403); +lean_ctor_set(x_405, 1, x_404); +x_406 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_406, 0, x_10); +x_407 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_407, 0, x_405); +lean_ctor_set(x_407, 1, x_406); +x_408 = l_Lean_KernelException_toMessageData___closed__3; +x_409 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_409, 0, x_407); +lean_ctor_set(x_409, 1, x_408); +x_410 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_409, x_4, x_5, x_6, x_7, x_400); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_382; +return x_410; } else { -lean_object* x_383; lean_object* x_384; -lean_dec(x_325); +lean_object* x_411; lean_object* x_412; +lean_dec(x_353); lean_dec(x_10); -x_383 = lean_ctor_get(x_370, 1); -lean_inc(x_383); -lean_dec(x_370); -x_384 = lean_ctor_get(x_371, 0); -lean_inc(x_384); -lean_dec(x_371); -x_3 = x_384; -x_8 = x_383; +x_411 = lean_ctor_get(x_398, 1); +lean_inc(x_411); +lean_dec(x_398); +x_412 = lean_ctor_get(x_399, 0); +lean_inc(x_412); +lean_dec(x_399); +x_3 = x_412; +x_8 = x_411; goto _start; } } else { -uint8_t x_386; -lean_dec(x_325); +uint8_t x_414; +lean_dec(x_353); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_386 = !lean_is_exclusive(x_370); -if (x_386 == 0) +x_414 = !lean_is_exclusive(x_398); +if (x_414 == 0) { -return x_370; +return x_398; } else { -lean_object* x_387; lean_object* x_388; lean_object* x_389; -x_387 = lean_ctor_get(x_370, 0); -x_388 = lean_ctor_get(x_370, 1); -lean_inc(x_388); -lean_inc(x_387); -lean_dec(x_370); -x_389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_388); -return x_389; +lean_object* x_415; lean_object* x_416; lean_object* x_417; +x_415 = lean_ctor_get(x_398, 0); +x_416 = lean_ctor_get(x_398, 1); +lean_inc(x_416); +lean_inc(x_415); +lean_dec(x_398); +x_417 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_417, 0, x_415); +lean_ctor_set(x_417, 1, x_416); +return x_417; } } } else { -lean_object* x_390; -x_390 = lean_box(0); -x_337 = x_390; -goto block_365; +lean_object* x_418; +x_418 = lean_box(0); +x_365 = x_418; +goto block_393; } } else { -lean_object* x_391; -lean_dec(x_335); -x_391 = lean_box(0); -x_337 = x_391; -goto block_365; +lean_object* x_419; +lean_dec(x_363); +x_419 = lean_box(0); +x_365 = x_419; +goto block_393; } -block_365: +block_393: { -lean_object* x_338; -lean_dec(x_337); -x_338 = l_Lean_ConstantInfo_value_x3f(x_330); -lean_dec(x_330); -if (lean_obj_tag(x_338) == 0) +lean_object* x_366; +lean_dec(x_365); +x_366 = l_Lean_ConstantInfo_value_x3f(x_358); +lean_dec(x_358); +if (lean_obj_tag(x_366) == 0) { -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_dec(x_332); -lean_dec(x_328); -lean_dec(x_326); -lean_dec(x_324); -lean_dec(x_320); +lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; +lean_dec(x_360); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_352); +lean_dec(x_348); +lean_dec(x_341); lean_dec(x_1); -x_339 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_339, 0, x_325); -x_340 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_341 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_341, 0, x_340); -lean_ctor_set(x_341, 1, x_339); -x_342 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_343 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_343, 0, x_341); -lean_ctor_set(x_343, 1, x_342); -x_344 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_344, 0, x_10); -x_345 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_345, 0, x_343); -lean_ctor_set(x_345, 1, x_344); -x_346 = l_Lean_KernelException_toMessageData___closed__3; -x_347 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_347, 0, x_345); -lean_ctor_set(x_347, 1, x_346); -x_348 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_347, x_4, x_5, x_6, x_7, x_336); +x_367 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_367, 0, x_353); +x_368 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_369 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_369, 0, x_368); +lean_ctor_set(x_369, 1, x_367); +x_370 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_371 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_371, 0, x_369); +lean_ctor_set(x_371, 1, x_370); +x_372 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_372, 0, x_10); +x_373 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_373, 0, x_371); +lean_ctor_set(x_373, 1, x_372); +x_374 = l_Lean_KernelException_toMessageData___closed__3; +x_375 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_375, 0, x_373); +lean_ctor_set(x_375, 1, x_374); +x_376 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_375, x_4, x_5, x_6, x_7, x_364); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_348; +return x_376; } else { -lean_object* x_349; lean_object* x_350; -lean_dec(x_325); -x_349 = lean_ctor_get(x_338, 0); -lean_inc(x_349); -lean_dec(x_338); -x_350 = l_Lean_Environment_getModuleIdxFor_x3f(x_324, x_320); -lean_dec(x_324); -if (lean_obj_tag(x_350) == 0) +lean_object* x_377; lean_object* x_378; +lean_dec(x_353); +lean_dec(x_10); +x_377 = lean_ctor_get(x_366, 0); +lean_inc(x_377); +lean_dec(x_366); +x_378 = l_Lean_Environment_getModuleIdxFor_x3f(x_352, x_341); +lean_dec(x_352); +if (lean_obj_tag(x_378) == 0) { -lean_object* x_351; lean_object* x_352; -x_351 = lean_box(0); -x_352 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__19(x_1, x_349, x_2, x_332, x_328, x_326, x_320, x_10, x_351, x_4, x_5, x_6, x_7, x_336); -return x_352; +lean_object* x_379; lean_object* x_380; +x_379 = lean_box(0); +x_380 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__19(x_1, x_377, x_2, x_360, x_356, x_354, x_341, x_348, x_379, x_4, x_5, x_6, x_7, x_364); +return x_380; } else { -lean_dec(x_350); +lean_dec(x_378); if (x_2 == 0) { -lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; -lean_dec(x_349); -lean_dec(x_332); -lean_dec(x_328); -lean_dec(x_326); -lean_dec(x_10); +lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; uint8_t x_387; +lean_dec(x_377); +lean_dec(x_360); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_348); lean_dec(x_1); -x_353 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_353, 0, x_320); -x_354 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_355 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_355, 0, x_354); -lean_ctor_set(x_355, 1, x_353); -x_356 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_357 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -x_358 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_357, x_4, x_5, x_6, x_7, x_336); +x_381 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_381, 0, x_341); +x_382 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_383 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_383, 0, x_382); +lean_ctor_set(x_383, 1, x_381); +x_384 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_385 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_385, 0, x_383); +lean_ctor_set(x_385, 1, x_384); +x_386 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_385, x_4, x_5, x_6, x_7, x_364); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_359 = !lean_is_exclusive(x_358); -if (x_359 == 0) +x_387 = !lean_is_exclusive(x_386); +if (x_387 == 0) { -return x_358; +return x_386; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; -x_360 = lean_ctor_get(x_358, 0); -x_361 = lean_ctor_get(x_358, 1); -lean_inc(x_361); -lean_inc(x_360); +lean_object* x_388; lean_object* x_389; lean_object* x_390; +x_388 = lean_ctor_get(x_386, 0); +x_389 = lean_ctor_get(x_386, 1); +lean_inc(x_389); +lean_inc(x_388); +lean_dec(x_386); +x_390 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_390, 0, x_388); +lean_ctor_set(x_390, 1, x_389); +return x_390; +} +} +else +{ +lean_object* x_391; lean_object* x_392; +x_391 = lean_box(0); +x_392 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__19(x_1, x_377, x_2, x_360, x_356, x_354, x_341, x_348, x_391, x_4, x_5, x_6, x_7, x_364); +return x_392; +} +} +} +} +} +else +{ +uint8_t x_420; +lean_dec(x_360); lean_dec(x_358); -x_362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_362, 0, x_360); -lean_ctor_set(x_362, 1, x_361); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_353); +lean_dec(x_352); +lean_dec(x_348); +lean_dec(x_341); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_420 = !lean_is_exclusive(x_362); +if (x_420 == 0) +{ return x_362; } -} else { -lean_object* x_363; lean_object* x_364; -x_363 = lean_box(0); -x_364 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__19(x_1, x_349, x_2, x_332, x_328, x_326, x_320, x_10, x_363, x_4, x_5, x_6, x_7, x_336); -return x_364; -} -} +lean_object* x_421; lean_object* x_422; lean_object* x_423; +x_421 = lean_ctor_get(x_362, 0); +x_422 = lean_ctor_get(x_362, 1); +lean_inc(x_422); +lean_inc(x_421); +lean_dec(x_362); +x_423 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_423, 0, x_421); +lean_ctor_set(x_423, 1, x_422); +return x_423; } } } else { -uint8_t x_392; -lean_dec(x_332); -lean_dec(x_330); -lean_dec(x_328); -lean_dec(x_326); -lean_dec(x_325); -lean_dec(x_324); -lean_dec(x_320); +uint8_t x_424; +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_353); +lean_dec(x_352); +lean_dec(x_348); +lean_dec(x_341); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_392 = !lean_is_exclusive(x_334); -if (x_392 == 0) +x_424 = !lean_is_exclusive(x_357); +if (x_424 == 0) { -return x_334; +return x_357; } else { -lean_object* x_393; lean_object* x_394; lean_object* x_395; -x_393 = lean_ctor_get(x_334, 0); -x_394 = lean_ctor_get(x_334, 1); -lean_inc(x_394); -lean_inc(x_393); -lean_dec(x_334); -x_395 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_395, 0, x_393); -lean_ctor_set(x_395, 1, x_394); -return x_395; +lean_object* x_425; lean_object* x_426; lean_object* x_427; +x_425 = lean_ctor_get(x_357, 0); +x_426 = lean_ctor_get(x_357, 1); +lean_inc(x_426); +lean_inc(x_425); +lean_dec(x_357); +x_427 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_427, 0, x_425); +lean_ctor_set(x_427, 1, x_426); +return x_427; } } } else { -uint8_t x_396; -lean_dec(x_328); -lean_dec(x_326); -lean_dec(x_325); -lean_dec(x_324); -lean_dec(x_320); +lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_dec(x_354); +lean_dec(x_353); +lean_dec(x_352); +lean_dec(x_341); lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_396 = !lean_is_exclusive(x_329); -if (x_396 == 0) -{ -return x_329; -} -else -{ -lean_object* x_397; lean_object* x_398; lean_object* x_399; -x_397 = lean_ctor_get(x_329, 0); -x_398 = lean_ctor_get(x_329, 1); -lean_inc(x_398); -lean_inc(x_397); -lean_dec(x_329); -x_399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_399, 0, x_397); -lean_ctor_set(x_399, 1, x_398); -return x_399; -} -} -} -else -{ -lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; -lean_dec(x_326); -lean_dec(x_325); -lean_dec(x_324); -lean_dec(x_320); -x_400 = lean_ctor_get(x_327, 0); -lean_inc(x_400); -lean_dec(x_327); -x_401 = lean_box(0); -x_402 = l_Lean_mkConst(x_400, x_401); +x_428 = lean_ctor_get(x_355, 0); +lean_inc(x_428); +lean_dec(x_355); +x_429 = lean_box(0); +x_430 = l_Lean_mkConst(x_428, x_429); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_402); -x_403 = l_Lean_Meta_inferType(x_402, x_4, x_5, x_6, x_7, x_323); -if (lean_obj_tag(x_403) == 0) +lean_inc(x_430); +x_431 = l_Lean_Meta_inferType(x_430, x_4, x_5, x_6, x_7, x_351); +if (lean_obj_tag(x_431) == 0) { -lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; -x_404 = lean_ctor_get(x_403, 0); -lean_inc(x_404); -x_405 = lean_ctor_get(x_403, 1); -lean_inc(x_405); -lean_dec(x_403); -x_406 = lean_box(x_2); -x_407 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__20___boxed), 11, 4); -lean_closure_set(x_407, 0, x_10); -lean_closure_set(x_407, 1, x_1); -lean_closure_set(x_407, 2, x_406); -lean_closure_set(x_407, 3, x_402); -x_408 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_404, x_407, x_4, x_5, x_6, x_7, x_405); -return x_408; +lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; +x_432 = lean_ctor_get(x_431, 0); +lean_inc(x_432); +x_433 = lean_ctor_get(x_431, 1); +lean_inc(x_433); +lean_dec(x_431); +x_434 = lean_box(x_2); +x_435 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__20___boxed), 11, 4); +lean_closure_set(x_435, 0, x_348); +lean_closure_set(x_435, 1, x_1); +lean_closure_set(x_435, 2, x_434); +lean_closure_set(x_435, 3, x_430); +x_436 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_432, x_435, x_4, x_5, x_6, x_7, x_433); +return x_436; } else { -uint8_t x_409; -lean_dec(x_402); -lean_dec(x_10); +uint8_t x_437; +lean_dec(x_430); +lean_dec(x_348); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_409 = !lean_is_exclusive(x_403); -if (x_409 == 0) +x_437 = !lean_is_exclusive(x_431); +if (x_437 == 0) { -return x_403; +return x_431; } else { -lean_object* x_410; lean_object* x_411; lean_object* x_412; -x_410 = lean_ctor_get(x_403, 0); -x_411 = lean_ctor_get(x_403, 1); -lean_inc(x_411); -lean_inc(x_410); -lean_dec(x_403); -x_412 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_412, 0, x_410); -lean_ctor_set(x_412, 1, x_411); -return x_412; +lean_object* x_438; lean_object* x_439; lean_object* x_440; +x_438 = lean_ctor_get(x_431, 0); +x_439 = lean_ctor_get(x_431, 1); +lean_inc(x_439); +lean_inc(x_438); +lean_dec(x_431); +x_440 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_440, 0, x_438); +lean_ctor_set(x_440, 1, x_439); +return x_440; } } } } else { -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_dec(x_319); +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_dec(x_340); lean_dec(x_1); -x_413 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_413, 0, x_10); -x_414 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_415 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_415, 0, x_414); -lean_ctor_set(x_415, 1, x_413); -x_416 = l_Lean_KernelException_toMessageData___closed__3; -x_417 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_417, 0, x_415); -lean_ctor_set(x_417, 1, x_416); -x_418 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_417, x_4, x_5, x_6, x_7, x_318); +x_441 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_441, 0, x_10); +x_442 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_443 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_443, 0, x_442); +lean_ctor_set(x_443, 1, x_441); +x_444 = l_Lean_KernelException_toMessageData___closed__3; +x_445 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_445, 0, x_443); +lean_ctor_set(x_445, 1, x_444); +x_446 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_445, x_4, x_5, x_6, x_7, x_339); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_418; +return x_446; } } case 5: { -lean_object* x_419; lean_object* x_420; -x_419 = lean_ctor_get(x_9, 1); -lean_inc(x_419); +lean_object* x_447; lean_object* x_448; +x_447 = lean_ctor_get(x_9, 1); +lean_inc(x_447); lean_dec(x_9); -x_420 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_420) == 4) +x_448 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_448) == 4) { -lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; -x_421 = lean_ctor_get(x_420, 0); -lean_inc(x_421); -lean_dec(x_420); -x_422 = lean_st_ref_get(x_7, x_419); -x_423 = lean_ctor_get(x_422, 0); -lean_inc(x_423); -x_424 = lean_ctor_get(x_422, 1); -lean_inc(x_424); -lean_dec(x_422); -x_425 = lean_ctor_get(x_423, 0); -lean_inc(x_425); -lean_dec(x_423); -x_426 = lean_ctor_get(x_1, 0); -lean_inc(x_426); -x_427 = lean_ctor_get(x_1, 2); -lean_inc(x_427); -x_428 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_427, x_425, x_421); -if (lean_obj_tag(x_428) == 0) +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; +x_449 = lean_ctor_get(x_448, 0); +lean_inc(x_449); +lean_dec(x_448); +x_450 = lean_unsigned_to_nat(0u); +x_451 = l_Lean_Expr_getAppNumArgsAux(x_10, x_450); +x_452 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_451); +x_453 = lean_mk_array(x_451, x_452); +x_454 = lean_unsigned_to_nat(1u); +x_455 = lean_nat_sub(x_451, x_454); +lean_dec(x_451); +lean_inc(x_10); +x_456 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_453, x_455); +x_457 = lean_st_ref_get(x_7, x_447); +x_458 = lean_ctor_get(x_457, 0); +lean_inc(x_458); +x_459 = lean_ctor_get(x_457, 1); +lean_inc(x_459); +lean_dec(x_457); +x_460 = lean_ctor_get(x_458, 0); +lean_inc(x_460); +lean_dec(x_458); +x_461 = lean_ctor_get(x_1, 0); +lean_inc(x_461); +x_462 = lean_ctor_get(x_1, 2); +lean_inc(x_462); +x_463 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_462, x_460, x_449); +if (lean_obj_tag(x_463) == 0) { -lean_object* x_429; lean_object* x_430; -lean_inc(x_426); -x_429 = l_Lean_Name_append(x_421, x_426); -lean_inc(x_421); -x_430 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_421, x_4, x_5, x_6, x_7, x_424); -if (lean_obj_tag(x_430) == 0) +lean_object* x_464; lean_object* x_465; +lean_inc(x_461); +x_464 = l_Lean_Name_append(x_449, x_461); +lean_inc(x_449); +x_465 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_449, x_4, x_5, x_6, x_7, x_459); +if (lean_obj_tag(x_465) == 0) { -lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; -x_431 = lean_ctor_get(x_430, 0); -lean_inc(x_431); -x_432 = lean_ctor_get(x_430, 1); -lean_inc(x_432); -lean_dec(x_430); -x_433 = l_Lean_ConstantInfo_type(x_431); -x_434 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; +x_466 = lean_ctor_get(x_465, 0); +lean_inc(x_466); +x_467 = lean_ctor_get(x_465, 1); +lean_inc(x_467); +lean_dec(x_465); +x_468 = l_Lean_ConstantInfo_type(x_466); +x_469 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_433); -x_435 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_433, x_434, x_4, x_5, x_6, x_7, x_432); -if (lean_obj_tag(x_435) == 0) +lean_inc(x_468); +x_470 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_468, x_469, x_4, x_5, x_6, x_7, x_467); +if (lean_obj_tag(x_470) == 0) { -lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_467; uint8_t x_468; -x_436 = lean_ctor_get(x_435, 0); -lean_inc(x_436); -x_437 = lean_ctor_get(x_435, 1); -lean_inc(x_437); -lean_dec(x_435); -x_467 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_468 = l_Lean_Expr_isConstOf(x_436, x_467); -if (x_468 == 0) +lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_502; uint8_t x_503; +x_471 = lean_ctor_get(x_470, 0); +lean_inc(x_471); +x_472 = lean_ctor_get(x_470, 1); +lean_inc(x_472); +lean_dec(x_470); +x_502 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_503 = l_Lean_Expr_isConstOf(x_471, x_502); +if (x_503 == 0) { -lean_object* x_469; uint8_t x_470; -x_469 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_470 = l_Lean_Expr_isConstOf(x_436, x_469); -lean_dec(x_436); -if (x_470 == 0) +lean_object* x_504; uint8_t x_505; +x_504 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_505 = l_Lean_Expr_isConstOf(x_471, x_504); +lean_dec(x_471); +if (x_505 == 0) { -lean_object* x_471; -lean_dec(x_433); -lean_dec(x_431); -lean_dec(x_429); -lean_dec(x_427); -lean_dec(x_425); -lean_dec(x_421); +lean_object* x_506; +lean_dec(x_468); +lean_dec(x_466); +lean_dec(x_464); +lean_dec(x_462); +lean_dec(x_460); +lean_dec(x_456); +lean_dec(x_449); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_471 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_437); -if (lean_obj_tag(x_471) == 0) +x_506 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_472); +if (lean_obj_tag(x_506) == 0) { -lean_object* x_472; -x_472 = lean_ctor_get(x_471, 0); -lean_inc(x_472); -if (lean_obj_tag(x_472) == 0) +lean_object* x_507; +x_507 = lean_ctor_get(x_506, 0); +lean_inc(x_507); +if (lean_obj_tag(x_507) == 0) { -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_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_dec(x_1); -x_473 = lean_ctor_get(x_471, 1); -lean_inc(x_473); -lean_dec(x_471); -x_474 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_474, 0, x_426); -x_475 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_476 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_476, 0, x_475); -lean_ctor_set(x_476, 1, x_474); -x_477 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_478 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_478, 0, x_476); -lean_ctor_set(x_478, 1, x_477); -x_479 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_479, 0, x_10); -x_480 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_480, 0, x_478); -lean_ctor_set(x_480, 1, x_479); -x_481 = l_Lean_KernelException_toMessageData___closed__3; -x_482 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_482, 0, x_480); -lean_ctor_set(x_482, 1, x_481); -x_483 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_482, x_4, x_5, x_6, x_7, x_473); +x_508 = lean_ctor_get(x_506, 1); +lean_inc(x_508); +lean_dec(x_506); +x_509 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_509, 0, x_461); +x_510 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_511 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_511, 0, x_510); +lean_ctor_set(x_511, 1, x_509); +x_512 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_513 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_513, 0, x_511); +lean_ctor_set(x_513, 1, x_512); +x_514 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_514, 0, x_10); +x_515 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_515, 0, x_513); +lean_ctor_set(x_515, 1, x_514); +x_516 = l_Lean_KernelException_toMessageData___closed__3; +x_517 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_517, 0, x_515); +lean_ctor_set(x_517, 1, x_516); +x_518 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_517, x_4, x_5, x_6, x_7, x_508); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_483; +return x_518; } else { -lean_object* x_484; lean_object* x_485; -lean_dec(x_426); +lean_object* x_519; lean_object* x_520; +lean_dec(x_461); lean_dec(x_10); -x_484 = lean_ctor_get(x_471, 1); -lean_inc(x_484); -lean_dec(x_471); -x_485 = lean_ctor_get(x_472, 0); -lean_inc(x_485); -lean_dec(x_472); -x_3 = x_485; -x_8 = x_484; +x_519 = lean_ctor_get(x_506, 1); +lean_inc(x_519); +lean_dec(x_506); +x_520 = lean_ctor_get(x_507, 0); +lean_inc(x_520); +lean_dec(x_507); +x_3 = x_520; +x_8 = x_519; goto _start; } } else { -uint8_t x_487; -lean_dec(x_426); +uint8_t x_522; +lean_dec(x_461); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_487 = !lean_is_exclusive(x_471); -if (x_487 == 0) +x_522 = !lean_is_exclusive(x_506); +if (x_522 == 0) { -return x_471; +return x_506; } else { -lean_object* x_488; lean_object* x_489; lean_object* x_490; -x_488 = lean_ctor_get(x_471, 0); -x_489 = lean_ctor_get(x_471, 1); -lean_inc(x_489); -lean_inc(x_488); +lean_object* x_523; lean_object* x_524; lean_object* x_525; +x_523 = lean_ctor_get(x_506, 0); +x_524 = lean_ctor_get(x_506, 1); +lean_inc(x_524); +lean_inc(x_523); +lean_dec(x_506); +x_525 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_525, 0, x_523); +lean_ctor_set(x_525, 1, x_524); +return x_525; +} +} +} +else +{ +lean_object* x_526; +x_526 = lean_box(0); +x_473 = x_526; +goto block_501; +} +} +else +{ +lean_object* x_527; lean_dec(x_471); -x_490 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_490, 0, x_488); -lean_ctor_set(x_490, 1, x_489); -return x_490; +x_527 = lean_box(0); +x_473 = x_527; +goto block_501; } -} -} -else +block_501: { -lean_object* x_491; -x_491 = lean_box(0); -x_438 = x_491; -goto block_466; -} -} -else +lean_object* x_474; +lean_dec(x_473); +x_474 = l_Lean_ConstantInfo_value_x3f(x_466); +lean_dec(x_466); +if (lean_obj_tag(x_474) == 0) { -lean_object* x_492; -lean_dec(x_436); -x_492 = lean_box(0); -x_438 = x_492; -goto block_466; -} -block_466: -{ -lean_object* x_439; -lean_dec(x_438); -x_439 = l_Lean_ConstantInfo_value_x3f(x_431); -lean_dec(x_431); -if (lean_obj_tag(x_439) == 0) -{ -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_dec(x_433); -lean_dec(x_429); -lean_dec(x_427); -lean_dec(x_425); -lean_dec(x_421); +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_dec(x_468); +lean_dec(x_464); +lean_dec(x_462); +lean_dec(x_460); +lean_dec(x_456); +lean_dec(x_449); lean_dec(x_1); -x_440 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_440, 0, x_426); -x_441 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_442 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_442, 0, x_441); -lean_ctor_set(x_442, 1, x_440); -x_443 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_444 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_444, 0, x_442); -lean_ctor_set(x_444, 1, x_443); -x_445 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_445, 0, x_10); -x_446 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_446, 0, x_444); -lean_ctor_set(x_446, 1, x_445); -x_447 = l_Lean_KernelException_toMessageData___closed__3; -x_448 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_448, 0, x_446); -lean_ctor_set(x_448, 1, x_447); -x_449 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_448, x_4, x_5, x_6, x_7, x_437); +x_475 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_475, 0, x_461); +x_476 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_477 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_477, 0, x_476); +lean_ctor_set(x_477, 1, x_475); +x_478 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_479 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_479, 0, x_477); +lean_ctor_set(x_479, 1, x_478); +x_480 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_480, 0, x_10); +x_481 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_481, 0, x_479); +lean_ctor_set(x_481, 1, x_480); +x_482 = l_Lean_KernelException_toMessageData___closed__3; +x_483 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_483, 0, x_481); +lean_ctor_set(x_483, 1, x_482); +x_484 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_483, x_4, x_5, x_6, x_7, x_472); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_449; +return x_484; } else { -lean_object* x_450; lean_object* x_451; -lean_dec(x_426); -x_450 = lean_ctor_get(x_439, 0); -lean_inc(x_450); -lean_dec(x_439); -x_451 = l_Lean_Environment_getModuleIdxFor_x3f(x_425, x_421); -lean_dec(x_425); -if (lean_obj_tag(x_451) == 0) +lean_object* x_485; lean_object* x_486; +lean_dec(x_461); +lean_dec(x_10); +x_485 = lean_ctor_get(x_474, 0); +lean_inc(x_485); +lean_dec(x_474); +x_486 = l_Lean_Environment_getModuleIdxFor_x3f(x_460, x_449); +lean_dec(x_460); +if (lean_obj_tag(x_486) == 0) { -lean_object* x_452; lean_object* x_453; -x_452 = lean_box(0); -x_453 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__24(x_1, x_450, x_2, x_433, x_429, x_427, x_421, x_10, x_452, x_4, x_5, x_6, x_7, x_437); -return x_453; +lean_object* x_487; lean_object* x_488; +x_487 = lean_box(0); +x_488 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__24(x_1, x_485, x_2, x_468, x_464, x_462, x_449, x_456, x_487, x_4, x_5, x_6, x_7, x_472); +return x_488; } else { -lean_dec(x_451); +lean_dec(x_486); if (x_2 == 0) { -lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; uint8_t x_460; -lean_dec(x_450); -lean_dec(x_433); -lean_dec(x_429); -lean_dec(x_427); -lean_dec(x_10); +lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; uint8_t x_495; +lean_dec(x_485); +lean_dec(x_468); +lean_dec(x_464); +lean_dec(x_462); +lean_dec(x_456); lean_dec(x_1); -x_454 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_454, 0, x_421); -x_455 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_456 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_456, 0, x_455); -lean_ctor_set(x_456, 1, x_454); -x_457 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_458 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_458, 0, x_456); -lean_ctor_set(x_458, 1, x_457); -x_459 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_458, x_4, x_5, x_6, x_7, x_437); +x_489 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_489, 0, x_449); +x_490 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_491 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_491, 0, x_490); +lean_ctor_set(x_491, 1, x_489); +x_492 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_493 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_493, 0, x_491); +lean_ctor_set(x_493, 1, x_492); +x_494 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_493, x_4, x_5, x_6, x_7, x_472); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_460 = !lean_is_exclusive(x_459); -if (x_460 == 0) +x_495 = !lean_is_exclusive(x_494); +if (x_495 == 0) { -return x_459; +return x_494; } else { -lean_object* x_461; lean_object* x_462; lean_object* x_463; -x_461 = lean_ctor_get(x_459, 0); -x_462 = lean_ctor_get(x_459, 1); -lean_inc(x_462); -lean_inc(x_461); -lean_dec(x_459); -x_463 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_463, 0, x_461); -lean_ctor_set(x_463, 1, x_462); -return x_463; +lean_object* x_496; lean_object* x_497; lean_object* x_498; +x_496 = lean_ctor_get(x_494, 0); +x_497 = lean_ctor_get(x_494, 1); +lean_inc(x_497); +lean_inc(x_496); +lean_dec(x_494); +x_498 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_498, 0, x_496); +lean_ctor_set(x_498, 1, x_497); +return x_498; } } else { -lean_object* x_464; lean_object* x_465; -x_464 = lean_box(0); -x_465 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__24(x_1, x_450, x_2, x_433, x_429, x_427, x_421, x_10, x_464, x_4, x_5, x_6, x_7, x_437); -return x_465; -} -} -} -} -} -else -{ -uint8_t x_493; -lean_dec(x_433); -lean_dec(x_431); -lean_dec(x_429); -lean_dec(x_427); -lean_dec(x_426); -lean_dec(x_425); -lean_dec(x_421); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_493 = !lean_is_exclusive(x_435); -if (x_493 == 0) -{ -return x_435; -} -else -{ -lean_object* x_494; lean_object* x_495; lean_object* x_496; -x_494 = lean_ctor_get(x_435, 0); -x_495 = lean_ctor_get(x_435, 1); -lean_inc(x_495); -lean_inc(x_494); -lean_dec(x_435); -x_496 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_496, 0, x_494); -lean_ctor_set(x_496, 1, x_495); -return x_496; -} -} -} -else -{ -uint8_t x_497; -lean_dec(x_429); -lean_dec(x_427); -lean_dec(x_426); -lean_dec(x_425); -lean_dec(x_421); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_497 = !lean_is_exclusive(x_430); -if (x_497 == 0) -{ -return x_430; -} -else -{ -lean_object* x_498; lean_object* x_499; lean_object* x_500; -x_498 = lean_ctor_get(x_430, 0); -x_499 = lean_ctor_get(x_430, 1); -lean_inc(x_499); -lean_inc(x_498); -lean_dec(x_430); -x_500 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_500, 0, x_498); -lean_ctor_set(x_500, 1, x_499); +lean_object* x_499; lean_object* x_500; +x_499 = lean_box(0); +x_500 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__24(x_1, x_485, x_2, x_468, x_464, x_462, x_449, x_456, x_499, x_4, x_5, x_6, x_7, x_472); return x_500; } } } -else -{ -lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; -lean_dec(x_427); -lean_dec(x_426); -lean_dec(x_425); -lean_dec(x_421); -x_501 = lean_ctor_get(x_428, 0); -lean_inc(x_501); -lean_dec(x_428); -x_502 = lean_box(0); -x_503 = l_Lean_mkConst(x_501, x_502); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_503); -x_504 = l_Lean_Meta_inferType(x_503, x_4, x_5, x_6, x_7, x_424); -if (lean_obj_tag(x_504) == 0) -{ -lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; -x_505 = lean_ctor_get(x_504, 0); -lean_inc(x_505); -x_506 = lean_ctor_get(x_504, 1); -lean_inc(x_506); -lean_dec(x_504); -x_507 = lean_box(x_2); -x_508 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__25___boxed), 11, 4); -lean_closure_set(x_508, 0, x_10); -lean_closure_set(x_508, 1, x_1); -lean_closure_set(x_508, 2, x_507); -lean_closure_set(x_508, 3, x_503); -x_509 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_505, x_508, x_4, x_5, x_6, x_7, x_506); -return x_509; +} } else { -uint8_t x_510; -lean_dec(x_503); +uint8_t x_528; +lean_dec(x_468); +lean_dec(x_466); +lean_dec(x_464); +lean_dec(x_462); +lean_dec(x_461); +lean_dec(x_460); +lean_dec(x_456); +lean_dec(x_449); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_510 = !lean_is_exclusive(x_504); -if (x_510 == 0) +x_528 = !lean_is_exclusive(x_470); +if (x_528 == 0) { -return x_504; +return x_470; } else { -lean_object* x_511; lean_object* x_512; lean_object* x_513; -x_511 = lean_ctor_get(x_504, 0); -x_512 = lean_ctor_get(x_504, 1); -lean_inc(x_512); -lean_inc(x_511); -lean_dec(x_504); -x_513 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_513, 0, x_511); -lean_ctor_set(x_513, 1, x_512); -return x_513; -} +lean_object* x_529; lean_object* x_530; lean_object* x_531; +x_529 = lean_ctor_get(x_470, 0); +x_530 = lean_ctor_get(x_470, 1); +lean_inc(x_530); +lean_inc(x_529); +lean_dec(x_470); +x_531 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_531, 0, x_529); +lean_ctor_set(x_531, 1, x_530); +return x_531; } } } else { -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_dec(x_420); -lean_dec(x_1); -x_514 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_514, 0, x_10); -x_515 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_516 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_516, 0, x_515); -lean_ctor_set(x_516, 1, x_514); -x_517 = l_Lean_KernelException_toMessageData___closed__3; -x_518 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_518, 0, x_516); -lean_ctor_set(x_518, 1, x_517); -x_519 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_518, x_4, x_5, x_6, x_7, x_419); +uint8_t x_532; +lean_dec(x_464); +lean_dec(x_462); +lean_dec(x_461); +lean_dec(x_460); +lean_dec(x_456); +lean_dec(x_449); +lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_519; +lean_dec(x_1); +x_532 = !lean_is_exclusive(x_465); +if (x_532 == 0) +{ +return x_465; +} +else +{ +lean_object* x_533; lean_object* x_534; lean_object* x_535; +x_533 = lean_ctor_get(x_465, 0); +x_534 = lean_ctor_get(x_465, 1); +lean_inc(x_534); +lean_inc(x_533); +lean_dec(x_465); +x_535 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_535, 0, x_533); +lean_ctor_set(x_535, 1, x_534); +return x_535; } } -case 6: -{ -lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; -x_520 = lean_ctor_get(x_9, 1); -lean_inc(x_520); -lean_dec(x_9); -x_521 = lean_box(x_2); -x_522 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__26___boxed), 9, 2); -lean_closure_set(x_522, 0, x_1); -lean_closure_set(x_522, 1, x_521); -x_523 = l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferLambdaType___spec__1___rarg(x_10, x_522, x_4, x_5, x_6, x_7, x_520); -return x_523; } -case 7: +else { -lean_object* x_524; lean_object* x_525; -x_524 = lean_ctor_get(x_9, 1); -lean_inc(x_524); -lean_dec(x_9); -x_525 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_525) == 4) -{ -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; -x_526 = lean_ctor_get(x_525, 0); -lean_inc(x_526); -lean_dec(x_525); -x_527 = lean_st_ref_get(x_7, x_524); -x_528 = lean_ctor_get(x_527, 0); -lean_inc(x_528); -x_529 = lean_ctor_get(x_527, 1); -lean_inc(x_529); -lean_dec(x_527); -x_530 = lean_ctor_get(x_528, 0); -lean_inc(x_530); -lean_dec(x_528); -x_531 = lean_ctor_get(x_1, 0); -lean_inc(x_531); -x_532 = lean_ctor_get(x_1, 2); -lean_inc(x_532); -x_533 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_532, x_530, x_526); -if (lean_obj_tag(x_533) == 0) -{ -lean_object* x_534; lean_object* x_535; -lean_inc(x_531); -x_534 = l_Lean_Name_append(x_526, x_531); -lean_inc(x_526); -x_535 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_526, x_4, x_5, x_6, x_7, x_529); -if (lean_obj_tag(x_535) == 0) -{ -lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; -x_536 = lean_ctor_get(x_535, 0); +lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; +lean_dec(x_462); +lean_dec(x_461); +lean_dec(x_460); +lean_dec(x_449); +lean_dec(x_10); +x_536 = lean_ctor_get(x_463, 0); lean_inc(x_536); -x_537 = lean_ctor_get(x_535, 1); -lean_inc(x_537); -lean_dec(x_535); -x_538 = l_Lean_ConstantInfo_type(x_536); -x_539 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_dec(x_463); +x_537 = lean_box(0); +x_538 = l_Lean_mkConst(x_536, x_537); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_538); -x_540 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_538, x_539, x_4, x_5, x_6, x_7, x_537); -if (lean_obj_tag(x_540) == 0) +x_539 = l_Lean_Meta_inferType(x_538, x_4, x_5, x_6, x_7, x_459); +if (lean_obj_tag(x_539) == 0) { -lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_572; uint8_t x_573; -x_541 = lean_ctor_get(x_540, 0); +lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; +x_540 = lean_ctor_get(x_539, 0); +lean_inc(x_540); +x_541 = lean_ctor_get(x_539, 1); lean_inc(x_541); -x_542 = lean_ctor_get(x_540, 1); -lean_inc(x_542); -lean_dec(x_540); -x_572 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_573 = l_Lean_Expr_isConstOf(x_541, x_572); -if (x_573 == 0) +lean_dec(x_539); +x_542 = lean_box(x_2); +x_543 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__25___boxed), 11, 4); +lean_closure_set(x_543, 0, x_456); +lean_closure_set(x_543, 1, x_1); +lean_closure_set(x_543, 2, x_542); +lean_closure_set(x_543, 3, x_538); +x_544 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_540, x_543, x_4, x_5, x_6, x_7, x_541); +return x_544; +} +else { -lean_object* x_574; uint8_t x_575; -x_574 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_575 = l_Lean_Expr_isConstOf(x_541, x_574); -lean_dec(x_541); -if (x_575 == 0) -{ -lean_object* x_576; +uint8_t x_545; lean_dec(x_538); -lean_dec(x_536); -lean_dec(x_534); -lean_dec(x_532); -lean_dec(x_530); -lean_dec(x_526); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_10); -x_576 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_542); -if (lean_obj_tag(x_576) == 0) -{ -lean_object* x_577; -x_577 = lean_ctor_get(x_576, 0); -lean_inc(x_577); -if (lean_obj_tag(x_577) == 0) -{ -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_dec(x_1); -x_578 = lean_ctor_get(x_576, 1); -lean_inc(x_578); -lean_dec(x_576); -x_579 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_579, 0, x_531); -x_580 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_581 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_581, 0, x_580); -lean_ctor_set(x_581, 1, x_579); -x_582 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_583 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_583, 0, x_581); -lean_ctor_set(x_583, 1, x_582); -x_584 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_584, 0, x_10); -x_585 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_585, 0, x_583); -lean_ctor_set(x_585, 1, x_584); -x_586 = l_Lean_KernelException_toMessageData___closed__3; -x_587 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_587, 0, x_585); -lean_ctor_set(x_587, 1, x_586); -x_588 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_587, x_4, x_5, x_6, x_7, x_578); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_588; -} -else -{ -lean_object* x_589; lean_object* x_590; -lean_dec(x_531); -lean_dec(x_10); -x_589 = lean_ctor_get(x_576, 1); -lean_inc(x_589); -lean_dec(x_576); -x_590 = lean_ctor_get(x_577, 0); -lean_inc(x_590); -lean_dec(x_577); -x_3 = x_590; -x_8 = x_589; -goto _start; -} -} -else -{ -uint8_t x_592; -lean_dec(x_531); -lean_dec(x_10); +lean_dec(x_456); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_592 = !lean_is_exclusive(x_576); -if (x_592 == 0) +x_545 = !lean_is_exclusive(x_539); +if (x_545 == 0) { -return x_576; +return x_539; } else { -lean_object* x_593; lean_object* x_594; lean_object* x_595; -x_593 = lean_ctor_get(x_576, 0); -x_594 = lean_ctor_get(x_576, 1); -lean_inc(x_594); -lean_inc(x_593); -lean_dec(x_576); -x_595 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_595, 0, x_593); -lean_ctor_set(x_595, 1, x_594); -return x_595; +lean_object* x_546; lean_object* x_547; lean_object* x_548; +x_546 = lean_ctor_get(x_539, 0); +x_547 = lean_ctor_get(x_539, 1); +lean_inc(x_547); +lean_inc(x_546); +lean_dec(x_539); +x_548 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_548, 0, x_546); +lean_ctor_set(x_548, 1, x_547); +return x_548; +} } } } else { -lean_object* x_596; -x_596 = lean_box(0); -x_543 = x_596; -goto block_571; -} -} -else -{ -lean_object* x_597; -lean_dec(x_541); -x_597 = lean_box(0); -x_543 = x_597; -goto block_571; -} -block_571: -{ -lean_object* x_544; -lean_dec(x_543); -x_544 = l_Lean_ConstantInfo_value_x3f(x_536); -lean_dec(x_536); -if (lean_obj_tag(x_544) == 0) -{ -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_dec(x_538); -lean_dec(x_534); -lean_dec(x_532); -lean_dec(x_530); -lean_dec(x_526); +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_dec(x_448); lean_dec(x_1); -x_545 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_545, 0, x_531); -x_546 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_547 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_547, 0, x_546); -lean_ctor_set(x_547, 1, x_545); -x_548 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_549 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_549, 0, x_547); -lean_ctor_set(x_549, 1, x_548); -x_550 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_550, 0, x_10); +x_549 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_549, 0, x_10); +x_550 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; x_551 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_551, 0, x_549); -lean_ctor_set(x_551, 1, x_550); +lean_ctor_set(x_551, 0, x_550); +lean_ctor_set(x_551, 1, x_549); x_552 = l_Lean_KernelException_toMessageData___closed__3; x_553 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_553, 0, x_551); lean_ctor_set(x_553, 1, x_552); -x_554 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_553, x_4, x_5, x_6, x_7, x_542); +x_554 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_553, x_4, x_5, x_6, x_7, x_447); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); return x_554; } -else +} +case 6: { -lean_object* x_555; lean_object* x_556; -lean_dec(x_531); -x_555 = lean_ctor_get(x_544, 0); +lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; +x_555 = lean_ctor_get(x_9, 1); lean_inc(x_555); -lean_dec(x_544); -x_556 = l_Lean_Environment_getModuleIdxFor_x3f(x_530, x_526); -lean_dec(x_530); -if (lean_obj_tag(x_556) == 0) -{ -lean_object* x_557; lean_object* x_558; -x_557 = lean_box(0); -x_558 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__30(x_1, x_555, x_2, x_538, x_534, x_532, x_526, x_10, x_557, x_4, x_5, x_6, x_7, x_542); +lean_dec(x_9); +x_556 = lean_box(x_2); +x_557 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__26___boxed), 9, 2); +lean_closure_set(x_557, 0, x_1); +lean_closure_set(x_557, 1, x_556); +x_558 = l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferLambdaType___spec__1___rarg(x_10, x_557, x_4, x_5, x_6, x_7, x_555); return x_558; } -else +case 7: { -lean_dec(x_556); -if (x_2 == 0) +lean_object* x_559; lean_object* x_560; +x_559 = lean_ctor_get(x_9, 1); +lean_inc(x_559); +lean_dec(x_9); +x_560 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_560) == 4) { -lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; uint8_t x_565; -lean_dec(x_555); -lean_dec(x_538); -lean_dec(x_534); -lean_dec(x_532); -lean_dec(x_10); -lean_dec(x_1); -x_559 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_559, 0, x_526); -x_560 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_561 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_561, 0, x_560); -lean_ctor_set(x_561, 1, x_559); -x_562 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_563 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_563, 0, x_561); -lean_ctor_set(x_563, 1, x_562); -x_564 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_563, x_4, x_5, x_6, x_7, x_542); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_565 = !lean_is_exclusive(x_564); -if (x_565 == 0) +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; +x_561 = lean_ctor_get(x_560, 0); +lean_inc(x_561); +lean_dec(x_560); +x_562 = lean_unsigned_to_nat(0u); +x_563 = l_Lean_Expr_getAppNumArgsAux(x_10, x_562); +x_564 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_563); +x_565 = lean_mk_array(x_563, x_564); +x_566 = lean_unsigned_to_nat(1u); +x_567 = lean_nat_sub(x_563, x_566); +lean_dec(x_563); +lean_inc(x_10); +x_568 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_565, x_567); +x_569 = lean_st_ref_get(x_7, x_559); +x_570 = lean_ctor_get(x_569, 0); +lean_inc(x_570); +x_571 = lean_ctor_get(x_569, 1); +lean_inc(x_571); +lean_dec(x_569); +x_572 = lean_ctor_get(x_570, 0); +lean_inc(x_572); +lean_dec(x_570); +x_573 = lean_ctor_get(x_1, 0); +lean_inc(x_573); +x_574 = lean_ctor_get(x_1, 2); +lean_inc(x_574); +x_575 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_574, x_572, x_561); +if (lean_obj_tag(x_575) == 0) { -return x_564; -} -else +lean_object* x_576; lean_object* x_577; +lean_inc(x_573); +x_576 = l_Lean_Name_append(x_561, x_573); +lean_inc(x_561); +x_577 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_561, x_4, x_5, x_6, x_7, x_571); +if (lean_obj_tag(x_577) == 0) { -lean_object* x_566; lean_object* x_567; lean_object* x_568; -x_566 = lean_ctor_get(x_564, 0); -x_567 = lean_ctor_get(x_564, 1); -lean_inc(x_567); -lean_inc(x_566); -lean_dec(x_564); -x_568 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_568, 0, x_566); -lean_ctor_set(x_568, 1, x_567); -return x_568; -} -} -else -{ -lean_object* x_569; lean_object* x_570; -x_569 = lean_box(0); -x_570 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__30(x_1, x_555, x_2, x_538, x_534, x_532, x_526, x_10, x_569, x_4, x_5, x_6, x_7, x_542); -return x_570; -} -} -} -} -} -else -{ -uint8_t x_598; -lean_dec(x_538); -lean_dec(x_536); -lean_dec(x_534); -lean_dec(x_532); -lean_dec(x_531); -lean_dec(x_530); -lean_dec(x_526); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_598 = !lean_is_exclusive(x_540); -if (x_598 == 0) -{ -return x_540; -} -else -{ -lean_object* x_599; lean_object* x_600; lean_object* x_601; -x_599 = lean_ctor_get(x_540, 0); -x_600 = lean_ctor_get(x_540, 1); -lean_inc(x_600); -lean_inc(x_599); -lean_dec(x_540); -x_601 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_601, 0, x_599); -lean_ctor_set(x_601, 1, x_600); -return x_601; -} -} -} -else -{ -uint8_t x_602; -lean_dec(x_534); -lean_dec(x_532); -lean_dec(x_531); -lean_dec(x_530); -lean_dec(x_526); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_602 = !lean_is_exclusive(x_535); -if (x_602 == 0) -{ -return x_535; -} -else -{ -lean_object* x_603; lean_object* x_604; lean_object* x_605; -x_603 = lean_ctor_get(x_535, 0); -x_604 = lean_ctor_get(x_535, 1); -lean_inc(x_604); -lean_inc(x_603); -lean_dec(x_535); -x_605 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_605, 0, x_603); -lean_ctor_set(x_605, 1, x_604); -return x_605; -} -} -} -else -{ -lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; -lean_dec(x_532); -lean_dec(x_531); -lean_dec(x_530); -lean_dec(x_526); -x_606 = lean_ctor_get(x_533, 0); -lean_inc(x_606); -lean_dec(x_533); -x_607 = lean_box(0); -x_608 = l_Lean_mkConst(x_606, x_607); +lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; +x_578 = lean_ctor_get(x_577, 0); +lean_inc(x_578); +x_579 = lean_ctor_get(x_577, 1); +lean_inc(x_579); +lean_dec(x_577); +x_580 = l_Lean_ConstantInfo_type(x_578); +x_581 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_608); -x_609 = l_Lean_Meta_inferType(x_608, x_4, x_5, x_6, x_7, x_529); -if (lean_obj_tag(x_609) == 0) +lean_inc(x_580); +x_582 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_580, x_581, x_4, x_5, x_6, x_7, x_579); +if (lean_obj_tag(x_582) == 0) { -lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; -x_610 = lean_ctor_get(x_609, 0); -lean_inc(x_610); -x_611 = lean_ctor_get(x_609, 1); -lean_inc(x_611); -lean_dec(x_609); -x_612 = lean_box(x_2); -x_613 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__31___boxed), 11, 4); -lean_closure_set(x_613, 0, x_10); -lean_closure_set(x_613, 1, x_1); -lean_closure_set(x_613, 2, x_612); -lean_closure_set(x_613, 3, x_608); -x_614 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_610, x_613, x_4, x_5, x_6, x_7, x_611); -return x_614; +lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_614; uint8_t x_615; +x_583 = lean_ctor_get(x_582, 0); +lean_inc(x_583); +x_584 = lean_ctor_get(x_582, 1); +lean_inc(x_584); +lean_dec(x_582); +x_614 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_615 = l_Lean_Expr_isConstOf(x_583, x_614); +if (x_615 == 0) +{ +lean_object* x_616; uint8_t x_617; +x_616 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_617 = l_Lean_Expr_isConstOf(x_583, x_616); +lean_dec(x_583); +if (x_617 == 0) +{ +lean_object* x_618; +lean_dec(x_580); +lean_dec(x_578); +lean_dec(x_576); +lean_dec(x_574); +lean_dec(x_572); +lean_dec(x_568); +lean_dec(x_561); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_618 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_584); +if (lean_obj_tag(x_618) == 0) +{ +lean_object* x_619; +x_619 = lean_ctor_get(x_618, 0); +lean_inc(x_619); +if (lean_obj_tag(x_619) == 0) +{ +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_dec(x_1); +x_620 = lean_ctor_get(x_618, 1); +lean_inc(x_620); +lean_dec(x_618); +x_621 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_621, 0, x_573); +x_622 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_623 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_623, 0, x_622); +lean_ctor_set(x_623, 1, x_621); +x_624 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_625 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_625, 0, x_623); +lean_ctor_set(x_625, 1, x_624); +x_626 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_626, 0, x_10); +x_627 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_627, 0, x_625); +lean_ctor_set(x_627, 1, x_626); +x_628 = l_Lean_KernelException_toMessageData___closed__3; +x_629 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_629, 0, x_627); +lean_ctor_set(x_629, 1, x_628); +x_630 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_629, x_4, x_5, x_6, x_7, x_620); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_630; } else { -uint8_t x_615; -lean_dec(x_608); +lean_object* x_631; lean_object* x_632; +lean_dec(x_573); +lean_dec(x_10); +x_631 = lean_ctor_get(x_618, 1); +lean_inc(x_631); +lean_dec(x_618); +x_632 = lean_ctor_get(x_619, 0); +lean_inc(x_632); +lean_dec(x_619); +x_3 = x_632; +x_8 = x_631; +goto _start; +} +} +else +{ +uint8_t x_634; +lean_dec(x_573); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_615 = !lean_is_exclusive(x_609); -if (x_615 == 0) +x_634 = !lean_is_exclusive(x_618); +if (x_634 == 0) { -return x_609; -} -else -{ -lean_object* x_616; lean_object* x_617; lean_object* x_618; -x_616 = lean_ctor_get(x_609, 0); -x_617 = lean_ctor_get(x_609, 1); -lean_inc(x_617); -lean_inc(x_616); -lean_dec(x_609); -x_618 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_618, 0, x_616); -lean_ctor_set(x_618, 1, x_617); return x_618; } +else +{ +lean_object* x_635; lean_object* x_636; lean_object* x_637; +x_635 = lean_ctor_get(x_618, 0); +x_636 = lean_ctor_get(x_618, 1); +lean_inc(x_636); +lean_inc(x_635); +lean_dec(x_618); +x_637 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_637, 0, x_635); +lean_ctor_set(x_637, 1, x_636); +return x_637; } } } else { -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_dec(x_525); +lean_object* x_638; +x_638 = lean_box(0); +x_585 = x_638; +goto block_613; +} +} +else +{ +lean_object* x_639; +lean_dec(x_583); +x_639 = lean_box(0); +x_585 = x_639; +goto block_613; +} +block_613: +{ +lean_object* x_586; +lean_dec(x_585); +x_586 = l_Lean_ConstantInfo_value_x3f(x_578); +lean_dec(x_578); +if (lean_obj_tag(x_586) == 0) +{ +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_dec(x_580); +lean_dec(x_576); +lean_dec(x_574); +lean_dec(x_572); +lean_dec(x_568); +lean_dec(x_561); lean_dec(x_1); -x_619 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_619, 0, x_10); -x_620 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_621 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_621, 0, x_620); -lean_ctor_set(x_621, 1, x_619); -x_622 = l_Lean_KernelException_toMessageData___closed__3; -x_623 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_623, 0, x_621); -lean_ctor_set(x_623, 1, x_622); -x_624 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_623, x_4, x_5, x_6, x_7, x_524); +x_587 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_587, 0, x_573); +x_588 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_589 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_589, 0, x_588); +lean_ctor_set(x_589, 1, x_587); +x_590 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_591 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_591, 0, x_589); +lean_ctor_set(x_591, 1, x_590); +x_592 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_592, 0, x_10); +x_593 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_593, 0, x_591); +lean_ctor_set(x_593, 1, x_592); +x_594 = l_Lean_KernelException_toMessageData___closed__3; +x_595 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_595, 0, x_593); +lean_ctor_set(x_595, 1, x_594); +x_596 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_595, x_4, x_5, x_6, x_7, x_584); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_624; +return x_596; +} +else +{ +lean_object* x_597; lean_object* x_598; +lean_dec(x_573); +lean_dec(x_10); +x_597 = lean_ctor_get(x_586, 0); +lean_inc(x_597); +lean_dec(x_586); +x_598 = l_Lean_Environment_getModuleIdxFor_x3f(x_572, x_561); +lean_dec(x_572); +if (lean_obj_tag(x_598) == 0) +{ +lean_object* x_599; lean_object* x_600; +x_599 = lean_box(0); +x_600 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__30(x_1, x_597, x_2, x_580, x_576, x_574, x_561, x_568, x_599, x_4, x_5, x_6, x_7, x_584); +return x_600; +} +else +{ +lean_dec(x_598); +if (x_2 == 0) +{ +lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; uint8_t x_607; +lean_dec(x_597); +lean_dec(x_580); +lean_dec(x_576); +lean_dec(x_574); +lean_dec(x_568); +lean_dec(x_1); +x_601 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_601, 0, x_561); +x_602 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_603 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_603, 0, x_602); +lean_ctor_set(x_603, 1, x_601); +x_604 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_605 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_605, 0, x_603); +lean_ctor_set(x_605, 1, x_604); +x_606 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_605, x_4, x_5, x_6, x_7, x_584); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_607 = !lean_is_exclusive(x_606); +if (x_607 == 0) +{ +return x_606; +} +else +{ +lean_object* x_608; lean_object* x_609; lean_object* x_610; +x_608 = lean_ctor_get(x_606, 0); +x_609 = lean_ctor_get(x_606, 1); +lean_inc(x_609); +lean_inc(x_608); +lean_dec(x_606); +x_610 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_610, 0, x_608); +lean_ctor_set(x_610, 1, x_609); +return x_610; +} +} +else +{ +lean_object* x_611; lean_object* x_612; +x_611 = lean_box(0); +x_612 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__30(x_1, x_597, x_2, x_580, x_576, x_574, x_561, x_568, x_611, x_4, x_5, x_6, x_7, x_584); +return x_612; +} +} +} +} +} +else +{ +uint8_t x_640; +lean_dec(x_580); +lean_dec(x_578); +lean_dec(x_576); +lean_dec(x_574); +lean_dec(x_573); +lean_dec(x_572); +lean_dec(x_568); +lean_dec(x_561); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_640 = !lean_is_exclusive(x_582); +if (x_640 == 0) +{ +return x_582; +} +else +{ +lean_object* x_641; lean_object* x_642; lean_object* x_643; +x_641 = lean_ctor_get(x_582, 0); +x_642 = lean_ctor_get(x_582, 1); +lean_inc(x_642); +lean_inc(x_641); +lean_dec(x_582); +x_643 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_643, 0, x_641); +lean_ctor_set(x_643, 1, x_642); +return x_643; +} +} +} +else +{ +uint8_t x_644; +lean_dec(x_576); +lean_dec(x_574); +lean_dec(x_573); +lean_dec(x_572); +lean_dec(x_568); +lean_dec(x_561); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_644 = !lean_is_exclusive(x_577); +if (x_644 == 0) +{ +return x_577; +} +else +{ +lean_object* x_645; lean_object* x_646; lean_object* x_647; +x_645 = lean_ctor_get(x_577, 0); +x_646 = lean_ctor_get(x_577, 1); +lean_inc(x_646); +lean_inc(x_645); +lean_dec(x_577); +x_647 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_647, 0, x_645); +lean_ctor_set(x_647, 1, x_646); +return x_647; +} +} +} +else +{ +lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; +lean_dec(x_574); +lean_dec(x_573); +lean_dec(x_572); +lean_dec(x_561); +lean_dec(x_10); +x_648 = lean_ctor_get(x_575, 0); +lean_inc(x_648); +lean_dec(x_575); +x_649 = lean_box(0); +x_650 = l_Lean_mkConst(x_648, x_649); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_650); +x_651 = l_Lean_Meta_inferType(x_650, x_4, x_5, x_6, x_7, x_571); +if (lean_obj_tag(x_651) == 0) +{ +lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; +x_652 = lean_ctor_get(x_651, 0); +lean_inc(x_652); +x_653 = lean_ctor_get(x_651, 1); +lean_inc(x_653); +lean_dec(x_651); +x_654 = lean_box(x_2); +x_655 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__31___boxed), 11, 4); +lean_closure_set(x_655, 0, x_568); +lean_closure_set(x_655, 1, x_1); +lean_closure_set(x_655, 2, x_654); +lean_closure_set(x_655, 3, x_650); +x_656 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_652, x_655, x_4, x_5, x_6, x_7, x_653); +return x_656; +} +else +{ +uint8_t x_657; +lean_dec(x_650); +lean_dec(x_568); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_657 = !lean_is_exclusive(x_651); +if (x_657 == 0) +{ +return x_651; +} +else +{ +lean_object* x_658; lean_object* x_659; lean_object* x_660; +x_658 = lean_ctor_get(x_651, 0); +x_659 = lean_ctor_get(x_651, 1); +lean_inc(x_659); +lean_inc(x_658); +lean_dec(x_651); +x_660 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_660, 0, x_658); +lean_ctor_set(x_660, 1, x_659); +return x_660; +} +} +} +} +else +{ +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_dec(x_560); +lean_dec(x_1); +x_661 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_661, 0, x_10); +x_662 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_663 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_663, 0, x_662); +lean_ctor_set(x_663, 1, x_661); +x_664 = l_Lean_KernelException_toMessageData___closed__3; +x_665 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_665, 0, x_663); +lean_ctor_set(x_665, 1, x_664); +x_666 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_665, x_4, x_5, x_6, x_7, x_559); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_666; } } case 8: { -lean_object* x_625; lean_object* x_626; -x_625 = lean_ctor_get(x_9, 1); -lean_inc(x_625); +lean_object* x_667; lean_object* x_668; +x_667 = lean_ctor_get(x_9, 1); +lean_inc(x_667); lean_dec(x_9); -x_626 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_626) == 4) +x_668 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_668) == 4) { -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; -x_627 = lean_ctor_get(x_626, 0); -lean_inc(x_627); -lean_dec(x_626); -x_628 = lean_st_ref_get(x_7, x_625); -x_629 = lean_ctor_get(x_628, 0); -lean_inc(x_629); -x_630 = lean_ctor_get(x_628, 1); -lean_inc(x_630); -lean_dec(x_628); -x_631 = lean_ctor_get(x_629, 0); -lean_inc(x_631); -lean_dec(x_629); -x_632 = lean_ctor_get(x_1, 0); -lean_inc(x_632); -x_633 = lean_ctor_get(x_1, 2); -lean_inc(x_633); -x_634 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_633, x_631, x_627); -if (lean_obj_tag(x_634) == 0) +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; +x_669 = lean_ctor_get(x_668, 0); +lean_inc(x_669); +lean_dec(x_668); +x_670 = lean_unsigned_to_nat(0u); +x_671 = l_Lean_Expr_getAppNumArgsAux(x_10, x_670); +x_672 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_671); +x_673 = lean_mk_array(x_671, x_672); +x_674 = lean_unsigned_to_nat(1u); +x_675 = lean_nat_sub(x_671, x_674); +lean_dec(x_671); +lean_inc(x_10); +x_676 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_673, x_675); +x_677 = lean_st_ref_get(x_7, x_667); +x_678 = lean_ctor_get(x_677, 0); +lean_inc(x_678); +x_679 = lean_ctor_get(x_677, 1); +lean_inc(x_679); +lean_dec(x_677); +x_680 = lean_ctor_get(x_678, 0); +lean_inc(x_680); +lean_dec(x_678); +x_681 = lean_ctor_get(x_1, 0); +lean_inc(x_681); +x_682 = lean_ctor_get(x_1, 2); +lean_inc(x_682); +x_683 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_682, x_680, x_669); +if (lean_obj_tag(x_683) == 0) { -lean_object* x_635; lean_object* x_636; -lean_inc(x_632); -x_635 = l_Lean_Name_append(x_627, x_632); -lean_inc(x_627); -x_636 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_627, x_4, x_5, x_6, x_7, x_630); -if (lean_obj_tag(x_636) == 0) +lean_object* x_684; lean_object* x_685; +lean_inc(x_681); +x_684 = l_Lean_Name_append(x_669, x_681); +lean_inc(x_669); +x_685 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_669, x_4, x_5, x_6, x_7, x_679); +if (lean_obj_tag(x_685) == 0) { -lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; -x_637 = lean_ctor_get(x_636, 0); -lean_inc(x_637); -x_638 = lean_ctor_get(x_636, 1); -lean_inc(x_638); -lean_dec(x_636); -x_639 = l_Lean_ConstantInfo_type(x_637); -x_640 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; +x_686 = lean_ctor_get(x_685, 0); +lean_inc(x_686); +x_687 = lean_ctor_get(x_685, 1); +lean_inc(x_687); +lean_dec(x_685); +x_688 = l_Lean_ConstantInfo_type(x_686); +x_689 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_639); -x_641 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_639, x_640, x_4, x_5, x_6, x_7, x_638); -if (lean_obj_tag(x_641) == 0) +lean_inc(x_688); +x_690 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_688, x_689, x_4, x_5, x_6, x_7, x_687); +if (lean_obj_tag(x_690) == 0) { -lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_673; uint8_t x_674; -x_642 = lean_ctor_get(x_641, 0); -lean_inc(x_642); -x_643 = lean_ctor_get(x_641, 1); -lean_inc(x_643); -lean_dec(x_641); -x_673 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_674 = l_Lean_Expr_isConstOf(x_642, x_673); -if (x_674 == 0) +lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_722; uint8_t x_723; +x_691 = lean_ctor_get(x_690, 0); +lean_inc(x_691); +x_692 = lean_ctor_get(x_690, 1); +lean_inc(x_692); +lean_dec(x_690); +x_722 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_723 = l_Lean_Expr_isConstOf(x_691, x_722); +if (x_723 == 0) { -lean_object* x_675; uint8_t x_676; -x_675 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_676 = l_Lean_Expr_isConstOf(x_642, x_675); -lean_dec(x_642); -if (x_676 == 0) +lean_object* x_724; uint8_t x_725; +x_724 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_725 = l_Lean_Expr_isConstOf(x_691, x_724); +lean_dec(x_691); +if (x_725 == 0) { -lean_object* x_677; -lean_dec(x_639); -lean_dec(x_637); -lean_dec(x_635); -lean_dec(x_633); -lean_dec(x_631); -lean_dec(x_627); +lean_object* x_726; +lean_dec(x_688); +lean_dec(x_686); +lean_dec(x_684); +lean_dec(x_682); +lean_dec(x_680); +lean_dec(x_676); +lean_dec(x_669); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_677 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_643); -if (lean_obj_tag(x_677) == 0) +x_726 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_692); +if (lean_obj_tag(x_726) == 0) { -lean_object* x_678; -x_678 = lean_ctor_get(x_677, 0); -lean_inc(x_678); -if (lean_obj_tag(x_678) == 0) +lean_object* x_727; +x_727 = lean_ctor_get(x_726, 0); +lean_inc(x_727); +if (lean_obj_tag(x_727) == 0) { -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_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_dec(x_1); -x_679 = lean_ctor_get(x_677, 1); -lean_inc(x_679); -lean_dec(x_677); -x_680 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_680, 0, x_632); -x_681 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_682 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_682, 0, x_681); -lean_ctor_set(x_682, 1, x_680); -x_683 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_684 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_684, 0, x_682); -lean_ctor_set(x_684, 1, x_683); -x_685 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_685, 0, x_10); -x_686 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_686, 0, x_684); -lean_ctor_set(x_686, 1, x_685); -x_687 = l_Lean_KernelException_toMessageData___closed__3; -x_688 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_688, 0, x_686); -lean_ctor_set(x_688, 1, x_687); -x_689 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_688, x_4, x_5, x_6, x_7, x_679); +x_728 = lean_ctor_get(x_726, 1); +lean_inc(x_728); +lean_dec(x_726); +x_729 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_729, 0, x_681); +x_730 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_731 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_731, 0, x_730); +lean_ctor_set(x_731, 1, x_729); +x_732 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_733 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_733, 0, x_731); +lean_ctor_set(x_733, 1, x_732); +x_734 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_734, 0, x_10); +x_735 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_735, 0, x_733); +lean_ctor_set(x_735, 1, x_734); +x_736 = l_Lean_KernelException_toMessageData___closed__3; +x_737 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_737, 0, x_735); +lean_ctor_set(x_737, 1, x_736); +x_738 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_737, x_4, x_5, x_6, x_7, x_728); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_689; +return x_738; } else { -lean_object* x_690; lean_object* x_691; -lean_dec(x_632); +lean_object* x_739; lean_object* x_740; +lean_dec(x_681); lean_dec(x_10); -x_690 = lean_ctor_get(x_677, 1); -lean_inc(x_690); -lean_dec(x_677); -x_691 = lean_ctor_get(x_678, 0); -lean_inc(x_691); -lean_dec(x_678); -x_3 = x_691; -x_8 = x_690; +x_739 = lean_ctor_get(x_726, 1); +lean_inc(x_739); +lean_dec(x_726); +x_740 = lean_ctor_get(x_727, 0); +lean_inc(x_740); +lean_dec(x_727); +x_3 = x_740; +x_8 = x_739; goto _start; } } else { -uint8_t x_693; -lean_dec(x_632); +uint8_t x_742; +lean_dec(x_681); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_693 = !lean_is_exclusive(x_677); -if (x_693 == 0) +x_742 = !lean_is_exclusive(x_726); +if (x_742 == 0) { -return x_677; +return x_726; } else { -lean_object* x_694; lean_object* x_695; lean_object* x_696; -x_694 = lean_ctor_get(x_677, 0); -x_695 = lean_ctor_get(x_677, 1); -lean_inc(x_695); -lean_inc(x_694); -lean_dec(x_677); -x_696 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_696, 0, x_694); -lean_ctor_set(x_696, 1, x_695); -return x_696; +lean_object* x_743; lean_object* x_744; lean_object* x_745; +x_743 = lean_ctor_get(x_726, 0); +x_744 = lean_ctor_get(x_726, 1); +lean_inc(x_744); +lean_inc(x_743); +lean_dec(x_726); +x_745 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_745, 0, x_743); +lean_ctor_set(x_745, 1, x_744); +return x_745; } } } else { -lean_object* x_697; -x_697 = lean_box(0); -x_644 = x_697; -goto block_672; +lean_object* x_746; +x_746 = lean_box(0); +x_693 = x_746; +goto block_721; } } else { -lean_object* x_698; -lean_dec(x_642); -x_698 = lean_box(0); -x_644 = x_698; -goto block_672; +lean_object* x_747; +lean_dec(x_691); +x_747 = lean_box(0); +x_693 = x_747; +goto block_721; } -block_672: +block_721: { -lean_object* x_645; -lean_dec(x_644); -x_645 = l_Lean_ConstantInfo_value_x3f(x_637); -lean_dec(x_637); -if (lean_obj_tag(x_645) == 0) +lean_object* x_694; +lean_dec(x_693); +x_694 = l_Lean_ConstantInfo_value_x3f(x_686); +lean_dec(x_686); +if (lean_obj_tag(x_694) == 0) { -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_dec(x_639); -lean_dec(x_635); -lean_dec(x_633); -lean_dec(x_631); -lean_dec(x_627); +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_dec(x_688); +lean_dec(x_684); +lean_dec(x_682); +lean_dec(x_680); +lean_dec(x_676); +lean_dec(x_669); lean_dec(x_1); -x_646 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_646, 0, x_632); -x_647 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_648 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_648, 0, x_647); -lean_ctor_set(x_648, 1, x_646); -x_649 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_650 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_650, 0, x_648); -lean_ctor_set(x_650, 1, x_649); -x_651 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_651, 0, x_10); -x_652 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_652, 0, x_650); -lean_ctor_set(x_652, 1, x_651); -x_653 = l_Lean_KernelException_toMessageData___closed__3; -x_654 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_654, 0, x_652); -lean_ctor_set(x_654, 1, x_653); -x_655 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_654, x_4, x_5, x_6, x_7, x_643); +x_695 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_695, 0, x_681); +x_696 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_697 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_697, 0, x_696); +lean_ctor_set(x_697, 1, x_695); +x_698 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_699 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_699, 0, x_697); +lean_ctor_set(x_699, 1, x_698); +x_700 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_700, 0, x_10); +x_701 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_701, 0, x_699); +lean_ctor_set(x_701, 1, x_700); +x_702 = l_Lean_KernelException_toMessageData___closed__3; +x_703 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_703, 0, x_701); +lean_ctor_set(x_703, 1, x_702); +x_704 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_703, x_4, x_5, x_6, x_7, x_692); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_655; +return x_704; } else { -lean_object* x_656; lean_object* x_657; -lean_dec(x_632); -x_656 = lean_ctor_get(x_645, 0); -lean_inc(x_656); -lean_dec(x_645); -x_657 = l_Lean_Environment_getModuleIdxFor_x3f(x_631, x_627); -lean_dec(x_631); -if (lean_obj_tag(x_657) == 0) +lean_object* x_705; lean_object* x_706; +lean_dec(x_681); +lean_dec(x_10); +x_705 = lean_ctor_get(x_694, 0); +lean_inc(x_705); +lean_dec(x_694); +x_706 = l_Lean_Environment_getModuleIdxFor_x3f(x_680, x_669); +lean_dec(x_680); +if (lean_obj_tag(x_706) == 0) { -lean_object* x_658; lean_object* x_659; -x_658 = lean_box(0); -x_659 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__35(x_1, x_656, x_2, x_639, x_635, x_633, x_627, x_10, x_658, x_4, x_5, x_6, x_7, x_643); -return x_659; +lean_object* x_707; lean_object* x_708; +x_707 = lean_box(0); +x_708 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__35(x_1, x_705, x_2, x_688, x_684, x_682, x_669, x_676, x_707, x_4, x_5, x_6, x_7, x_692); +return x_708; } else { -lean_dec(x_657); +lean_dec(x_706); if (x_2 == 0) { -lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; uint8_t x_666; -lean_dec(x_656); -lean_dec(x_639); -lean_dec(x_635); -lean_dec(x_633); -lean_dec(x_10); +lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; uint8_t x_715; +lean_dec(x_705); +lean_dec(x_688); +lean_dec(x_684); +lean_dec(x_682); +lean_dec(x_676); lean_dec(x_1); -x_660 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_660, 0, x_627); -x_661 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_662 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_662, 0, x_661); -lean_ctor_set(x_662, 1, x_660); -x_663 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_664 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_664, 0, x_662); -lean_ctor_set(x_664, 1, x_663); -x_665 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_664, x_4, x_5, x_6, x_7, x_643); +x_709 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_709, 0, x_669); +x_710 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_711 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_711, 0, x_710); +lean_ctor_set(x_711, 1, x_709); +x_712 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_713 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_713, 0, x_711); +lean_ctor_set(x_713, 1, x_712); +x_714 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_713, x_4, x_5, x_6, x_7, x_692); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_666 = !lean_is_exclusive(x_665); -if (x_666 == 0) +x_715 = !lean_is_exclusive(x_714); +if (x_715 == 0) { -return x_665; +return x_714; } else { -lean_object* x_667; lean_object* x_668; lean_object* x_669; -x_667 = lean_ctor_get(x_665, 0); -x_668 = lean_ctor_get(x_665, 1); -lean_inc(x_668); -lean_inc(x_667); -lean_dec(x_665); -x_669 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_669, 0, x_667); -lean_ctor_set(x_669, 1, x_668); -return x_669; +lean_object* x_716; lean_object* x_717; lean_object* x_718; +x_716 = lean_ctor_get(x_714, 0); +x_717 = lean_ctor_get(x_714, 1); +lean_inc(x_717); +lean_inc(x_716); +lean_dec(x_714); +x_718 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_718, 0, x_716); +lean_ctor_set(x_718, 1, x_717); +return x_718; } } else { -lean_object* x_670; lean_object* x_671; -x_670 = lean_box(0); -x_671 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__35(x_1, x_656, x_2, x_639, x_635, x_633, x_627, x_10, x_670, x_4, x_5, x_6, x_7, x_643); -return x_671; +lean_object* x_719; lean_object* x_720; +x_719 = lean_box(0); +x_720 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__35(x_1, x_705, x_2, x_688, x_684, x_682, x_669, x_676, x_719, x_4, x_5, x_6, x_7, x_692); +return x_720; } } } @@ -23705,1552 +23654,1603 @@ return x_671; } else { -uint8_t x_699; -lean_dec(x_639); -lean_dec(x_637); -lean_dec(x_635); -lean_dec(x_633); -lean_dec(x_632); -lean_dec(x_631); -lean_dec(x_627); +uint8_t x_748; +lean_dec(x_688); +lean_dec(x_686); +lean_dec(x_684); +lean_dec(x_682); +lean_dec(x_681); +lean_dec(x_680); +lean_dec(x_676); +lean_dec(x_669); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_699 = !lean_is_exclusive(x_641); -if (x_699 == 0) +x_748 = !lean_is_exclusive(x_690); +if (x_748 == 0) { -return x_641; +return x_690; } else { -lean_object* x_700; lean_object* x_701; lean_object* x_702; -x_700 = lean_ctor_get(x_641, 0); -x_701 = lean_ctor_get(x_641, 1); -lean_inc(x_701); -lean_inc(x_700); -lean_dec(x_641); -x_702 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_702, 0, x_700); -lean_ctor_set(x_702, 1, x_701); -return x_702; +lean_object* x_749; lean_object* x_750; lean_object* x_751; +x_749 = lean_ctor_get(x_690, 0); +x_750 = lean_ctor_get(x_690, 1); +lean_inc(x_750); +lean_inc(x_749); +lean_dec(x_690); +x_751 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_751, 0, x_749); +lean_ctor_set(x_751, 1, x_750); +return x_751; } } } else { -uint8_t x_703; -lean_dec(x_635); -lean_dec(x_633); -lean_dec(x_632); -lean_dec(x_631); -lean_dec(x_627); +uint8_t x_752; +lean_dec(x_684); +lean_dec(x_682); +lean_dec(x_681); +lean_dec(x_680); +lean_dec(x_676); +lean_dec(x_669); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_703 = !lean_is_exclusive(x_636); -if (x_703 == 0) +x_752 = !lean_is_exclusive(x_685); +if (x_752 == 0) { -return x_636; +return x_685; } else { -lean_object* x_704; lean_object* x_705; lean_object* x_706; -x_704 = lean_ctor_get(x_636, 0); -x_705 = lean_ctor_get(x_636, 1); -lean_inc(x_705); -lean_inc(x_704); -lean_dec(x_636); -x_706 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_706, 0, x_704); -lean_ctor_set(x_706, 1, x_705); -return x_706; +lean_object* x_753; lean_object* x_754; lean_object* x_755; +x_753 = lean_ctor_get(x_685, 0); +x_754 = lean_ctor_get(x_685, 1); +lean_inc(x_754); +lean_inc(x_753); +lean_dec(x_685); +x_755 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_755, 0, x_753); +lean_ctor_set(x_755, 1, x_754); +return x_755; } } } else { -lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; -lean_dec(x_633); -lean_dec(x_632); -lean_dec(x_631); -lean_dec(x_627); -x_707 = lean_ctor_get(x_634, 0); -lean_inc(x_707); -lean_dec(x_634); -x_708 = lean_box(0); -x_709 = l_Lean_mkConst(x_707, x_708); +lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; +lean_dec(x_682); +lean_dec(x_681); +lean_dec(x_680); +lean_dec(x_669); +lean_dec(x_10); +x_756 = lean_ctor_get(x_683, 0); +lean_inc(x_756); +lean_dec(x_683); +x_757 = lean_box(0); +x_758 = l_Lean_mkConst(x_756, x_757); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_709); -x_710 = l_Lean_Meta_inferType(x_709, x_4, x_5, x_6, x_7, x_630); -if (lean_obj_tag(x_710) == 0) +lean_inc(x_758); +x_759 = l_Lean_Meta_inferType(x_758, x_4, x_5, x_6, x_7, x_679); +if (lean_obj_tag(x_759) == 0) { -lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; -x_711 = lean_ctor_get(x_710, 0); -lean_inc(x_711); -x_712 = lean_ctor_get(x_710, 1); -lean_inc(x_712); -lean_dec(x_710); -x_713 = lean_box(x_2); -x_714 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__36___boxed), 11, 4); -lean_closure_set(x_714, 0, x_10); -lean_closure_set(x_714, 1, x_1); -lean_closure_set(x_714, 2, x_713); -lean_closure_set(x_714, 3, x_709); -x_715 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_711, x_714, x_4, x_5, x_6, x_7, x_712); -return x_715; +lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; +x_760 = lean_ctor_get(x_759, 0); +lean_inc(x_760); +x_761 = lean_ctor_get(x_759, 1); +lean_inc(x_761); +lean_dec(x_759); +x_762 = lean_box(x_2); +x_763 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__36___boxed), 11, 4); +lean_closure_set(x_763, 0, x_676); +lean_closure_set(x_763, 1, x_1); +lean_closure_set(x_763, 2, x_762); +lean_closure_set(x_763, 3, x_758); +x_764 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_760, x_763, x_4, x_5, x_6, x_7, x_761); +return x_764; } else { -uint8_t x_716; -lean_dec(x_709); -lean_dec(x_10); +uint8_t x_765; +lean_dec(x_758); +lean_dec(x_676); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_716 = !lean_is_exclusive(x_710); -if (x_716 == 0) +x_765 = !lean_is_exclusive(x_759); +if (x_765 == 0) { -return x_710; +return x_759; } else { -lean_object* x_717; lean_object* x_718; lean_object* x_719; -x_717 = lean_ctor_get(x_710, 0); -x_718 = lean_ctor_get(x_710, 1); -lean_inc(x_718); -lean_inc(x_717); -lean_dec(x_710); -x_719 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_719, 0, x_717); -lean_ctor_set(x_719, 1, x_718); -return x_719; +lean_object* x_766; lean_object* x_767; lean_object* x_768; +x_766 = lean_ctor_get(x_759, 0); +x_767 = lean_ctor_get(x_759, 1); +lean_inc(x_767); +lean_inc(x_766); +lean_dec(x_759); +x_768 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_768, 0, x_766); +lean_ctor_set(x_768, 1, x_767); +return x_768; } } } } else { -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_dec(x_626); +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_dec(x_668); lean_dec(x_1); -x_720 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_720, 0, x_10); -x_721 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_722 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_722, 0, x_721); -lean_ctor_set(x_722, 1, x_720); -x_723 = l_Lean_KernelException_toMessageData___closed__3; -x_724 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_724, 0, x_722); -lean_ctor_set(x_724, 1, x_723); -x_725 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_724, x_4, x_5, x_6, x_7, x_625); +x_769 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_769, 0, x_10); +x_770 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_771 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_771, 0, x_770); +lean_ctor_set(x_771, 1, x_769); +x_772 = l_Lean_KernelException_toMessageData___closed__3; +x_773 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_773, 0, x_771); +lean_ctor_set(x_773, 1, x_772); +x_774 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_773, x_4, x_5, x_6, x_7, x_667); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_725; +return x_774; } } case 9: { -lean_object* x_726; lean_object* x_727; -x_726 = lean_ctor_get(x_9, 1); -lean_inc(x_726); +lean_object* x_775; lean_object* x_776; +x_775 = lean_ctor_get(x_9, 1); +lean_inc(x_775); lean_dec(x_9); -x_727 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_727) == 4) +x_776 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_776) == 4) { -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; -x_728 = lean_ctor_get(x_727, 0); -lean_inc(x_728); -lean_dec(x_727); -x_729 = lean_st_ref_get(x_7, x_726); -x_730 = lean_ctor_get(x_729, 0); -lean_inc(x_730); -x_731 = lean_ctor_get(x_729, 1); -lean_inc(x_731); -lean_dec(x_729); -x_732 = lean_ctor_get(x_730, 0); -lean_inc(x_732); -lean_dec(x_730); -x_733 = lean_ctor_get(x_1, 0); -lean_inc(x_733); -x_734 = lean_ctor_get(x_1, 2); -lean_inc(x_734); -x_735 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_734, x_732, x_728); -if (lean_obj_tag(x_735) == 0) +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; +x_777 = lean_ctor_get(x_776, 0); +lean_inc(x_777); +lean_dec(x_776); +x_778 = lean_unsigned_to_nat(0u); +x_779 = l_Lean_Expr_getAppNumArgsAux(x_10, x_778); +x_780 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_779); +x_781 = lean_mk_array(x_779, x_780); +x_782 = lean_unsigned_to_nat(1u); +x_783 = lean_nat_sub(x_779, x_782); +lean_dec(x_779); +lean_inc(x_10); +x_784 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_781, x_783); +x_785 = lean_st_ref_get(x_7, x_775); +x_786 = lean_ctor_get(x_785, 0); +lean_inc(x_786); +x_787 = lean_ctor_get(x_785, 1); +lean_inc(x_787); +lean_dec(x_785); +x_788 = lean_ctor_get(x_786, 0); +lean_inc(x_788); +lean_dec(x_786); +x_789 = lean_ctor_get(x_1, 0); +lean_inc(x_789); +x_790 = lean_ctor_get(x_1, 2); +lean_inc(x_790); +x_791 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_790, x_788, x_777); +if (lean_obj_tag(x_791) == 0) { -lean_object* x_736; lean_object* x_737; -lean_inc(x_733); -x_736 = l_Lean_Name_append(x_728, x_733); -lean_inc(x_728); -x_737 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_728, x_4, x_5, x_6, x_7, x_731); -if (lean_obj_tag(x_737) == 0) +lean_object* x_792; lean_object* x_793; +lean_inc(x_789); +x_792 = l_Lean_Name_append(x_777, x_789); +lean_inc(x_777); +x_793 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_777, x_4, x_5, x_6, x_7, x_787); +if (lean_obj_tag(x_793) == 0) { -lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; -x_738 = lean_ctor_get(x_737, 0); -lean_inc(x_738); -x_739 = lean_ctor_get(x_737, 1); -lean_inc(x_739); -lean_dec(x_737); -x_740 = l_Lean_ConstantInfo_type(x_738); -x_741 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; +x_794 = lean_ctor_get(x_793, 0); +lean_inc(x_794); +x_795 = lean_ctor_get(x_793, 1); +lean_inc(x_795); +lean_dec(x_793); +x_796 = l_Lean_ConstantInfo_type(x_794); +x_797 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_740); -x_742 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_740, x_741, x_4, x_5, x_6, x_7, x_739); -if (lean_obj_tag(x_742) == 0) +lean_inc(x_796); +x_798 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_796, x_797, x_4, x_5, x_6, x_7, x_795); +if (lean_obj_tag(x_798) == 0) { -lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_774; uint8_t x_775; -x_743 = lean_ctor_get(x_742, 0); -lean_inc(x_743); -x_744 = lean_ctor_get(x_742, 1); -lean_inc(x_744); -lean_dec(x_742); -x_774 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_775 = l_Lean_Expr_isConstOf(x_743, x_774); -if (x_775 == 0) +lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_830; uint8_t x_831; +x_799 = lean_ctor_get(x_798, 0); +lean_inc(x_799); +x_800 = lean_ctor_get(x_798, 1); +lean_inc(x_800); +lean_dec(x_798); +x_830 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_831 = l_Lean_Expr_isConstOf(x_799, x_830); +if (x_831 == 0) { -lean_object* x_776; uint8_t x_777; -x_776 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_777 = l_Lean_Expr_isConstOf(x_743, x_776); -lean_dec(x_743); -if (x_777 == 0) +lean_object* x_832; uint8_t x_833; +x_832 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_833 = l_Lean_Expr_isConstOf(x_799, x_832); +lean_dec(x_799); +if (x_833 == 0) { -lean_object* x_778; -lean_dec(x_740); -lean_dec(x_738); -lean_dec(x_736); -lean_dec(x_734); -lean_dec(x_732); -lean_dec(x_728); +lean_object* x_834; +lean_dec(x_796); +lean_dec(x_794); +lean_dec(x_792); +lean_dec(x_790); +lean_dec(x_788); +lean_dec(x_784); +lean_dec(x_777); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_778 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_744); -if (lean_obj_tag(x_778) == 0) +x_834 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_800); +if (lean_obj_tag(x_834) == 0) { -lean_object* x_779; -x_779 = lean_ctor_get(x_778, 0); -lean_inc(x_779); -if (lean_obj_tag(x_779) == 0) +lean_object* x_835; +x_835 = lean_ctor_get(x_834, 0); +lean_inc(x_835); +if (lean_obj_tag(x_835) == 0) { -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_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_dec(x_1); -x_780 = lean_ctor_get(x_778, 1); -lean_inc(x_780); -lean_dec(x_778); -x_781 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_781, 0, x_733); -x_782 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_783 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_783, 0, x_782); -lean_ctor_set(x_783, 1, x_781); -x_784 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_785 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_785, 0, x_783); -lean_ctor_set(x_785, 1, x_784); -x_786 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_786, 0, x_10); -x_787 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_787, 0, x_785); -lean_ctor_set(x_787, 1, x_786); -x_788 = l_Lean_KernelException_toMessageData___closed__3; -x_789 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_789, 0, x_787); -lean_ctor_set(x_789, 1, x_788); -x_790 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_789, x_4, x_5, x_6, x_7, x_780); +x_836 = lean_ctor_get(x_834, 1); +lean_inc(x_836); +lean_dec(x_834); +x_837 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_837, 0, x_789); +x_838 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_839 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_839, 0, x_838); +lean_ctor_set(x_839, 1, x_837); +x_840 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_841 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_841, 0, x_839); +lean_ctor_set(x_841, 1, x_840); +x_842 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_842, 0, x_10); +x_843 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_843, 0, x_841); +lean_ctor_set(x_843, 1, x_842); +x_844 = l_Lean_KernelException_toMessageData___closed__3; +x_845 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_845, 0, x_843); +lean_ctor_set(x_845, 1, x_844); +x_846 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_845, x_4, x_5, x_6, x_7, x_836); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_790; +return x_846; } else { -lean_object* x_791; lean_object* x_792; -lean_dec(x_733); +lean_object* x_847; lean_object* x_848; +lean_dec(x_789); lean_dec(x_10); -x_791 = lean_ctor_get(x_778, 1); -lean_inc(x_791); -lean_dec(x_778); -x_792 = lean_ctor_get(x_779, 0); -lean_inc(x_792); -lean_dec(x_779); -x_3 = x_792; -x_8 = x_791; +x_847 = lean_ctor_get(x_834, 1); +lean_inc(x_847); +lean_dec(x_834); +x_848 = lean_ctor_get(x_835, 0); +lean_inc(x_848); +lean_dec(x_835); +x_3 = x_848; +x_8 = x_847; goto _start; } } else { -uint8_t x_794; -lean_dec(x_733); +uint8_t x_850; +lean_dec(x_789); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_794 = !lean_is_exclusive(x_778); -if (x_794 == 0) +x_850 = !lean_is_exclusive(x_834); +if (x_850 == 0) { -return x_778; +return x_834; } else { -lean_object* x_795; lean_object* x_796; lean_object* x_797; -x_795 = lean_ctor_get(x_778, 0); -x_796 = lean_ctor_get(x_778, 1); -lean_inc(x_796); -lean_inc(x_795); -lean_dec(x_778); -x_797 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_797, 0, x_795); -lean_ctor_set(x_797, 1, x_796); -return x_797; +lean_object* x_851; lean_object* x_852; lean_object* x_853; +x_851 = lean_ctor_get(x_834, 0); +x_852 = lean_ctor_get(x_834, 1); +lean_inc(x_852); +lean_inc(x_851); +lean_dec(x_834); +x_853 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_853, 0, x_851); +lean_ctor_set(x_853, 1, x_852); +return x_853; } } } else { -lean_object* x_798; -x_798 = lean_box(0); -x_745 = x_798; -goto block_773; +lean_object* x_854; +x_854 = lean_box(0); +x_801 = x_854; +goto block_829; } } else { -lean_object* x_799; -lean_dec(x_743); -x_799 = lean_box(0); -x_745 = x_799; -goto block_773; +lean_object* x_855; +lean_dec(x_799); +x_855 = lean_box(0); +x_801 = x_855; +goto block_829; } -block_773: +block_829: { -lean_object* x_746; -lean_dec(x_745); -x_746 = l_Lean_ConstantInfo_value_x3f(x_738); -lean_dec(x_738); -if (lean_obj_tag(x_746) == 0) +lean_object* x_802; +lean_dec(x_801); +x_802 = l_Lean_ConstantInfo_value_x3f(x_794); +lean_dec(x_794); +if (lean_obj_tag(x_802) == 0) { -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_dec(x_740); -lean_dec(x_736); -lean_dec(x_734); -lean_dec(x_732); -lean_dec(x_728); +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_dec(x_796); +lean_dec(x_792); +lean_dec(x_790); +lean_dec(x_788); +lean_dec(x_784); +lean_dec(x_777); lean_dec(x_1); -x_747 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_747, 0, x_733); -x_748 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_749 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_749, 0, x_748); -lean_ctor_set(x_749, 1, x_747); -x_750 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_751 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_751, 0, x_749); -lean_ctor_set(x_751, 1, x_750); -x_752 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_752, 0, x_10); -x_753 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_753, 0, x_751); -lean_ctor_set(x_753, 1, x_752); -x_754 = l_Lean_KernelException_toMessageData___closed__3; -x_755 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_755, 0, x_753); -lean_ctor_set(x_755, 1, x_754); -x_756 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_755, x_4, x_5, x_6, x_7, x_744); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_756; -} -else -{ -lean_object* x_757; lean_object* x_758; -lean_dec(x_733); -x_757 = lean_ctor_get(x_746, 0); -lean_inc(x_757); -lean_dec(x_746); -x_758 = l_Lean_Environment_getModuleIdxFor_x3f(x_732, x_728); -lean_dec(x_732); -if (lean_obj_tag(x_758) == 0) -{ -lean_object* x_759; lean_object* x_760; -x_759 = lean_box(0); -x_760 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__40(x_1, x_757, x_2, x_740, x_736, x_734, x_728, x_10, x_759, x_4, x_5, x_6, x_7, x_744); -return x_760; -} -else -{ -lean_dec(x_758); -if (x_2 == 0) -{ -lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; uint8_t x_767; -lean_dec(x_757); -lean_dec(x_740); -lean_dec(x_736); -lean_dec(x_734); -lean_dec(x_10); -lean_dec(x_1); -x_761 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_761, 0, x_728); -x_762 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_763 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_763, 0, x_762); -lean_ctor_set(x_763, 1, x_761); -x_764 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_765 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_765, 0, x_763); -lean_ctor_set(x_765, 1, x_764); -x_766 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_765, x_4, x_5, x_6, x_7, x_744); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_767 = !lean_is_exclusive(x_766); -if (x_767 == 0) -{ -return x_766; -} -else -{ -lean_object* x_768; lean_object* x_769; lean_object* x_770; -x_768 = lean_ctor_get(x_766, 0); -x_769 = lean_ctor_get(x_766, 1); -lean_inc(x_769); -lean_inc(x_768); -lean_dec(x_766); -x_770 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_770, 0, x_768); -lean_ctor_set(x_770, 1, x_769); -return x_770; -} -} -else -{ -lean_object* x_771; lean_object* x_772; -x_771 = lean_box(0); -x_772 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__40(x_1, x_757, x_2, x_740, x_736, x_734, x_728, x_10, x_771, x_4, x_5, x_6, x_7, x_744); -return x_772; -} -} -} -} -} -else -{ -uint8_t x_800; -lean_dec(x_740); -lean_dec(x_738); -lean_dec(x_736); -lean_dec(x_734); -lean_dec(x_733); -lean_dec(x_732); -lean_dec(x_728); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_800 = !lean_is_exclusive(x_742); -if (x_800 == 0) -{ -return x_742; -} -else -{ -lean_object* x_801; lean_object* x_802; lean_object* x_803; -x_801 = lean_ctor_get(x_742, 0); -x_802 = lean_ctor_get(x_742, 1); -lean_inc(x_802); -lean_inc(x_801); -lean_dec(x_742); -x_803 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_803, 0, x_801); -lean_ctor_set(x_803, 1, x_802); -return x_803; -} -} -} -else -{ -uint8_t x_804; -lean_dec(x_736); -lean_dec(x_734); -lean_dec(x_733); -lean_dec(x_732); -lean_dec(x_728); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_804 = !lean_is_exclusive(x_737); -if (x_804 == 0) -{ -return x_737; -} -else -{ -lean_object* x_805; lean_object* x_806; lean_object* x_807; -x_805 = lean_ctor_get(x_737, 0); -x_806 = lean_ctor_get(x_737, 1); -lean_inc(x_806); -lean_inc(x_805); -lean_dec(x_737); -x_807 = lean_alloc_ctor(1, 2, 0); +x_803 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_803, 0, x_789); +x_804 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_805 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_805, 0, x_804); +lean_ctor_set(x_805, 1, x_803); +x_806 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_807 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_807, 0, x_805); lean_ctor_set(x_807, 1, x_806); -return x_807; -} -} +x_808 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_808, 0, x_10); +x_809 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_809, 0, x_807); +lean_ctor_set(x_809, 1, x_808); +x_810 = l_Lean_KernelException_toMessageData___closed__3; +x_811 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_811, 0, x_809); +lean_ctor_set(x_811, 1, x_810); +x_812 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_811, x_4, x_5, x_6, x_7, x_800); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_812; } else { -lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; -lean_dec(x_734); -lean_dec(x_733); -lean_dec(x_732); -lean_dec(x_728); -x_808 = lean_ctor_get(x_735, 0); -lean_inc(x_808); -lean_dec(x_735); -x_809 = lean_box(0); -x_810 = l_Lean_mkConst(x_808, x_809); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_810); -x_811 = l_Lean_Meta_inferType(x_810, x_4, x_5, x_6, x_7, x_731); -if (lean_obj_tag(x_811) == 0) -{ -lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; -x_812 = lean_ctor_get(x_811, 0); -lean_inc(x_812); -x_813 = lean_ctor_get(x_811, 1); +lean_object* x_813; lean_object* x_814; +lean_dec(x_789); +lean_dec(x_10); +x_813 = lean_ctor_get(x_802, 0); lean_inc(x_813); -lean_dec(x_811); -x_814 = lean_box(x_2); -x_815 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__41___boxed), 11, 4); -lean_closure_set(x_815, 0, x_10); -lean_closure_set(x_815, 1, x_1); -lean_closure_set(x_815, 2, x_814); -lean_closure_set(x_815, 3, x_810); -x_816 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_812, x_815, x_4, x_5, x_6, x_7, x_813); +lean_dec(x_802); +x_814 = l_Lean_Environment_getModuleIdxFor_x3f(x_788, x_777); +lean_dec(x_788); +if (lean_obj_tag(x_814) == 0) +{ +lean_object* x_815; lean_object* x_816; +x_815 = lean_box(0); +x_816 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__40(x_1, x_813, x_2, x_796, x_792, x_790, x_777, x_784, x_815, x_4, x_5, x_6, x_7, x_800); return x_816; } else { -uint8_t x_817; -lean_dec(x_810); -lean_dec(x_10); +lean_dec(x_814); +if (x_2 == 0) +{ +lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; uint8_t x_823; +lean_dec(x_813); +lean_dec(x_796); +lean_dec(x_792); +lean_dec(x_790); +lean_dec(x_784); +lean_dec(x_1); +x_817 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_817, 0, x_777); +x_818 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_819 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_819, 0, x_818); +lean_ctor_set(x_819, 1, x_817); +x_820 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_821 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_821, 0, x_819); +lean_ctor_set(x_821, 1, x_820); +x_822 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_821, x_4, x_5, x_6, x_7, x_800); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1); -x_817 = !lean_is_exclusive(x_811); -if (x_817 == 0) +x_823 = !lean_is_exclusive(x_822); +if (x_823 == 0) { -return x_811; +return x_822; } else { -lean_object* x_818; lean_object* x_819; lean_object* x_820; -x_818 = lean_ctor_get(x_811, 0); -x_819 = lean_ctor_get(x_811, 1); -lean_inc(x_819); -lean_inc(x_818); -lean_dec(x_811); -x_820 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_820, 0, x_818); -lean_ctor_set(x_820, 1, x_819); -return x_820; -} -} -} -} -else -{ -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_dec(x_727); -lean_dec(x_1); -x_821 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_821, 0, x_10); -x_822 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_823 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_823, 0, x_822); -lean_ctor_set(x_823, 1, x_821); -x_824 = l_Lean_KernelException_toMessageData___closed__3; -x_825 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_825, 0, x_823); -lean_ctor_set(x_825, 1, x_824); -x_826 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_825, x_4, x_5, x_6, x_7, x_726); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_object* x_824; lean_object* x_825; lean_object* x_826; +x_824 = lean_ctor_get(x_822, 0); +x_825 = lean_ctor_get(x_822, 1); +lean_inc(x_825); +lean_inc(x_824); +lean_dec(x_822); +x_826 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_826, 0, x_824); +lean_ctor_set(x_826, 1, x_825); return x_826; } } -case 10: +else { lean_object* x_827; lean_object* x_828; -x_827 = lean_ctor_get(x_9, 1); -lean_inc(x_827); -lean_dec(x_9); -x_828 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_828) == 4) -{ -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_829 = lean_ctor_get(x_828, 0); -lean_inc(x_829); -lean_dec(x_828); -x_830 = lean_st_ref_get(x_7, x_827); -x_831 = lean_ctor_get(x_830, 0); -lean_inc(x_831); -x_832 = lean_ctor_get(x_830, 1); -lean_inc(x_832); -lean_dec(x_830); -x_833 = lean_ctor_get(x_831, 0); -lean_inc(x_833); -lean_dec(x_831); -x_834 = lean_ctor_get(x_1, 0); -lean_inc(x_834); -x_835 = lean_ctor_get(x_1, 2); -lean_inc(x_835); -x_836 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_835, x_833, x_829); -if (lean_obj_tag(x_836) == 0) -{ -lean_object* x_837; lean_object* x_838; -lean_inc(x_834); -x_837 = l_Lean_Name_append(x_829, x_834); -lean_inc(x_829); -x_838 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_829, x_4, x_5, x_6, x_7, x_832); -if (lean_obj_tag(x_838) == 0) -{ -lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; -x_839 = lean_ctor_get(x_838, 0); -lean_inc(x_839); -x_840 = lean_ctor_get(x_838, 1); -lean_inc(x_840); -lean_dec(x_838); -x_841 = l_Lean_ConstantInfo_type(x_839); -x_842 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_841); -x_843 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_841, x_842, x_4, x_5, x_6, x_7, x_840); -if (lean_obj_tag(x_843) == 0) -{ -lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_875; uint8_t x_876; -x_844 = lean_ctor_get(x_843, 0); -lean_inc(x_844); -x_845 = lean_ctor_get(x_843, 1); -lean_inc(x_845); -lean_dec(x_843); -x_875 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_876 = l_Lean_Expr_isConstOf(x_844, x_875); -if (x_876 == 0) -{ -lean_object* x_877; uint8_t x_878; -x_877 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_878 = l_Lean_Expr_isConstOf(x_844, x_877); -lean_dec(x_844); -if (x_878 == 0) -{ -lean_object* x_879; -lean_dec(x_841); -lean_dec(x_839); -lean_dec(x_837); -lean_dec(x_835); -lean_dec(x_833); -lean_dec(x_829); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_10); -x_879 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_845); -if (lean_obj_tag(x_879) == 0) -{ -lean_object* x_880; -x_880 = lean_ctor_get(x_879, 0); -lean_inc(x_880); -if (lean_obj_tag(x_880) == 0) -{ -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_dec(x_1); -x_881 = lean_ctor_get(x_879, 1); -lean_inc(x_881); -lean_dec(x_879); -x_882 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_882, 0, x_834); -x_883 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_884 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_884, 0, x_883); -lean_ctor_set(x_884, 1, x_882); -x_885 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_886 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_886, 0, x_884); -lean_ctor_set(x_886, 1, x_885); -x_887 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_887, 0, x_10); -x_888 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_888, 0, x_886); -lean_ctor_set(x_888, 1, x_887); -x_889 = l_Lean_KernelException_toMessageData___closed__3; -x_890 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_890, 0, x_888); -lean_ctor_set(x_890, 1, x_889); -x_891 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_890, x_4, x_5, x_6, x_7, x_881); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_891; +x_827 = lean_box(0); +x_828 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__40(x_1, x_813, x_2, x_796, x_792, x_790, x_777, x_784, x_827, x_4, x_5, x_6, x_7, x_800); +return x_828; +} +} } -else -{ -lean_object* x_892; lean_object* x_893; -lean_dec(x_834); -lean_dec(x_10); -x_892 = lean_ctor_get(x_879, 1); -lean_inc(x_892); -lean_dec(x_879); -x_893 = lean_ctor_get(x_880, 0); -lean_inc(x_893); -lean_dec(x_880); -x_3 = x_893; -x_8 = x_892; -goto _start; } } else { -uint8_t x_895; -lean_dec(x_834); +uint8_t x_856; +lean_dec(x_796); +lean_dec(x_794); +lean_dec(x_792); +lean_dec(x_790); +lean_dec(x_789); +lean_dec(x_788); +lean_dec(x_784); +lean_dec(x_777); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_895 = !lean_is_exclusive(x_879); -if (x_895 == 0) +x_856 = !lean_is_exclusive(x_798); +if (x_856 == 0) { -return x_879; +return x_798; } else { -lean_object* x_896; lean_object* x_897; lean_object* x_898; -x_896 = lean_ctor_get(x_879, 0); -x_897 = lean_ctor_get(x_879, 1); -lean_inc(x_897); -lean_inc(x_896); -lean_dec(x_879); -x_898 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_898, 0, x_896); -lean_ctor_set(x_898, 1, x_897); -return x_898; -} -} -} -else -{ -lean_object* x_899; -x_899 = lean_box(0); -x_846 = x_899; -goto block_874; -} -} -else -{ -lean_object* x_900; -lean_dec(x_844); -x_900 = lean_box(0); -x_846 = x_900; -goto block_874; -} -block_874: -{ -lean_object* x_847; -lean_dec(x_846); -x_847 = l_Lean_ConstantInfo_value_x3f(x_839); -lean_dec(x_839); -if (lean_obj_tag(x_847) == 0) -{ -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_dec(x_841); -lean_dec(x_837); -lean_dec(x_835); -lean_dec(x_833); -lean_dec(x_829); -lean_dec(x_1); -x_848 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_848, 0, x_834); -x_849 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_850 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_850, 0, x_849); -lean_ctor_set(x_850, 1, x_848); -x_851 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_852 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_852, 0, x_850); -lean_ctor_set(x_852, 1, x_851); -x_853 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_853, 0, x_10); -x_854 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_854, 0, x_852); -lean_ctor_set(x_854, 1, x_853); -x_855 = l_Lean_KernelException_toMessageData___closed__3; -x_856 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_856, 0, x_854); -lean_ctor_set(x_856, 1, x_855); -x_857 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_856, x_4, x_5, x_6, x_7, x_845); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_857; -} -else -{ -lean_object* x_858; lean_object* x_859; -lean_dec(x_834); -x_858 = lean_ctor_get(x_847, 0); +lean_object* x_857; lean_object* x_858; lean_object* x_859; +x_857 = lean_ctor_get(x_798, 0); +x_858 = lean_ctor_get(x_798, 1); lean_inc(x_858); -lean_dec(x_847); -x_859 = l_Lean_Environment_getModuleIdxFor_x3f(x_833, x_829); -lean_dec(x_833); -if (lean_obj_tag(x_859) == 0) -{ -lean_object* x_860; lean_object* x_861; -x_860 = lean_box(0); -x_861 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__45(x_1, x_858, x_2, x_841, x_837, x_835, x_829, x_10, x_860, x_4, x_5, x_6, x_7, x_845); -return x_861; +lean_inc(x_857); +lean_dec(x_798); +x_859 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_859, 0, x_857); +lean_ctor_set(x_859, 1, x_858); +return x_859; +} +} } else { -lean_dec(x_859); -if (x_2 == 0) -{ -lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; uint8_t x_868; -lean_dec(x_858); -lean_dec(x_841); -lean_dec(x_837); -lean_dec(x_835); +uint8_t x_860; +lean_dec(x_792); +lean_dec(x_790); +lean_dec(x_789); +lean_dec(x_788); +lean_dec(x_784); +lean_dec(x_777); lean_dec(x_10); -lean_dec(x_1); -x_862 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_862, 0, x_829); -x_863 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_864 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_864, 0, x_863); -lean_ctor_set(x_864, 1, x_862); -x_865 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_866 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_866, 0, x_864); -lean_ctor_set(x_866, 1, x_865); -x_867 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_866, x_4, x_5, x_6, x_7, x_845); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_868 = !lean_is_exclusive(x_867); -if (x_868 == 0) +lean_dec(x_1); +x_860 = !lean_is_exclusive(x_793); +if (x_860 == 0) +{ +return x_793; +} +else +{ +lean_object* x_861; lean_object* x_862; lean_object* x_863; +x_861 = lean_ctor_get(x_793, 0); +x_862 = lean_ctor_get(x_793, 1); +lean_inc(x_862); +lean_inc(x_861); +lean_dec(x_793); +x_863 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_863, 0, x_861); +lean_ctor_set(x_863, 1, x_862); +return x_863; +} +} +} +else +{ +lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; +lean_dec(x_790); +lean_dec(x_789); +lean_dec(x_788); +lean_dec(x_777); +lean_dec(x_10); +x_864 = lean_ctor_get(x_791, 0); +lean_inc(x_864); +lean_dec(x_791); +x_865 = lean_box(0); +x_866 = l_Lean_mkConst(x_864, x_865); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_866); +x_867 = l_Lean_Meta_inferType(x_866, x_4, x_5, x_6, x_7, x_787); +if (lean_obj_tag(x_867) == 0) +{ +lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; +x_868 = lean_ctor_get(x_867, 0); +lean_inc(x_868); +x_869 = lean_ctor_get(x_867, 1); +lean_inc(x_869); +lean_dec(x_867); +x_870 = lean_box(x_2); +x_871 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__41___boxed), 11, 4); +lean_closure_set(x_871, 0, x_784); +lean_closure_set(x_871, 1, x_1); +lean_closure_set(x_871, 2, x_870); +lean_closure_set(x_871, 3, x_866); +x_872 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_868, x_871, x_4, x_5, x_6, x_7, x_869); +return x_872; +} +else +{ +uint8_t x_873; +lean_dec(x_866); +lean_dec(x_784); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_873 = !lean_is_exclusive(x_867); +if (x_873 == 0) { return x_867; } else { -lean_object* x_869; lean_object* x_870; lean_object* x_871; -x_869 = lean_ctor_get(x_867, 0); -x_870 = lean_ctor_get(x_867, 1); -lean_inc(x_870); -lean_inc(x_869); +lean_object* x_874; lean_object* x_875; lean_object* x_876; +x_874 = lean_ctor_get(x_867, 0); +x_875 = lean_ctor_get(x_867, 1); +lean_inc(x_875); +lean_inc(x_874); lean_dec(x_867); -x_871 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_871, 0, x_869); -lean_ctor_set(x_871, 1, x_870); -return x_871; -} -} -else -{ -lean_object* x_872; lean_object* x_873; -x_872 = lean_box(0); -x_873 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__45(x_1, x_858, x_2, x_841, x_837, x_835, x_829, x_10, x_872, x_4, x_5, x_6, x_7, x_845); -return x_873; -} +x_876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_876, 0, x_874); +lean_ctor_set(x_876, 1, x_875); +return x_876; } } } } else { -uint8_t x_901; -lean_dec(x_841); -lean_dec(x_839); -lean_dec(x_837); -lean_dec(x_835); -lean_dec(x_834); -lean_dec(x_833); -lean_dec(x_829); -lean_dec(x_10); +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_dec(x_776); +lean_dec(x_1); +x_877 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_877, 0, x_10); +x_878 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_879 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_879, 0, x_878); +lean_ctor_set(x_879, 1, x_877); +x_880 = l_Lean_KernelException_toMessageData___closed__3; +x_881 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_881, 0, x_879); +lean_ctor_set(x_881, 1, x_880); +x_882 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_881, x_4, x_5, x_6, x_7, x_775); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_1); -x_901 = !lean_is_exclusive(x_843); -if (x_901 == 0) +return x_882; +} +} +case 10: { -return x_843; -} -else -{ -lean_object* x_902; lean_object* x_903; lean_object* x_904; -x_902 = lean_ctor_get(x_843, 0); -x_903 = lean_ctor_get(x_843, 1); -lean_inc(x_903); -lean_inc(x_902); -lean_dec(x_843); -x_904 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_904, 0, x_902); -lean_ctor_set(x_904, 1, x_903); -return x_904; -} -} -} -else -{ -uint8_t x_905; -lean_dec(x_837); -lean_dec(x_835); -lean_dec(x_834); -lean_dec(x_833); -lean_dec(x_829); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_905 = !lean_is_exclusive(x_838); -if (x_905 == 0) -{ -return x_838; -} -else -{ -lean_object* x_906; lean_object* x_907; lean_object* x_908; -x_906 = lean_ctor_get(x_838, 0); -x_907 = lean_ctor_get(x_838, 1); -lean_inc(x_907); -lean_inc(x_906); -lean_dec(x_838); -x_908 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_908, 0, x_906); -lean_ctor_set(x_908, 1, x_907); -return x_908; -} -} -} -else -{ -lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; -lean_dec(x_835); -lean_dec(x_834); -lean_dec(x_833); -lean_dec(x_829); -x_909 = lean_ctor_get(x_836, 0); -lean_inc(x_909); -lean_dec(x_836); -x_910 = lean_box(0); -x_911 = l_Lean_mkConst(x_909, x_910); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_911); -x_912 = l_Lean_Meta_inferType(x_911, x_4, x_5, x_6, x_7, x_832); -if (lean_obj_tag(x_912) == 0) -{ -lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; -x_913 = lean_ctor_get(x_912, 0); -lean_inc(x_913); -x_914 = lean_ctor_get(x_912, 1); -lean_inc(x_914); -lean_dec(x_912); -x_915 = lean_box(x_2); -x_916 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__46___boxed), 11, 4); -lean_closure_set(x_916, 0, x_10); -lean_closure_set(x_916, 1, x_1); -lean_closure_set(x_916, 2, x_915); -lean_closure_set(x_916, 3, x_911); -x_917 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_913, x_916, x_4, x_5, x_6, x_7, x_914); -return x_917; -} -else -{ -uint8_t x_918; -lean_dec(x_911); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_918 = !lean_is_exclusive(x_912); -if (x_918 == 0) -{ -return x_912; -} -else -{ -lean_object* x_919; lean_object* x_920; lean_object* x_921; -x_919 = lean_ctor_get(x_912, 0); -x_920 = lean_ctor_get(x_912, 1); -lean_inc(x_920); -lean_inc(x_919); -lean_dec(x_912); -x_921 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_921, 0, x_919); -lean_ctor_set(x_921, 1, x_920); -return x_921; -} -} -} -} -else -{ -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_dec(x_828); -lean_dec(x_1); -x_922 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_922, 0, x_10); -x_923 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; -x_924 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_924, 0, x_923); -lean_ctor_set(x_924, 1, x_922); -x_925 = l_Lean_KernelException_toMessageData___closed__3; -x_926 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_926, 0, x_924); -lean_ctor_set(x_926, 1, x_925); -x_927 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_926, x_4, x_5, x_6, x_7, x_827); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_927; -} -} -default: -{ -lean_object* x_928; lean_object* x_929; -x_928 = lean_ctor_get(x_9, 1); -lean_inc(x_928); +lean_object* x_883; lean_object* x_884; +x_883 = lean_ctor_get(x_9, 1); +lean_inc(x_883); lean_dec(x_9); -x_929 = l_Lean_Expr_getAppFn(x_10); -if (lean_obj_tag(x_929) == 4) +x_884 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_884) == 4) { -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; -x_930 = lean_ctor_get(x_929, 0); -lean_inc(x_930); -lean_dec(x_929); -x_931 = lean_st_ref_get(x_7, x_928); -x_932 = lean_ctor_get(x_931, 0); -lean_inc(x_932); -x_933 = lean_ctor_get(x_931, 1); -lean_inc(x_933); -lean_dec(x_931); -x_934 = lean_ctor_get(x_932, 0); -lean_inc(x_934); -lean_dec(x_932); -x_935 = lean_ctor_get(x_1, 0); -lean_inc(x_935); -x_936 = lean_ctor_get(x_1, 2); -lean_inc(x_936); -x_937 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_936, x_934, x_930); -if (lean_obj_tag(x_937) == 0) +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; +x_885 = lean_ctor_get(x_884, 0); +lean_inc(x_885); +lean_dec(x_884); +x_886 = lean_unsigned_to_nat(0u); +x_887 = l_Lean_Expr_getAppNumArgsAux(x_10, x_886); +x_888 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_887); +x_889 = lean_mk_array(x_887, x_888); +x_890 = lean_unsigned_to_nat(1u); +x_891 = lean_nat_sub(x_887, x_890); +lean_dec(x_887); +lean_inc(x_10); +x_892 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_889, x_891); +x_893 = lean_st_ref_get(x_7, x_883); +x_894 = lean_ctor_get(x_893, 0); +lean_inc(x_894); +x_895 = lean_ctor_get(x_893, 1); +lean_inc(x_895); +lean_dec(x_893); +x_896 = lean_ctor_get(x_894, 0); +lean_inc(x_896); +lean_dec(x_894); +x_897 = lean_ctor_get(x_1, 0); +lean_inc(x_897); +x_898 = lean_ctor_get(x_1, 2); +lean_inc(x_898); +x_899 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_898, x_896, x_885); +if (lean_obj_tag(x_899) == 0) { -lean_object* x_938; lean_object* x_939; -lean_inc(x_935); -x_938 = l_Lean_Name_append(x_930, x_935); -lean_inc(x_930); -x_939 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_930, x_4, x_5, x_6, x_7, x_933); -if (lean_obj_tag(x_939) == 0) +lean_object* x_900; lean_object* x_901; +lean_inc(x_897); +x_900 = l_Lean_Name_append(x_885, x_897); +lean_inc(x_885); +x_901 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_885, x_4, x_5, x_6, x_7, x_895); +if (lean_obj_tag(x_901) == 0) { -lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; -x_940 = lean_ctor_get(x_939, 0); -lean_inc(x_940); -x_941 = lean_ctor_get(x_939, 1); -lean_inc(x_941); -lean_dec(x_939); -x_942 = l_Lean_ConstantInfo_type(x_940); -x_943 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; +lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; +x_902 = lean_ctor_get(x_901, 0); +lean_inc(x_902); +x_903 = lean_ctor_get(x_901, 1); +lean_inc(x_903); +lean_dec(x_901); +x_904 = l_Lean_ConstantInfo_type(x_902); +x_905 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_942); -x_944 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_942, x_943, x_4, x_5, x_6, x_7, x_941); -if (lean_obj_tag(x_944) == 0) +lean_inc(x_904); +x_906 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_904, x_905, x_4, x_5, x_6, x_7, x_903); +if (lean_obj_tag(x_906) == 0) { -lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_976; uint8_t x_977; -x_945 = lean_ctor_get(x_944, 0); -lean_inc(x_945); -x_946 = lean_ctor_get(x_944, 1); -lean_inc(x_946); -lean_dec(x_944); -x_976 = l_Lean_Parser_evalParserConstUnsafe___closed__3; -x_977 = l_Lean_Expr_isConstOf(x_945, x_976); -if (x_977 == 0) +lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_938; uint8_t x_939; +x_907 = lean_ctor_get(x_906, 0); +lean_inc(x_907); +x_908 = lean_ctor_get(x_906, 1); +lean_inc(x_908); +lean_dec(x_906); +x_938 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_939 = l_Lean_Expr_isConstOf(x_907, x_938); +if (x_939 == 0) { -lean_object* x_978; uint8_t x_979; -x_978 = l_Lean_Parser_evalParserConstUnsafe___closed__1; -x_979 = l_Lean_Expr_isConstOf(x_945, x_978); -lean_dec(x_945); -if (x_979 == 0) +lean_object* x_940; uint8_t x_941; +x_940 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_941 = l_Lean_Expr_isConstOf(x_907, x_940); +lean_dec(x_907); +if (x_941 == 0) { -lean_object* x_980; -lean_dec(x_942); -lean_dec(x_940); -lean_dec(x_938); -lean_dec(x_936); -lean_dec(x_934); -lean_dec(x_930); +lean_object* x_942; +lean_dec(x_904); +lean_dec(x_902); +lean_dec(x_900); +lean_dec(x_898); +lean_dec(x_896); +lean_dec(x_892); +lean_dec(x_885); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_10); -x_980 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_946); -if (lean_obj_tag(x_980) == 0) +x_942 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_908); +if (lean_obj_tag(x_942) == 0) { -lean_object* x_981; -x_981 = lean_ctor_get(x_980, 0); -lean_inc(x_981); -if (lean_obj_tag(x_981) == 0) +lean_object* x_943; +x_943 = lean_ctor_get(x_942, 0); +lean_inc(x_943); +if (lean_obj_tag(x_943) == 0) { -lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; +lean_object* x_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_dec(x_1); -x_982 = lean_ctor_get(x_980, 1); -lean_inc(x_982); -lean_dec(x_980); -x_983 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_983, 0, x_935); -x_984 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_985 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_985, 0, x_984); -lean_ctor_set(x_985, 1, x_983); -x_986 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; -x_987 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_987, 0, x_985); -lean_ctor_set(x_987, 1, x_986); -x_988 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_988, 0, x_10); -x_989 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_989, 0, x_987); -lean_ctor_set(x_989, 1, x_988); -x_990 = l_Lean_KernelException_toMessageData___closed__3; -x_991 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_991, 0, x_989); -lean_ctor_set(x_991, 1, x_990); -x_992 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_991, x_4, x_5, x_6, x_7, x_982); +x_944 = lean_ctor_get(x_942, 1); +lean_inc(x_944); +lean_dec(x_942); +x_945 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_945, 0, x_897); +x_946 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_947 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_947, 0, x_946); +lean_ctor_set(x_947, 1, x_945); +x_948 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_949 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_949, 0, x_947); +lean_ctor_set(x_949, 1, x_948); +x_950 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_950, 0, x_10); +x_951 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_951, 0, x_949); +lean_ctor_set(x_951, 1, x_950); +x_952 = l_Lean_KernelException_toMessageData___closed__3; +x_953 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_953, 0, x_951); +lean_ctor_set(x_953, 1, x_952); +x_954 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_953, x_4, x_5, x_6, x_7, x_944); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_992; +return x_954; } else { -lean_object* x_993; lean_object* x_994; -lean_dec(x_935); +lean_object* x_955; lean_object* x_956; +lean_dec(x_897); lean_dec(x_10); -x_993 = lean_ctor_get(x_980, 1); -lean_inc(x_993); -lean_dec(x_980); -x_994 = lean_ctor_get(x_981, 0); -lean_inc(x_994); -lean_dec(x_981); -x_3 = x_994; -x_8 = x_993; +x_955 = lean_ctor_get(x_942, 1); +lean_inc(x_955); +lean_dec(x_942); +x_956 = lean_ctor_get(x_943, 0); +lean_inc(x_956); +lean_dec(x_943); +x_3 = x_956; +x_8 = x_955; goto _start; } } else { -uint8_t x_996; -lean_dec(x_935); +uint8_t x_958; +lean_dec(x_897); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_996 = !lean_is_exclusive(x_980); -if (x_996 == 0) +x_958 = !lean_is_exclusive(x_942); +if (x_958 == 0) { +return x_942; +} +else +{ +lean_object* x_959; lean_object* x_960; lean_object* x_961; +x_959 = lean_ctor_get(x_942, 0); +x_960 = lean_ctor_get(x_942, 1); +lean_inc(x_960); +lean_inc(x_959); +lean_dec(x_942); +x_961 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_961, 0, x_959); +lean_ctor_set(x_961, 1, x_960); +return x_961; +} +} +} +else +{ +lean_object* x_962; +x_962 = lean_box(0); +x_909 = x_962; +goto block_937; +} +} +else +{ +lean_object* x_963; +lean_dec(x_907); +x_963 = lean_box(0); +x_909 = x_963; +goto block_937; +} +block_937: +{ +lean_object* x_910; +lean_dec(x_909); +x_910 = l_Lean_ConstantInfo_value_x3f(x_902); +lean_dec(x_902); +if (lean_obj_tag(x_910) == 0) +{ +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_dec(x_904); +lean_dec(x_900); +lean_dec(x_898); +lean_dec(x_896); +lean_dec(x_892); +lean_dec(x_885); +lean_dec(x_1); +x_911 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_911, 0, x_897); +x_912 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_913 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_913, 0, x_912); +lean_ctor_set(x_913, 1, x_911); +x_914 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_915 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_915, 0, x_913); +lean_ctor_set(x_915, 1, x_914); +x_916 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_916, 0, x_10); +x_917 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_917, 0, x_915); +lean_ctor_set(x_917, 1, x_916); +x_918 = l_Lean_KernelException_toMessageData___closed__3; +x_919 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_919, 0, x_917); +lean_ctor_set(x_919, 1, x_918); +x_920 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_919, x_4, x_5, x_6, x_7, x_908); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_920; +} +else +{ +lean_object* x_921; lean_object* x_922; +lean_dec(x_897); +lean_dec(x_10); +x_921 = lean_ctor_get(x_910, 0); +lean_inc(x_921); +lean_dec(x_910); +x_922 = l_Lean_Environment_getModuleIdxFor_x3f(x_896, x_885); +lean_dec(x_896); +if (lean_obj_tag(x_922) == 0) +{ +lean_object* x_923; lean_object* x_924; +x_923 = lean_box(0); +x_924 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__45(x_1, x_921, x_2, x_904, x_900, x_898, x_885, x_892, x_923, x_4, x_5, x_6, x_7, x_908); +return x_924; +} +else +{ +lean_dec(x_922); +if (x_2 == 0) +{ +lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; uint8_t x_931; +lean_dec(x_921); +lean_dec(x_904); +lean_dec(x_900); +lean_dec(x_898); +lean_dec(x_892); +lean_dec(x_1); +x_925 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_925, 0, x_885); +x_926 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_927 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_927, 0, x_926); +lean_ctor_set(x_927, 1, x_925); +x_928 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_929 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_929, 0, x_927); +lean_ctor_set(x_929, 1, x_928); +x_930 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_929, x_4, x_5, x_6, x_7, x_908); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_931 = !lean_is_exclusive(x_930); +if (x_931 == 0) +{ +return x_930; +} +else +{ +lean_object* x_932; lean_object* x_933; lean_object* x_934; +x_932 = lean_ctor_get(x_930, 0); +x_933 = lean_ctor_get(x_930, 1); +lean_inc(x_933); +lean_inc(x_932); +lean_dec(x_930); +x_934 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_934, 0, x_932); +lean_ctor_set(x_934, 1, x_933); +return x_934; +} +} +else +{ +lean_object* x_935; lean_object* x_936; +x_935 = lean_box(0); +x_936 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__45(x_1, x_921, x_2, x_904, x_900, x_898, x_885, x_892, x_935, x_4, x_5, x_6, x_7, x_908); +return x_936; +} +} +} +} +} +else +{ +uint8_t x_964; +lean_dec(x_904); +lean_dec(x_902); +lean_dec(x_900); +lean_dec(x_898); +lean_dec(x_897); +lean_dec(x_896); +lean_dec(x_892); +lean_dec(x_885); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_964 = !lean_is_exclusive(x_906); +if (x_964 == 0) +{ +return x_906; +} +else +{ +lean_object* x_965; lean_object* x_966; lean_object* x_967; +x_965 = lean_ctor_get(x_906, 0); +x_966 = lean_ctor_get(x_906, 1); +lean_inc(x_966); +lean_inc(x_965); +lean_dec(x_906); +x_967 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_967, 0, x_965); +lean_ctor_set(x_967, 1, x_966); +return x_967; +} +} +} +else +{ +uint8_t x_968; +lean_dec(x_900); +lean_dec(x_898); +lean_dec(x_897); +lean_dec(x_896); +lean_dec(x_892); +lean_dec(x_885); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_968 = !lean_is_exclusive(x_901); +if (x_968 == 0) +{ +return x_901; +} +else +{ +lean_object* x_969; lean_object* x_970; lean_object* x_971; +x_969 = lean_ctor_get(x_901, 0); +x_970 = lean_ctor_get(x_901, 1); +lean_inc(x_970); +lean_inc(x_969); +lean_dec(x_901); +x_971 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_971, 0, x_969); +lean_ctor_set(x_971, 1, x_970); +return x_971; +} +} +} +else +{ +lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; +lean_dec(x_898); +lean_dec(x_897); +lean_dec(x_896); +lean_dec(x_885); +lean_dec(x_10); +x_972 = lean_ctor_get(x_899, 0); +lean_inc(x_972); +lean_dec(x_899); +x_973 = lean_box(0); +x_974 = l_Lean_mkConst(x_972, x_973); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_974); +x_975 = l_Lean_Meta_inferType(x_974, x_4, x_5, x_6, x_7, x_895); +if (lean_obj_tag(x_975) == 0) +{ +lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; +x_976 = lean_ctor_get(x_975, 0); +lean_inc(x_976); +x_977 = lean_ctor_get(x_975, 1); +lean_inc(x_977); +lean_dec(x_975); +x_978 = lean_box(x_2); +x_979 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__46___boxed), 11, 4); +lean_closure_set(x_979, 0, x_892); +lean_closure_set(x_979, 1, x_1); +lean_closure_set(x_979, 2, x_978); +lean_closure_set(x_979, 3, x_974); +x_980 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_976, x_979, x_4, x_5, x_6, x_7, x_977); return x_980; } else { -lean_object* x_997; lean_object* x_998; lean_object* x_999; -x_997 = lean_ctor_get(x_980, 0); -x_998 = lean_ctor_get(x_980, 1); -lean_inc(x_998); -lean_inc(x_997); -lean_dec(x_980); -x_999 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_999, 0, x_997); -lean_ctor_set(x_999, 1, x_998); -return x_999; -} -} -} -else -{ -lean_object* x_1000; -x_1000 = lean_box(0); -x_947 = x_1000; -goto block_975; -} -} -else -{ -lean_object* x_1001; -lean_dec(x_945); -x_1001 = lean_box(0); -x_947 = x_1001; -goto block_975; -} -block_975: -{ -lean_object* x_948; -lean_dec(x_947); -x_948 = l_Lean_ConstantInfo_value_x3f(x_940); -lean_dec(x_940); -if (lean_obj_tag(x_948) == 0) -{ -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_dec(x_942); -lean_dec(x_938); -lean_dec(x_936); -lean_dec(x_934); -lean_dec(x_930); -lean_dec(x_1); -x_949 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_949, 0, x_935); -x_950 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; -x_951 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_951, 0, x_950); -lean_ctor_set(x_951, 1, x_949); -x_952 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; -x_953 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_953, 0, x_951); -lean_ctor_set(x_953, 1, x_952); -x_954 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_954, 0, x_10); -x_955 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_955, 0, x_953); -lean_ctor_set(x_955, 1, x_954); -x_956 = l_Lean_KernelException_toMessageData___closed__3; -x_957 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_957, 0, x_955); -lean_ctor_set(x_957, 1, x_956); -x_958 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_957, x_4, x_5, x_6, x_7, x_946); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_958; -} -else -{ -lean_object* x_959; lean_object* x_960; -lean_dec(x_935); -x_959 = lean_ctor_get(x_948, 0); -lean_inc(x_959); -lean_dec(x_948); -x_960 = l_Lean_Environment_getModuleIdxFor_x3f(x_934, x_930); -lean_dec(x_934); -if (lean_obj_tag(x_960) == 0) -{ -lean_object* x_961; lean_object* x_962; -x_961 = lean_box(0); -x_962 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__50(x_1, x_959, x_2, x_942, x_938, x_936, x_930, x_10, x_961, x_4, x_5, x_6, x_7, x_946); -return x_962; -} -else -{ -lean_dec(x_960); -if (x_2 == 0) -{ -lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; uint8_t x_969; -lean_dec(x_959); -lean_dec(x_942); -lean_dec(x_938); -lean_dec(x_936); -lean_dec(x_10); -lean_dec(x_1); -x_963 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_963, 0, x_930); -x_964 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; -x_965 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_965, 0, x_964); -lean_ctor_set(x_965, 1, x_963); -x_966 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; -x_967 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_967, 0, x_965); -lean_ctor_set(x_967, 1, x_966); -x_968 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_967, x_4, x_5, x_6, x_7, x_946); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_969 = !lean_is_exclusive(x_968); -if (x_969 == 0) -{ -return x_968; -} -else -{ -lean_object* x_970; lean_object* x_971; lean_object* x_972; -x_970 = lean_ctor_get(x_968, 0); -x_971 = lean_ctor_get(x_968, 1); -lean_inc(x_971); -lean_inc(x_970); -lean_dec(x_968); -x_972 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_972, 0, x_970); -lean_ctor_set(x_972, 1, x_971); -return x_972; -} -} -else -{ -lean_object* x_973; lean_object* x_974; -x_973 = lean_box(0); -x_974 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__50(x_1, x_959, x_2, x_942, x_938, x_936, x_930, x_10, x_973, x_4, x_5, x_6, x_7, x_946); -return x_974; -} -} -} -} -} -else -{ -uint8_t x_1002; -lean_dec(x_942); -lean_dec(x_940); -lean_dec(x_938); -lean_dec(x_936); -lean_dec(x_935); -lean_dec(x_934); -lean_dec(x_930); -lean_dec(x_10); +uint8_t x_981; +lean_dec(x_974); +lean_dec(x_892); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_1002 = !lean_is_exclusive(x_944); -if (x_1002 == 0) +x_981 = !lean_is_exclusive(x_975); +if (x_981 == 0) { -return x_944; +return x_975; } else { -lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; -x_1003 = lean_ctor_get(x_944, 0); -x_1004 = lean_ctor_get(x_944, 1); -lean_inc(x_1004); +lean_object* x_982; lean_object* x_983; lean_object* x_984; +x_982 = lean_ctor_get(x_975, 0); +x_983 = lean_ctor_get(x_975, 1); +lean_inc(x_983); +lean_inc(x_982); +lean_dec(x_975); +x_984 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_984, 0, x_982); +lean_ctor_set(x_984, 1, x_983); +return x_984; +} +} +} +} +else +{ +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_dec(x_884); +lean_dec(x_1); +x_985 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_985, 0, x_10); +x_986 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_987 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_987, 0, x_986); +lean_ctor_set(x_987, 1, x_985); +x_988 = l_Lean_KernelException_toMessageData___closed__3; +x_989 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_989, 0, x_987); +lean_ctor_set(x_989, 1, x_988); +x_990 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_989, x_4, x_5, x_6, x_7, x_883); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_990; +} +} +default: +{ +lean_object* x_991; lean_object* x_992; +x_991 = lean_ctor_get(x_9, 1); +lean_inc(x_991); +lean_dec(x_9); +x_992 = l_Lean_Expr_getAppFn(x_10); +if (lean_obj_tag(x_992) == 4) +{ +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; +x_993 = lean_ctor_get(x_992, 0); +lean_inc(x_993); +lean_dec(x_992); +x_994 = lean_unsigned_to_nat(0u); +x_995 = l_Lean_Expr_getAppNumArgsAux(x_10, x_994); +x_996 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_995); +x_997 = lean_mk_array(x_995, x_996); +x_998 = lean_unsigned_to_nat(1u); +x_999 = lean_nat_sub(x_995, x_998); +lean_dec(x_995); +lean_inc(x_10); +x_1000 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_997, x_999); +x_1001 = lean_st_ref_get(x_7, x_991); +x_1002 = lean_ctor_get(x_1001, 0); +lean_inc(x_1002); +x_1003 = lean_ctor_get(x_1001, 1); lean_inc(x_1003); -lean_dec(x_944); -x_1005 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1005, 0, x_1003); -lean_ctor_set(x_1005, 1, x_1004); -return x_1005; -} -} -} -else +lean_dec(x_1001); +x_1004 = lean_ctor_get(x_1002, 0); +lean_inc(x_1004); +lean_dec(x_1002); +x_1005 = lean_ctor_get(x_1, 0); +lean_inc(x_1005); +x_1006 = lean_ctor_get(x_1, 2); +lean_inc(x_1006); +x_1007 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor_x3f(x_1006, x_1004, x_993); +if (lean_obj_tag(x_1007) == 0) { -uint8_t x_1006; -lean_dec(x_938); -lean_dec(x_936); -lean_dec(x_935); -lean_dec(x_934); -lean_dec(x_930); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_1006 = !lean_is_exclusive(x_939); -if (x_1006 == 0) +lean_object* x_1008; lean_object* x_1009; +lean_inc(x_1005); +x_1008 = l_Lean_Name_append(x_993, x_1005); +lean_inc(x_993); +x_1009 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_993, x_4, x_5, x_6, x_7, x_1003); +if (lean_obj_tag(x_1009) == 0) { -return x_939; -} -else -{ -lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; -x_1007 = lean_ctor_get(x_939, 0); -x_1008 = lean_ctor_get(x_939, 1); -lean_inc(x_1008); -lean_inc(x_1007); -lean_dec(x_939); -x_1009 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1009, 0, x_1007); -lean_ctor_set(x_1009, 1, x_1008); -return x_1009; -} -} -} -else -{ -lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; -lean_dec(x_936); -lean_dec(x_935); -lean_dec(x_934); -lean_dec(x_930); -x_1010 = lean_ctor_get(x_937, 0); +lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; +x_1010 = lean_ctor_get(x_1009, 0); lean_inc(x_1010); -lean_dec(x_937); -x_1011 = lean_box(0); -x_1012 = l_Lean_mkConst(x_1010, x_1011); +x_1011 = lean_ctor_get(x_1009, 1); +lean_inc(x_1011); +lean_dec(x_1009); +x_1012 = l_Lean_ConstantInfo_type(x_1010); +x_1013 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___at_Lean_ParserCompiler_compileParserExpr___spec__4___rarg___closed__1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_1012); -x_1013 = l_Lean_Meta_inferType(x_1012, x_4, x_5, x_6, x_7, x_933); -if (lean_obj_tag(x_1013) == 0) +x_1014 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1012, x_1013, x_4, x_5, x_6, x_7, x_1011); +if (lean_obj_tag(x_1014) == 0) { -lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; -x_1014 = lean_ctor_get(x_1013, 0); -lean_inc(x_1014); -x_1015 = lean_ctor_get(x_1013, 1); +lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1046; uint8_t x_1047; +x_1015 = lean_ctor_get(x_1014, 0); lean_inc(x_1015); -lean_dec(x_1013); -x_1016 = lean_box(x_2); -x_1017 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__51___boxed), 11, 4); -lean_closure_set(x_1017, 0, x_10); -lean_closure_set(x_1017, 1, x_1); -lean_closure_set(x_1017, 2, x_1016); -lean_closure_set(x_1017, 3, x_1012); -x_1018 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1014, x_1017, x_4, x_5, x_6, x_7, x_1015); -return x_1018; +x_1016 = lean_ctor_get(x_1014, 1); +lean_inc(x_1016); +lean_dec(x_1014); +x_1046 = l_Lean_Parser_evalParserConstUnsafe___closed__3; +x_1047 = l_Lean_Expr_isConstOf(x_1015, x_1046); +if (x_1047 == 0) +{ +lean_object* x_1048; uint8_t x_1049; +x_1048 = l_Lean_Parser_evalParserConstUnsafe___closed__1; +x_1049 = l_Lean_Expr_isConstOf(x_1015, x_1048); +lean_dec(x_1015); +if (x_1049 == 0) +{ +lean_object* x_1050; +lean_dec(x_1012); +lean_dec(x_1010); +lean_dec(x_1008); +lean_dec(x_1006); +lean_dec(x_1004); +lean_dec(x_1000); +lean_dec(x_993); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_1050 = l_Lean_Meta_unfoldDefinition_x3f(x_10, x_4, x_5, x_6, x_7, x_1016); +if (lean_obj_tag(x_1050) == 0) +{ +lean_object* x_1051; +x_1051 = lean_ctor_get(x_1050, 0); +lean_inc(x_1051); +if (lean_obj_tag(x_1051) == 0) +{ +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_dec(x_1); +x_1052 = lean_ctor_get(x_1050, 1); +lean_inc(x_1052); +lean_dec(x_1050); +x_1053 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1053, 0, x_1005); +x_1054 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_1055 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1055, 0, x_1054); +lean_ctor_set(x_1055, 1, x_1053); +x_1056 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__12; +x_1057 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1057, 0, x_1055); +lean_ctor_set(x_1057, 1, x_1056); +x_1058 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1058, 0, x_10); +x_1059 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1059, 0, x_1057); +lean_ctor_set(x_1059, 1, x_1058); +x_1060 = l_Lean_KernelException_toMessageData___closed__3; +x_1061 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1061, 0, x_1059); +lean_ctor_set(x_1061, 1, x_1060); +x_1062 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_1061, x_4, x_5, x_6, x_7, x_1052); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1062; } else { -uint8_t x_1019; -lean_dec(x_1012); +lean_object* x_1063; lean_object* x_1064; +lean_dec(x_1005); +lean_dec(x_10); +x_1063 = lean_ctor_get(x_1050, 1); +lean_inc(x_1063); +lean_dec(x_1050); +x_1064 = lean_ctor_get(x_1051, 0); +lean_inc(x_1064); +lean_dec(x_1051); +x_3 = x_1064; +x_8 = x_1063; +goto _start; +} +} +else +{ +uint8_t x_1066; +lean_dec(x_1005); lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_1019 = !lean_is_exclusive(x_1013); -if (x_1019 == 0) +x_1066 = !lean_is_exclusive(x_1050); +if (x_1066 == 0) { -return x_1013; +return x_1050; } else { -lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; -x_1020 = lean_ctor_get(x_1013, 0); -x_1021 = lean_ctor_get(x_1013, 1); -lean_inc(x_1021); -lean_inc(x_1020); -lean_dec(x_1013); -x_1022 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1022, 0, x_1020); -lean_ctor_set(x_1022, 1, x_1021); -return x_1022; -} +lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; +x_1067 = lean_ctor_get(x_1050, 0); +x_1068 = lean_ctor_get(x_1050, 1); +lean_inc(x_1068); +lean_inc(x_1067); +lean_dec(x_1050); +x_1069 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1069, 0, x_1067); +lean_ctor_set(x_1069, 1, x_1068); +return x_1069; } } } else { -lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; -lean_dec(x_929); +lean_object* x_1070; +x_1070 = lean_box(0); +x_1017 = x_1070; +goto block_1045; +} +} +else +{ +lean_object* x_1071; +lean_dec(x_1015); +x_1071 = lean_box(0); +x_1017 = x_1071; +goto block_1045; +} +block_1045: +{ +lean_object* x_1018; +lean_dec(x_1017); +x_1018 = l_Lean_ConstantInfo_value_x3f(x_1010); +lean_dec(x_1010); +if (lean_obj_tag(x_1018) == 0) +{ +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_dec(x_1012); +lean_dec(x_1008); +lean_dec(x_1006); +lean_dec(x_1004); +lean_dec(x_1000); +lean_dec(x_993); lean_dec(x_1); -x_1023 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1023, 0, x_10); -x_1024 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_1019 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1019, 0, x_1005); +x_1020 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; +x_1021 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1021, 0, x_1020); +lean_ctor_set(x_1021, 1, x_1019); +x_1022 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__6; +x_1023 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1023, 0, x_1021); +lean_ctor_set(x_1023, 1, x_1022); +x_1024 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1024, 0, x_10); x_1025 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1025, 0, x_1024); -lean_ctor_set(x_1025, 1, x_1023); +lean_ctor_set(x_1025, 0, x_1023); +lean_ctor_set(x_1025, 1, x_1024); x_1026 = l_Lean_KernelException_toMessageData___closed__3; x_1027 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1027, 0, x_1025); lean_ctor_set(x_1027, 1, x_1026); -x_1028 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_1027, x_4, x_5, x_6, x_7, x_928); +x_1028 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_1027, x_4, x_5, x_6, x_7, x_1016); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); return x_1028; } +else +{ +lean_object* x_1029; lean_object* x_1030; +lean_dec(x_1005); +lean_dec(x_10); +x_1029 = lean_ctor_get(x_1018, 0); +lean_inc(x_1029); +lean_dec(x_1018); +x_1030 = l_Lean_Environment_getModuleIdxFor_x3f(x_1004, x_993); +lean_dec(x_1004); +if (lean_obj_tag(x_1030) == 0) +{ +lean_object* x_1031; lean_object* x_1032; +x_1031 = lean_box(0); +x_1032 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__50(x_1, x_1029, x_2, x_1012, x_1008, x_1006, x_993, x_1000, x_1031, x_4, x_5, x_6, x_7, x_1016); +return x_1032; +} +else +{ +lean_dec(x_1030); +if (x_2 == 0) +{ +lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; uint8_t x_1039; +lean_dec(x_1029); +lean_dec(x_1012); +lean_dec(x_1008); +lean_dec(x_1006); +lean_dec(x_1000); +lean_dec(x_1); +x_1033 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1033, 0, x_993); +x_1034 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +x_1035 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1035, 0, x_1034); +lean_ctor_set(x_1035, 1, x_1033); +x_1036 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__10; +x_1037 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1037, 0, x_1035); +lean_ctor_set(x_1037, 1, x_1036); +x_1038 = l_Lean_throwError___at_Lean_Meta_whnf___spec__1(x_1037, x_4, x_5, x_6, x_7, x_1016); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1039 = !lean_is_exclusive(x_1038); +if (x_1039 == 0) +{ +return x_1038; +} +else +{ +lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; +x_1040 = lean_ctor_get(x_1038, 0); +x_1041 = lean_ctor_get(x_1038, 1); +lean_inc(x_1041); +lean_inc(x_1040); +lean_dec(x_1038); +x_1042 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1042, 0, x_1040); +lean_ctor_set(x_1042, 1, x_1041); +return x_1042; +} +} +else +{ +lean_object* x_1043; lean_object* x_1044; +x_1043 = lean_box(0); +x_1044 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__50(x_1, x_1029, x_2, x_1012, x_1008, x_1006, x_993, x_1000, x_1043, x_4, x_5, x_6, x_7, x_1016); +return x_1044; +} +} } } } else { -uint8_t x_1029; +uint8_t x_1072; +lean_dec(x_1012); +lean_dec(x_1010); +lean_dec(x_1008); +lean_dec(x_1006); +lean_dec(x_1005); +lean_dec(x_1004); +lean_dec(x_1000); +lean_dec(x_993); +lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_1029 = !lean_is_exclusive(x_9); -if (x_1029 == 0) +x_1072 = !lean_is_exclusive(x_1014); +if (x_1072 == 0) +{ +return x_1014; +} +else +{ +lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; +x_1073 = lean_ctor_get(x_1014, 0); +x_1074 = lean_ctor_get(x_1014, 1); +lean_inc(x_1074); +lean_inc(x_1073); +lean_dec(x_1014); +x_1075 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1075, 0, x_1073); +lean_ctor_set(x_1075, 1, x_1074); +return x_1075; +} +} +} +else +{ +uint8_t x_1076; +lean_dec(x_1008); +lean_dec(x_1006); +lean_dec(x_1005); +lean_dec(x_1004); +lean_dec(x_1000); +lean_dec(x_993); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1076 = !lean_is_exclusive(x_1009); +if (x_1076 == 0) +{ +return x_1009; +} +else +{ +lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; +x_1077 = lean_ctor_get(x_1009, 0); +x_1078 = lean_ctor_get(x_1009, 1); +lean_inc(x_1078); +lean_inc(x_1077); +lean_dec(x_1009); +x_1079 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1079, 0, x_1077); +lean_ctor_set(x_1079, 1, x_1078); +return x_1079; +} +} +} +else +{ +lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; +lean_dec(x_1006); +lean_dec(x_1005); +lean_dec(x_1004); +lean_dec(x_993); +lean_dec(x_10); +x_1080 = lean_ctor_get(x_1007, 0); +lean_inc(x_1080); +lean_dec(x_1007); +x_1081 = lean_box(0); +x_1082 = l_Lean_mkConst(x_1080, x_1081); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1082); +x_1083 = l_Lean_Meta_inferType(x_1082, x_4, x_5, x_6, x_7, x_1003); +if (lean_obj_tag(x_1083) == 0) +{ +lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; +x_1084 = lean_ctor_get(x_1083, 0); +lean_inc(x_1084); +x_1085 = lean_ctor_get(x_1083, 1); +lean_inc(x_1085); +lean_dec(x_1083); +x_1086 = lean_box(x_2); +x_1087 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__51___boxed), 11, 4); +lean_closure_set(x_1087, 0, x_1000); +lean_closure_set(x_1087, 1, x_1); +lean_closure_set(x_1087, 2, x_1086); +lean_closure_set(x_1087, 3, x_1082); +x_1088 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__2___rarg(x_1084, x_1087, x_4, x_5, x_6, x_7, x_1085); +return x_1088; +} +else +{ +uint8_t x_1089; +lean_dec(x_1082); +lean_dec(x_1000); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1089 = !lean_is_exclusive(x_1083); +if (x_1089 == 0) +{ +return x_1083; +} +else +{ +lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; +x_1090 = lean_ctor_get(x_1083, 0); +x_1091 = lean_ctor_get(x_1083, 1); +lean_inc(x_1091); +lean_inc(x_1090); +lean_dec(x_1083); +x_1092 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1092, 0, x_1090); +lean_ctor_set(x_1092, 1, x_1091); +return x_1092; +} +} +} +} +else +{ +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_dec(x_992); +lean_dec(x_1); +x_1093 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1093, 0, x_10); +x_1094 = l_Lean_ParserCompiler_compileParserExpr___rarg___closed__2; +x_1095 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1095, 0, x_1094); +lean_ctor_set(x_1095, 1, x_1093); +x_1096 = l_Lean_KernelException_toMessageData___closed__3; +x_1097 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1097, 0, x_1095); +lean_ctor_set(x_1097, 1, x_1096); +x_1098 = l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1315____spec__1(x_1097, x_4, x_5, x_6, x_7, x_991); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1098; +} +} +} +} +else +{ +uint8_t x_1099; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1099 = !lean_is_exclusive(x_9); +if (x_1099 == 0) { return x_9; } else { -lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; -x_1030 = lean_ctor_get(x_9, 0); -x_1031 = lean_ctor_get(x_9, 1); -lean_inc(x_1031); -lean_inc(x_1030); +lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; +x_1100 = lean_ctor_get(x_9, 0); +x_1101 = lean_ctor_get(x_9, 1); +lean_inc(x_1101); +lean_inc(x_1100); lean_dec(x_9); -x_1032 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1032, 0, x_1030); -lean_ctor_set(x_1032, 1, x_1031); -return x_1032; +x_1102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1102, 0, x_1100); +lean_ctor_set(x_1102, 1, x_1101); +return x_1102; } } } @@ -25312,7 +25312,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__3___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25404,7 +25404,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__9___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25471,7 +25471,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__14___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25538,7 +25538,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__19___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25605,7 +25605,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__24___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25672,7 +25672,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__29___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25739,7 +25739,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__34___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25806,7 +25806,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__39___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25873,7 +25873,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__44___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25940,7 +25940,7 @@ lean_dec(x_2); x_16 = l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__49___rarg(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); +lean_dec(x_3); return x_16; } } @@ -25990,6 +25990,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__2(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26023,6 +26024,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__5(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26046,6 +26048,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__7(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26079,6 +26082,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__10(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26102,6 +26106,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__12(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26135,6 +26140,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__15(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26158,6 +26164,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__17(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26191,6 +26198,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__20(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26214,6 +26222,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__22(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26247,6 +26256,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__25(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26280,6 +26290,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__28(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26313,6 +26324,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__31(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26336,6 +26348,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__33(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26369,6 +26382,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__36(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26392,6 +26406,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__38(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26425,6 +26440,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__41(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26448,6 +26464,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__43(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26481,6 +26498,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__46(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26504,6 +26522,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__48(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } @@ -26537,6 +26556,7 @@ lean_dec(x_3); x_13 = l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__51(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_1); return x_13; } } diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index c99a7d666b..ada5f3f68a 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -116,6 +116,7 @@ extern lean_object* l_Lean_identKind___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppMatch(lean_object*); @@ -216,6 +217,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4(lean_ lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo___lambda__1___boxed__const__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1; @@ -254,7 +256,6 @@ uint8_t l_Lean_PrettyPrinter_Delaborator_AppMatchState_hasMotive___default; lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp_match__3___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; lean_object* l_Array_zip___rarg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabMVar___closed__1; extern lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__11; @@ -357,9 +358,9 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppMatch___close lean_object* l_Lean_PrettyPrinter_Delaborator_delabSorryAx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNamedPattern___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabSorryAx___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp_match__3(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__1; @@ -432,7 +433,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_getParamKinds___closed__1; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getRevAliases(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns_usingNames(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -584,7 +584,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance_match__3___ extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_369____closed__2; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns___spec__2(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__4; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -634,6 +633,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___closed__2; lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_getParamKinds___spec__1___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabLit_match__2(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabIte___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1389,7 +1389,7 @@ x_12 = l_Array_empty___closed__1; x_13 = lean_array_push(x_12, x_11); x_14 = lean_mk_syntax_ident(x_7); x_15 = lean_array_push(x_13, x_14); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5; x_17 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); @@ -17983,7 +17983,7 @@ if (x_25 == 0) { lean_object* x_26; uint8_t x_27; lean_dec(x_2); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_27 = lean_string_dec_eq(x_11, x_26); if (x_27 == 0) { @@ -18034,7 +18034,7 @@ if (x_38 == 0) { lean_object* x_39; uint8_t x_40; lean_dec(x_2); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_40 = lean_string_dec_eq(x_11, x_39); if (x_40 == 0) { @@ -18117,7 +18117,7 @@ if (x_58 == 0) { lean_object* x_59; uint8_t x_60; lean_dec(x_2); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_60 = lean_string_dec_eq(x_11, x_59); if (x_60 == 0) { @@ -18220,7 +18220,7 @@ if (x_83 == 0) { lean_object* x_84; uint8_t x_85; lean_dec(x_2); -x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_85 = lean_string_dec_eq(x_73, x_84); if (x_85 == 0) { @@ -18642,7 +18642,7 @@ x_41 = lean_string_dec_eq(x_31, x_40); if (x_41 == 0) { lean_object* x_42; uint8_t x_43; -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8; +x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8; x_43 = lean_string_dec_eq(x_31, x_42); lean_dec(x_31); if (x_43 == 0) @@ -25519,13 +25519,13 @@ if (x_9 == 0) { 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; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_11 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); x_13 = l_Array_empty___closed__1; x_14 = lean_array_push(x_13, x_12); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -25540,13 +25540,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1; x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_17); lean_ctor_set(x_20, 1, x_19); x_21 = l_Array_empty___closed__1; x_22 = lean_array_push(x_21, x_20); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c index 05e0a9c5b7..1590d1e551 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c @@ -27,6 +27,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object* size_t l_USize_add(size_t, size_t); extern lean_object* l_Lean_Name_getString_x21___closed__3; extern lean_object* l_Lean_fieldIdxKind; +extern lean_object* l_Lean_Parser_Tactic_first___closed__8; lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2963_(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_3030_(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkTailWs_formatter___rarg(lean_object*); @@ -379,7 +380,6 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkLinebreakBefore_formatter(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instInhabitedReaderT___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__6; uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM; uint8_t l_Lean_Name_isAnonymous(lean_object*); @@ -434,6 +434,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter_match__1(l lean_object* l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_instInhabitedFormat; lean_object* lean_array_pop(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_first___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_concat___lambda__1___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_parserOfStack_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -515,7 +516,6 @@ extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; uint8_t l_Std_Format_isNil(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_pushTokenCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCombinatorFormatterAttribute___closed__2; -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__8; lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__4; extern lean_object* l___private_Init_Data_Format_Basic_0__Std_Format_be___closed__1; @@ -9464,7 +9464,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_Tactic_firstNew___closed__8; +x_19 = l_Lean_Parser_Tactic_first___closed__8; x_20 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_3030____closed__12; x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18); if (lean_obj_tag(x_21) == 0) @@ -9500,7 +9500,7 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); -x_35 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_35 = l_Lean_Parser_Tactic_first___closed__6; x_36 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_3030____closed__22; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) diff --git a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index 609f665a93..06a1d5a4eb 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -29,6 +29,7 @@ uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___closed__1; size_t l_USize_add(size_t, size_t); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___lambda__1___closed__1; +extern lean_object* l_Lean_Parser_Tactic_first___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___rarg(lean_object*); uint8_t l_Lean_Syntax_isTokenAntiquot(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); @@ -127,7 +128,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter lean_object* l_Lean_PrettyPrinter_Parenthesizer_State_trailPrec___default; lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__8; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_parenthesizeTerm(lean_object*, lean_object*, lean_object*, lean_object*); @@ -409,7 +409,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter lean_object* l_Lean_PrettyPrinter_Parenthesizer_ite___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__4; lean_object* l_Lean_Syntax_getKind(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__6; uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*); lean_object* l_Lean_Syntax_Traverser_right(lean_object*); lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_mkParenthesizerAttribute___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -472,6 +471,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkLinebreakBefore_parenthesiz lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_lookahead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_first___closed__6; lean_object* l_Lean_PrettyPrinter_mkCombinatorParenthesizerAttribute(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goRight___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -496,6 +496,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_ lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_State_contCat___default; lean_object* l_Lean_PrettyPrinter_instOrElseParenthesizerM___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__6; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_PrettyPrinter_parenthesize___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbolNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -572,7 +573,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_liftCoreM___rarg(lean_object*, l lean_object* l_Lean_PrettyPrinter_parenthesize___closed__4; extern lean_object* l_Std_Format_paren___closed__3; lean_object* l_Lean_instMonadRef___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_3056____closed__26; lean_object* lean_mk_antiquot_parenthesizer(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__5; @@ -7696,7 +7696,7 @@ lean_ctor_set(x_6, 1, x_5); x_7 = l_Array_empty___closed__1; x_8 = lean_array_push(x_7, x_6); x_9 = lean_array_push(x_7, x_1); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_11 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); @@ -10786,7 +10786,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_Tactic_firstNew___closed__8; +x_19 = l_Lean_Parser_Tactic_first___closed__8; x_20 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_3056____closed__12; x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18); if (lean_obj_tag(x_21) == 0) @@ -10822,7 +10822,7 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); -x_35 = l_Lean_Parser_Tactic_firstNew___closed__6; +x_35 = l_Lean_Parser_Tactic_first___closed__6; x_36 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_3056____closed__22; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) diff --git a/stage0/stdlib/Lean/Server/FileWorker.c b/stage0/stdlib/Lean/Server/FileWorker.c index c638273155..3f0330018a 100644 --- a/stage0/stdlib/Lean/Server/FileWorker.c +++ b/stage0/stdlib/Lean/Server/FileWorker.c @@ -356,9 +356,9 @@ lean_object* l_Lean_Server_FileWorker_unfoldCmdSnaps___lambda__1___boxed(lean_ob lean_object* l_Lean_Server_FileWorker_leanpkgSetupSearchPath_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_FileWorker_parseParams___at_Lean_Server_FileWorker_handleRequest___spec__18___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_appendTrees___rarg(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; lean_object* l_Lean_Server_FileWorker_handleCompletion_match__2(lean_object*); lean_object* l_Lean_Elab_Command_mkState(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; lean_object* l_Lean_Server_FileWorker_leanpkgSetupSearchPath_processStderr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__2; lean_object* l_IO_AsyncList_waitFind_x3f___at_Lean_Server_FileWorker_withWaitFindSnap___spec__1(lean_object*, lean_object*, lean_object*); @@ -25432,7 +25432,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Server/InfoUtils.c b/stage0/stdlib/Lean/Server/InfoUtils.c index dff7d4dcbc..f5e4d75db8 100644 --- a/stage0/stdlib/Lean/Server/InfoUtils.c +++ b/stage0/stdlib/Lean/Server/InfoUtils.c @@ -73,7 +73,6 @@ lean_object* l_Lean_Elab_Info_updateContext_x3f(lean_object*, lean_object*); extern lean_object* l_Lean_interpolatedStrKind; lean_object* l_Nat_max(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_InfoTree_foldInfo_go___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; lean_object* l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_InfoTree_foldInfo_go_match__2(lean_object*); size_t l_USize_shiftRight(size_t, size_t); @@ -133,6 +132,7 @@ extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_InfoTree_goalsAt_x3f_hasNestedTactic_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_Elab_InfoTree_foldInfo_go___spec__2(lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2; lean_object* l_Lean_Elab_InfoTree_smallestInfo_x3f_match__1(lean_object*); extern lean_object* l_Lean_strLitKind; lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_InfoTree_goalsAt_x3f___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -150,7 +150,6 @@ lean_object* l_Lean_Elab_Info_isCompletion_match__1___rarg(lean_object*, lean_ob lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_Elab_InfoTree_foldInfo_go___spec__10(lean_object*); lean_object* l_Lean_Elab_Info_fmtHover_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_Elab_InfoTree_foldInfo_go___spec__15___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2; lean_object* l_Lean_Elab_Info_fmtHover_x3f___lambda__2___closed__2; lean_object* l_Lean_Elab_InfoTree_deepestNodes_go_match__1(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_foldlM___at_Lean_Elab_InfoTree_foldInfo_go___spec__14___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -263,6 +262,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_InfoTree_foldInfo_go___spe lean_object* l_Lean_Elab_InfoTree_deepestNodes_go_match__2(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_InfoTree_foldInfo_go___spec__13(lean_object*); lean_object* l_Lean_Elab_Info_fmtHover_x3f___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; uint8_t l_Array_contains___at_Lean_Elab_InfoTree_hoverableInfoAt_x3f___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Elab_Info_isTerm(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); @@ -5508,7 +5508,7 @@ lean_inc(x_6); lean_dec(x_4); x_7 = lean_ctor_get(x_6, 2); lean_inc(x_7); -x_8 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2; +x_8 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2; lean_inc(x_7); x_9 = l_Lean_Syntax_isOfKind(x_7, x_8); if (x_9 == 0) @@ -5527,7 +5527,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; x_12 = lean_unsigned_to_nat(1u); x_13 = l_Lean_Syntax_getArg(x_7, x_12); lean_dec(x_7); -x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3; +x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3; x_15 = l_Lean_Syntax_isOfKind(x_13, x_14); if (x_15 == 0) { diff --git a/stage0/stdlib/Std/Data/RBMap.c b/stage0/stdlib/Std/Data/RBMap.c index eba1e7f410..4e4baf19d3 100644 --- a/stage0/stdlib/Std/Data/RBMap.c +++ b/stage0/stdlib/Std/Data/RBMap.c @@ -82,7 +82,6 @@ lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Std_RBMap_max_x21___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBMap_instReprRBMap___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBMap_find_x21___rarg___closed__3; -lean_object* l_Std_RBMap_max_x21_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_balRight_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_balance2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_revFold___rarg(lean_object*, lean_object*, lean_object*); @@ -271,7 +270,6 @@ lean_object* l_Std_RBMap_foldM(lean_object*, lean_object*, lean_object*, lean_ob lean_object* l_Std_RBNode_fold___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBMap_isEmpty(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_lowerBound_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_RBMap_max_x21_match__1(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_fold(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBMap_max___rarg(lean_object*); lean_object* l_Std_RBNode_foldM___at_Std_RBMap_forM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -21711,37 +21709,6 @@ lean_dec(x_3); return x_4; } } -lean_object* l_Std_RBMap_max_x21_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; -lean_dec(x_2); -x_4 = lean_box(0); -x_5 = lean_apply_1(x_3, x_4); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -lean_dec(x_3); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_apply_1(x_2, x_6); -return x_7; -} -} -} -lean_object* l_Std_RBMap_max_x21_match__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = lean_alloc_closure((void*)(l_Std_RBMap_max_x21_match__1___rarg), 3, 0); -return x_4; -} -} static lean_object* _init_l_Std_RBMap_max_x21___rarg___closed__1() { _start: {