diff --git a/stage0/src/Lean/Elab/Syntax.lean b/stage0/src/Lean/Elab/Syntax.lean index cc60e7a693..cc4a6d5c92 100644 --- a/stage0/src/Lean/Elab/Syntax.lean +++ b/stage0/src/Lean/Elab/Syntax.lean @@ -45,8 +45,8 @@ private def markAsTrailingParser : ToParserDescrM Unit := set true @[inline] private def withNotFirst {α} (x : ToParserDescrM α) : ToParserDescrM α := withReader (fun ctx => { ctx with first := false }) x -@[inline] private def withoutLeftRec {α} (x : ToParserDescrM α) : ToParserDescrM α := - withReader (fun ctx => { ctx with leftRec := false }) x +@[inline] private def withNestedParser {α} (x : ToParserDescrM α) : ToParserDescrM α := + withReader (fun ctx => { ctx with leftRec := false, first := false }) x def checkLeftRec (stx : Syntax) : ToParserDescrM Bool := do let ctx ← read @@ -71,10 +71,10 @@ partial def toParserDescrAux (stx : Syntax) : ToParserDescrM Syntax := withRef s if (← checkLeftRec stx[0]) then if args.size == 1 then throwErrorAt stx "invalid atomic left recursive syntax" let args := args.eraseIdx 0 - let args ← args.mapIdxM fun i arg => withNotFirst $ toParserDescrAux arg + let args ← args.mapM fun arg => withNestedParser $ toParserDescrAux arg mkParserSeq args else - let args ← args.mapIdxM fun i arg => withNotFirst $ toParserDescrAux arg + let args ← args.mapIdxM fun i arg => withReader (fun ctx => { ctx with first := ctx.first && i.val == 0 }) $ toParserDescrAux arg mkParserSeq args else if kind == choiceKind then toParserDescrAux stx[0] @@ -83,13 +83,13 @@ partial def toParserDescrAux (stx : Syntax) : ToParserDescrM Syntax := withRef s else if kind == `Lean.Parser.Syntax.unary then let aliasName := (stx[0].getId).eraseMacroScopes liftIO $ Parser.ensureUnaryParserAlias aliasName - let d ← withoutLeftRec $ toParserDescrAux stx[2] + let d ← withNestedParser $ toParserDescrAux stx[2] `(ParserDescr.unary $(quote aliasName) $d) else if kind == `Lean.Parser.Syntax.binary then let aliasName := (stx[0].getId).eraseMacroScopes liftIO $ Parser.ensureBinaryParserAlias aliasName - let d₁ ← withoutLeftRec $ toParserDescrAux stx[2] - let d₂ ← withoutLeftRec $ toParserDescrAux stx[4] + let d₁ ← withNestedParser $ toParserDescrAux stx[2] + let d₂ ← withNestedParser $ toParserDescrAux stx[4] `(ParserDescr.binary $(quote aliasName) $d₁ $d₂) else if kind == `Lean.Parser.Syntax.cat then let cat := stx[0].getId.eraseMacroScopes @@ -135,7 +135,9 @@ partial def toParserDescrAux (stx : Syntax) : ToParserDescrM Syntax := withRef s else if kind == `Lean.Parser.Syntax.atom then match stx[0].isStrLit? with | some atom => - if (← read).leadingIdentAsSymbol then + /- For syntax categories where initialized with `leadingIdentAsSymbol` (e.g., `tactic`), we automatically mark + the first symbol as nonReserved. -/ + if (← read).leadingIdentAsSymbol && (← read).first then `(ParserDescr.nonReservedSymbol $(quote atom) false) else `(ParserDescr.symbol $(quote atom)) diff --git a/stage0/src/Lean/Parser/Extra.lean b/stage0/src/Lean/Parser/Extra.lean index c18ab9565c..76b26a19ea 100644 --- a/stage0/src/Lean/Parser/Extra.lean +++ b/stage0/src/Lean/Parser/Extra.lean @@ -72,7 +72,6 @@ macro "registerParserAlias!" aliasName:strLit declName:ident : term => PrettyPrinter.Formatter.registerAlias $aliasName $(mkIdentFrom declName (declName.getId ++ `formatter)) PrettyPrinter.Parenthesizer.registerAlias $aliasName $(mkIdentFrom declName (declName.getId ++ `parenthesizer))) -open PrettyPrinter in builtin_initialize registerParserAlias! "group" group registerParserAlias! "ppHardSpace" ppHardSpace diff --git a/stage0/src/Lean/Parser/Tactic.lean b/stage0/src/Lean/Parser/Tactic.lean index 1fac74bed1..d386c00df2 100644 --- a/stage0/src/Lean/Parser/Tactic.lean +++ b/stage0/src/Lean/Parser/Tactic.lean @@ -10,70 +10,10 @@ namespace Parser namespace Tactic builtin_initialize - registerParserAlias! "tacticSeq" tacticSeq + registerParserAlias! "tacticSeq" tacticSeq -def ident' : Parser := ident <|> "_" - -@[builtinTacticParser] def «intro» := parser! nonReservedSymbol "intro " >> many (checkColGt >> termParser maxPrec) -@[builtinTacticParser] def «intros» := parser! nonReservedSymbol "intros " >> many (checkColGt >> ident') -@[builtinTacticParser] def «revert» := parser! nonReservedSymbol "revert " >> many1 (checkColGt >> ident) -@[builtinTacticParser] def «clear» := parser! nonReservedSymbol "clear " >> many1 (checkColGt >> ident) -@[builtinTacticParser] def «subst» := parser! nonReservedSymbol "subst " >> many1 (checkColGt >> ident) -@[builtinTacticParser] def «assumption» := parser! nonReservedSymbol "assumption" -@[builtinTacticParser] def «apply» := parser! nonReservedSymbol "apply " >> termParser -@[builtinTacticParser] def «exact» := parser! nonReservedSymbol "exact " >> termParser -@[builtinTacticParser] def «refine» := parser! nonReservedSymbol "refine " >> termParser -@[builtinTacticParser] def «refine!» := parser! nonReservedSymbol "refine! " >> termParser -@[builtinTacticParser] def «case» := parser! nonReservedSymbol "case " >> ident >> darrow >> tacticSeq -@[builtinTacticParser] def «allGoals» := parser! nonReservedSymbol "allGoals " >> tacticSeq -@[builtinTacticParser] def «focus» := parser! nonReservedSymbol "focus " >> tacticSeq -@[builtinTacticParser] def «skip» := parser! nonReservedSymbol "skip" -@[builtinTacticParser] def «done» := parser! nonReservedSymbol "done" -@[builtinTacticParser] def «traceState» := parser! nonReservedSymbol "traceState" -@[builtinTacticParser] def «failIfSuccess» := parser! nonReservedSymbol "failIfSuccess " >> tacticSeq -@[builtinTacticParser] def «generalize» := parser! nonReservedSymbol "generalize " >> optional (atomic (ident >> " : ")) >> termParser 51 >> " = " >> ident @[builtinTacticParser] def «unknown» := parser! withPosition (ident >> errorAtSavedPos "unknown tactic" true) - -def locationWildcard := parser! "*" -def locationTarget := parser! unicodeSymbol "⊢" "|-" -def locationHyp := parser! many1 (checkColGt >> ident) -def location := parser! withPosition ("at " >> (locationWildcard <|> locationTarget <|> locationHyp)) - -@[builtinTacticParser] def change := parser! nonReservedSymbol "change " >> termParser >> optional location -@[builtinTacticParser] def changeWith := parser! nonReservedSymbol "change " >> termParser >> " with " >> termParser >> optional location - -def rwRule := parser! optional (unicodeSymbol "←" "<-") >> termParser -def rwRuleSeq := parser! "[" >> sepBy1 rwRule ", " true >> "]" -@[builtinTacticParser] def «rewrite» := parser! (nonReservedSymbol "rewrite" <|> nonReservedSymbol "rw") >> rwRule >> optional location -@[builtinTacticParser 1] def «rewriteSeq» := parser! (nonReservedSymbol "rewrite" <|> nonReservedSymbol "rw") >> rwRuleSeq >> optional location - -def altRHS := Term.hole <|> Term.syntheticHole <|> tacticSeq -def inductionAlt : Parser := parser! ident' >> many ident' >> darrow >> altRHS -def inductionAlts : Parser := parser! withPosition ("| " >> sepBy1 inductionAlt (checkColGe "alternatives must be indented" >> "|")) -def usingRec : Parser := optional (" using " >> ident) -def generalizingVars := optional (" generalizing " >> many1 ident) -@[builtinTacticParser] def «induction» := parser! nonReservedSymbol "induction " >> sepBy1 termParser ", " >> usingRec >> generalizingVars >> optional inductionAlts -def casesTarget := parser! optional (atomic (ident >> " : ")) >> termParser -@[builtinTacticParser] def «cases» := parser! nonReservedSymbol "cases " >> sepBy1 casesTarget ", " >> usingRec >> optional inductionAlts - -def matchAlt : Parser := parser! sepBy1 termParser ", " >> darrow >> altRHS -def matchAlts : Parser := parser! withPosition $ "| " >> sepBy1 matchAlt (checkColGe "alternatives must be indented" >> "| ") -@[builtinTacticParser] def «match» := parser! nonReservedSymbol "match " >> sepBy1 Term.matchDiscr ", " >> Term.optType >> " with " >> matchAlts -@[builtinTacticParser] def «introMatch» := parser! nonReservedSymbol "intro " >> matchAlts - -def withIds : Parser := optional (" with " >> many1 (checkColGt >> ident')) -@[builtinTacticParser] def «injection» := parser! nonReservedSymbol "injection " >> termParser >> withIds -@[builtinTacticParser] def paren := parser! "(" >> tacticSeq >> ")" @[builtinTacticParser] def nestedTactic := tacticSeqBracketed -@[builtinTacticParser] def orelse := tparser!:2 " <|> " >> tacticParser 1 - -/- Term binders as tactics. They are all implemented as macros using the triad: named holes, hygiene, and `refine` tactic. -/ -@[builtinTacticParser] def «have» := parser! "have " >> Term.haveDecl -@[builtinTacticParser] def «suffices» := parser! "suffices " >> Term.sufficesDecl -@[builtinTacticParser] def «show» := parser! "show " >> termParser -@[builtinTacticParser] def «let» := parser! "let " >> Term.letDecl -@[builtinTacticParser] def «let!» := parser! "let! " >> Term.letDecl -@[builtinTacticParser] def «letrec» := parser! withPosition (group ("let " >> nonReservedSymbol "rec ") >> Term.letRecDecls) end Tactic end Parser diff --git a/stage0/src/Lean/Parser/Term.lean b/stage0/src/Lean/Parser/Term.lean index 5b0a7c2b07..255ca0263d 100644 --- a/stage0/src/Lean/Parser/Term.lean +++ b/stage0/src/Lean/Parser/Term.lean @@ -218,6 +218,7 @@ builtin_initialize registerParserAlias! "letRecDecls" Term.letRecDecls registerParserAlias! "hole" Term.hole registerParserAlias! "syntheticHole" Term.syntheticHole + registerParserAlias! "matchDiscr" Term.matchDiscr end Parser end Lean diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 127bc12236..8bf64cad33 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -98,7 +98,6 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__12; lean_object* l_Array_filterSepElemsM___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_7455____closed__22; lean_object* l_Array_append___rarg(lean_object*, lean_object*); -lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__4; lean_object* l_Lean_Elab_Command_expandMixfix___closed__25; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__30; @@ -207,6 +206,7 @@ lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__10; lean_object* lean_string_utf8_byte_size(lean_object*); extern lean_object* l_Lean_Parser_mkParserOfConstantUnsafe_match__1___rarg___closed__2; lean_object* l_Lean_Elab_Command_expandElab___closed__36; +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942____closed__1; lean_object* l_Lean_Elab_Command_expandMixfix___closed__30; lean_object* l_Lean_mkAtom(lean_object*); lean_object* l_Lean_Elab_Command_elabElab___closed__1; @@ -269,7 +269,6 @@ lean_object* l___regBuiltin_Lean_Elab_Command_expandNotation(lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___closed__23; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacroRulesAux___spec__3___boxed(lean_object*, lean_object*); -lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; lean_object* l___regBuiltin_Lean_Elab_Command_elabElab___closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40; @@ -311,7 +310,7 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntaxAbbrev___closed__2; extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__7; lean_object* l_Lean_Elab_Command_expandElab___closed__22; lean_object* l_Lean_Elab_Command_expandMixfix___closed__2; -lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser___boxed(lean_object*); extern lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; @@ -349,7 +348,7 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942_(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__15; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__8; @@ -374,7 +373,6 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__20; extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__20; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__5; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915____closed__1; extern lean_object* l_Lean_Init_Meta___instance__4___closed__3; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__3; extern lean_object* l_Lean_strLitKind___closed__2; @@ -398,6 +396,7 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1 lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__5; lean_object* l_Lean_Elab_Command_elabSyntax_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__4; +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNestedParser(lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__5; extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__16; lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -557,7 +556,9 @@ lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31; extern lean_object* l_Lean_Elab_macroAttribute; extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; +lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescrAux___spec__10(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_Command_expandMixfix(lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed__const__1; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); @@ -565,6 +566,7 @@ extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__13; lean_object* l_Lean_Elab_Command_expandElab___closed__16; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__3; +lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescrAux___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__1(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_isAtomLikeSyntax___boxed(lean_object*); @@ -602,6 +604,7 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__21; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__38; lean_object* l_Lean_Elab_Command_expandElab___closed__48; lean_object* l_Lean_Elab_Command_elabSyntax___closed__1; +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNestedParser___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___kind_tactic____x40_Init_Tactics___hyg_2____closed__1; lean_object* l_Lean_Elab_Term_checkLeftRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); @@ -648,7 +651,6 @@ lean_object* l_Lean_Elab_Command_withExpectedType_match__1(lean_object*); extern lean_object* l___kind_term____x40_Init_Data_ToString_Macro___hyg_2____closed__3; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withoutLeftRec___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__8; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__21; @@ -665,7 +667,6 @@ lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__4; lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_toParserDescrAux___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__18; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__3; -lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withoutLeftRec(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__17; extern lean_object* l_Lean_Init_Prelude___instance__73; extern lean_object* l_String_Init_Data_String_Basic___instance__2; @@ -705,7 +706,7 @@ lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean lean_object* l_Lean_Elab_Command_elabMacroRulesAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_syntax_ident(lean_object*); extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__8; -lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescrAux___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* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_toNat(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__9; @@ -1368,7 +1369,7 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_ return x_2; } } -lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withoutLeftRec___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNestedParser___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -1377,34 +1378,34 @@ if (x_11 == 0) { uint8_t x_12; lean_object* x_13; x_12 = 0; +lean_ctor_set_uint8(x_2, sizeof(void*)*1, x_12); lean_ctor_set_uint8(x_2, sizeof(void*)*1 + 1, x_12); x_13 = lean_apply_9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } else { -lean_object* x_14; uint8_t x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; x_14 = lean_ctor_get(x_2, 0); -x_15 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -x_16 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +x_15 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); lean_inc(x_14); lean_dec(x_2); -x_17 = 0; -x_18 = lean_alloc_ctor(0, 1, 3); -lean_ctor_set(x_18, 0, x_14); -lean_ctor_set_uint8(x_18, sizeof(void*)*1, x_15); -lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 1, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 2, x_16); -x_19 = lean_apply_9(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_19; +x_16 = 0; +x_17 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_17, 0, x_14); +lean_ctor_set_uint8(x_17, sizeof(void*)*1, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*1 + 1, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*1 + 2, x_15); +x_18 = lean_apply_9(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_18; } } } -lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withoutLeftRec(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNestedParser(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withoutLeftRec___rarg), 10, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNestedParser___rarg), 10, 0); return x_2; } } @@ -4116,21 +4117,25 @@ x_16 = lean_unsigned_to_nat(0u); x_17 = lean_nat_dec_eq(x_3, x_16); if (x_17 == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_3, x_18); lean_dec(x_3); x_20 = lean_array_fget(x_2, x_4); -x_21 = lean_ctor_get(x_7, 0); -x_22 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 1); -x_23 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 2); -x_24 = 0; -lean_inc(x_21); -x_25 = lean_alloc_ctor(0, 1, 3); -lean_ctor_set(x_25, 0, x_21); -lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_24); -lean_ctor_set_uint8(x_25, sizeof(void*)*1 + 1, x_22); -lean_ctor_set_uint8(x_25, sizeof(void*)*1 + 2, x_23); +x_21 = lean_ctor_get_uint8(x_7, sizeof(void*)*1); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; uint8_t x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; +x_22 = lean_ctor_get(x_7, 0); +x_23 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 1); +x_24 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 2); +x_25 = 0; +lean_inc(x_22); +x_26 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_26, 0, x_22); +lean_ctor_set_uint8(x_26, sizeof(void*)*1, x_25); +lean_ctor_set_uint8(x_26, sizeof(void*)*1 + 1, x_23); +lean_ctor_set_uint8(x_26, sizeof(void*)*1 + 2, x_24); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); @@ -4138,28 +4143,28 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_26 = l_Lean_Elab_Term_toParserDescrAux(x_20, x_25, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_26) == 0) +x_27 = l_Lean_Elab_Term_toParserDescrAux(x_20, x_26, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_27) == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); -lean_dec(x_26); -x_29 = lean_nat_add(x_4, x_18); +x_29 = lean_ctor_get(x_27, 1); +lean_inc(x_29); +lean_dec(x_27); +x_30 = lean_nat_add(x_4, x_18); lean_dec(x_4); -x_30 = lean_array_push(x_6, x_27); +x_31 = lean_array_push(x_6, x_28); x_3 = x_19; -x_4 = x_29; +x_4 = x_30; x_5 = lean_box(0); -x_6 = x_30; -x_15 = x_28; +x_6 = x_31; +x_15 = x_29; goto _start; } else { -uint8_t x_32; +uint8_t x_33; lean_dec(x_19); lean_dec(x_14); lean_dec(x_13); @@ -4170,29 +4175,102 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_6); lean_dec(x_4); -x_32 = !lean_is_exclusive(x_26); -if (x_32 == 0) +x_33 = !lean_is_exclusive(x_27); +if (x_33 == 0) { -return x_26; +return x_27; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_26, 0); -x_34 = lean_ctor_get(x_26, 1); +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_27, 0); +x_35 = lean_ctor_get(x_27, 1); +lean_inc(x_35); lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_26); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; +lean_dec(x_27); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; } } } else { -lean_object* x_36; +lean_object* x_37; uint8_t x_38; uint8_t x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; +x_37 = lean_ctor_get(x_7, 0); +x_38 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 1); +x_39 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 2); +x_40 = lean_nat_dec_eq(x_4, x_16); +lean_inc(x_37); +x_41 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_41, 0, x_37); +lean_ctor_set_uint8(x_41, sizeof(void*)*1, x_40); +lean_ctor_set_uint8(x_41, sizeof(void*)*1 + 1, x_38); +lean_ctor_set_uint8(x_41, sizeof(void*)*1 + 2, x_39); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_42 = l_Lean_Elab_Term_toParserDescrAux(x_20, x_41, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec(x_42); +x_45 = lean_nat_add(x_4, x_18); +lean_dec(x_4); +x_46 = lean_array_push(x_6, x_43); +x_3 = x_19; +x_4 = x_45; +x_5 = lean_box(0); +x_6 = x_46; +x_15 = x_44; +goto _start; +} +else +{ +uint8_t x_48; +lean_dec(x_19); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_4); +x_48 = !lean_is_exclusive(x_42); +if (x_48 == 0) +{ +return x_42; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_42, 0); +x_50 = lean_ctor_get(x_42, 1); +lean_inc(x_50); +lean_inc(x_49); +lean_dec(x_42); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +return x_51; +} +} +} +} +else +{ +lean_object* x_52; lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -4202,88 +4280,99 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_4); lean_dec(x_3); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_6); -lean_ctor_set(x_36, 1, x_15); -return x_36; +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_6); +lean_ctor_set(x_52, 1, x_15); +return x_52; } } } -lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescrAux___spec__10(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_16; uint8_t x_17; -x_16 = lean_unsigned_to_nat(0u); -x_17 = lean_nat_dec_eq(x_3, x_16); -if (x_17 == 0) +uint8_t x_13; +x_13 = x_2 < x_1; +if (x_13 == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; -x_18 = lean_unsigned_to_nat(1u); -x_19 = lean_nat_sub(x_3, x_18); -lean_dec(x_3); -x_20 = lean_array_fget(x_2, x_4); -x_21 = lean_ctor_get(x_7, 0); -x_22 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 1); -x_23 = lean_ctor_get_uint8(x_7, sizeof(void*)*1 + 2); -x_24 = 0; -lean_inc(x_21); -x_25 = lean_alloc_ctor(0, 1, 3); -lean_ctor_set(x_25, 0, x_21); -lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_24); -lean_ctor_set_uint8(x_25, sizeof(void*)*1 + 1, x_22); -lean_ctor_set_uint8(x_25, sizeof(void*)*1 + 2, x_23); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); +lean_object* x_14; lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_14 = x_3; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; +x_16 = lean_array_uget(x_3, x_2); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_array_uset(x_3, x_2, x_17); +x_19 = x_16; +x_20 = lean_ctor_get(x_4, 0); +x_21 = lean_ctor_get_uint8(x_4, sizeof(void*)*1 + 2); +x_22 = 0; +lean_inc(x_20); +x_23 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_23, 0, x_20); +lean_ctor_set_uint8(x_23, sizeof(void*)*1, x_22); +lean_ctor_set_uint8(x_23, sizeof(void*)*1 + 1, x_22); +lean_ctor_set_uint8(x_23, sizeof(void*)*1 + 2, x_21); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_26 = l_Lean_Elab_Term_toParserDescrAux(x_20, x_25, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_26) == 0) +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_24 = l_Lean_Elab_Term_toParserDescrAux(x_19, x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_24) == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = lean_nat_add(x_4, x_18); -lean_dec(x_4); -x_30 = lean_array_push(x_6, x_27); -x_3 = x_19; -x_4 = x_29; -x_5 = lean_box(0); -x_6 = x_30; -x_15 = x_28; +lean_object* x_25; lean_object* x_26; size_t x_27; size_t x_28; lean_object* x_29; lean_object* x_30; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = 1; +x_28 = x_2 + x_27; +x_29 = x_25; +x_30 = lean_array_uset(x_18, x_2, x_29); +x_2 = x_28; +x_3 = x_30; +x_12 = x_26; goto _start; } else { uint8_t x_32; -lean_dec(x_19); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); +lean_dec(x_18); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); lean_dec(x_6); -lean_dec(x_4); -x_32 = !lean_is_exclusive(x_26); +lean_dec(x_5); +x_32 = !lean_is_exclusive(x_24); if (x_32 == 0) { -return x_26; +return x_24; } else { lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_26, 0); -x_34 = lean_ctor_get(x_26, 1); +x_33 = lean_ctor_get(x_24, 0); +x_34 = lean_ctor_get(x_24, 1); lean_inc(x_34); lean_inc(x_33); -lean_dec(x_26); +lean_dec(x_24); x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_33); lean_ctor_set(x_35, 1, x_34); @@ -4291,23 +4380,6 @@ return x_35; } } } -else -{ -lean_object* x_36; -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_4); -lean_dec(x_3); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_6); -lean_ctor_set(x_36, 1, x_15); -return x_36; -} } } static lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___lambda__1___closed__1() { @@ -4618,66 +4690,83 @@ return x_70; } } } -lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +static lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed__const__1() { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_13 = lean_unsigned_to_nat(0u); -x_14 = l_Array_eraseIdx___rarg(x_1, x_13); -x_15 = lean_array_get_size(x_14); -x_16 = lean_mk_empty_array_with_capacity(x_15); -lean_inc(x_11); +size_t x_1; lean_object* x_2; +x_1 = 0; +x_2 = lean_box_usize(x_1); +return x_2; +} +} +lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t 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; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_eraseIdx___rarg(x_1, x_12); +x_14 = lean_array_get_size(x_13); +x_15 = lean_usize_of_nat(x_14); +lean_dec(x_14); +x_16 = x_13; +x_17 = lean_box_usize(x_15); +x_18 = l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed__const__1; +x_19 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescrAux___spec__10___boxed), 12, 3); +lean_closure_set(x_19, 0, x_17); +lean_closure_set(x_19, 1, x_18); +lean_closure_set(x_19, 2, x_16); +x_20 = x_19; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_17 = l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__10(x_2, x_14, x_15, x_13, lean_box(0), x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_14); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); -lean_inc(x_19); -lean_dec(x_17); -x_20 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq(x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_19); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -return x_20; -} -else -{ -uint8_t x_21; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_21 = !lean_is_exclusive(x_17); -if (x_21 == 0) -{ -return x_17; -} -else +lean_inc(x_5); +x_21 = lean_apply_9(x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_21) == 0) { lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_17, 0); -x_23 = lean_ctor_get(x_17, 1); -lean_inc(x_23); +x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); -lean_dec(x_17); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq(x_22, x_5, x_6, x_7, x_8, x_9, x_10, x_23); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); return x_24; } +else +{ +uint8_t x_25; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_25 = !lean_is_exclusive(x_21); +if (x_25 == 0) +{ +return x_21; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_21, 0); +x_27 = lean_ctor_get(x_21, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_21); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} } } } @@ -5659,15 +5748,146 @@ return x_149; } else { -uint8_t x_150; -x_150 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); -lean_dec(x_2); -if (x_150 == 0) -{ -lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; -x_151 = lean_ctor_get(x_148, 0); -lean_inc(x_151); +lean_object* x_150; lean_object* x_151; uint8_t x_192; +x_150 = lean_ctor_get(x_148, 0); +lean_inc(x_150); lean_dec(x_148); +x_192 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +if (x_192 == 0) +{ +lean_object* x_193; +lean_dec(x_2); +x_193 = lean_box(0); +x_151 = x_193; +goto block_191; +} +else +{ +uint8_t x_194; +x_194 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); +lean_dec(x_2); +if (x_194 == 0) +{ +lean_object* x_195; +x_195 = lean_box(0); +x_151 = x_195; +goto block_191; +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; +x_196 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +lean_dec(x_196); +x_199 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_198); +lean_dec(x_9); +x_200 = !lean_is_exclusive(x_199); +if (x_200 == 0) +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_201 = lean_ctor_get(x_199, 0); +x_202 = l_Lean_Elab_Term_toParserDescrAux___closed__11; +lean_inc(x_197); +lean_inc(x_201); +x_203 = l_Lean_addMacroScope(x_201, x_202, x_197); +x_204 = l_Lean_Init_Prelude___instance__72___closed__1; +x_205 = l_Lean_Elab_Term_toParserDescrAux___closed__9; +x_206 = l_Lean_Elab_Term_toParserDescrAux___closed__14; +x_207 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_207, 0, x_204); +lean_ctor_set(x_207, 1, x_205); +lean_ctor_set(x_207, 2, x_203); +lean_ctor_set(x_207, 3, x_206); +x_208 = l_Array_empty___closed__1; +x_209 = lean_array_push(x_208, x_207); +x_210 = l_Lean_Syntax_mkStrLit(x_150, x_204); +lean_dec(x_150); +x_211 = lean_array_push(x_208, x_210); +x_212 = l_Lean_setOptionFromString___closed__5; +x_213 = l_Lean_addMacroScope(x_201, x_212, x_197); +x_214 = l_Lean_Elab_Term_toParserDescrAux___closed__16; +x_215 = l_Lean_Elab_Term_toParserDescrAux___closed__18; +x_216 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_216, 0, x_204); +lean_ctor_set(x_216, 1, x_214); +lean_ctor_set(x_216, 2, x_213); +lean_ctor_set(x_216, 3, x_215); +x_217 = lean_array_push(x_211, x_216); +x_218 = l_Lean_nullKind___closed__2; +x_219 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_219, 0, x_218); +lean_ctor_set(x_219, 1, x_217); +x_220 = lean_array_push(x_209, x_219); +x_221 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_222, 0, x_221); +lean_ctor_set(x_222, 1, x_220); +lean_ctor_set(x_199, 0, x_222); +return x_199; +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_223 = lean_ctor_get(x_199, 0); +x_224 = lean_ctor_get(x_199, 1); +lean_inc(x_224); +lean_inc(x_223); +lean_dec(x_199); +x_225 = l_Lean_Elab_Term_toParserDescrAux___closed__11; +lean_inc(x_197); +lean_inc(x_223); +x_226 = l_Lean_addMacroScope(x_223, x_225, x_197); +x_227 = l_Lean_Init_Prelude___instance__72___closed__1; +x_228 = l_Lean_Elab_Term_toParserDescrAux___closed__9; +x_229 = l_Lean_Elab_Term_toParserDescrAux___closed__14; +x_230 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_230, 0, x_227); +lean_ctor_set(x_230, 1, x_228); +lean_ctor_set(x_230, 2, x_226); +lean_ctor_set(x_230, 3, x_229); +x_231 = l_Array_empty___closed__1; +x_232 = lean_array_push(x_231, x_230); +x_233 = l_Lean_Syntax_mkStrLit(x_150, x_227); +lean_dec(x_150); +x_234 = lean_array_push(x_231, x_233); +x_235 = l_Lean_setOptionFromString___closed__5; +x_236 = l_Lean_addMacroScope(x_223, x_235, x_197); +x_237 = l_Lean_Elab_Term_toParserDescrAux___closed__16; +x_238 = l_Lean_Elab_Term_toParserDescrAux___closed__18; +x_239 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_239, 0, x_227); +lean_ctor_set(x_239, 1, x_237); +lean_ctor_set(x_239, 2, x_236); +lean_ctor_set(x_239, 3, x_238); +x_240 = lean_array_push(x_234, x_239); +x_241 = l_Lean_nullKind___closed__2; +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set(x_242, 1, x_240); +x_243 = lean_array_push(x_232, x_242); +x_244 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set(x_245, 1, x_243); +x_246 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_246, 0, x_245); +lean_ctor_set(x_246, 1, x_224); +return x_246; +} +} +} +block_191: +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; +lean_dec(x_151); x_152 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_8); lean_dec(x_7); @@ -5698,8 +5918,8 @@ lean_ctor_set(x_163, 2, x_159); lean_ctor_set(x_163, 3, x_162); x_164 = l_Array_empty___closed__1; x_165 = lean_array_push(x_164, x_163); -x_166 = l_Lean_Syntax_mkStrLit(x_151, x_160); -lean_dec(x_151); +x_166 = l_Lean_Syntax_mkStrLit(x_150, x_160); +lean_dec(x_150); x_167 = lean_array_push(x_164, x_166); x_168 = l_Lean_nullKind___closed__2; x_169 = lean_alloc_ctor(1, 2, 0); @@ -5733,8 +5953,8 @@ lean_ctor_set(x_180, 2, x_176); lean_ctor_set(x_180, 3, x_179); x_181 = l_Array_empty___closed__1; x_182 = lean_array_push(x_181, x_180); -x_183 = l_Lean_Syntax_mkStrLit(x_151, x_177); -lean_dec(x_151); +x_183 = l_Lean_Syntax_mkStrLit(x_150, x_177); +lean_dec(x_150); x_184 = lean_array_push(x_181, x_183); x_185 = l_Lean_nullKind___closed__2; x_186 = lean_alloc_ctor(1, 2, 0); @@ -5751,236 +5971,65 @@ lean_ctor_set(x_190, 1, x_174); return x_190; } } -else -{ -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; -x_191 = lean_ctor_get(x_148, 0); -lean_inc(x_191); -lean_dec(x_148); -x_192 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); -lean_inc(x_194); -lean_dec(x_192); -x_195 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_194); -lean_dec(x_9); -x_196 = !lean_is_exclusive(x_195); -if (x_196 == 0) -{ -lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; -x_197 = lean_ctor_get(x_195, 0); -x_198 = l_Lean_Elab_Term_toParserDescrAux___closed__11; -lean_inc(x_193); -lean_inc(x_197); -x_199 = l_Lean_addMacroScope(x_197, x_198, x_193); -x_200 = l_Lean_Init_Prelude___instance__72___closed__1; -x_201 = l_Lean_Elab_Term_toParserDescrAux___closed__9; -x_202 = l_Lean_Elab_Term_toParserDescrAux___closed__14; -x_203 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_203, 0, x_200); -lean_ctor_set(x_203, 1, x_201); -lean_ctor_set(x_203, 2, x_199); -lean_ctor_set(x_203, 3, x_202); -x_204 = l_Array_empty___closed__1; -x_205 = lean_array_push(x_204, x_203); -x_206 = l_Lean_Syntax_mkStrLit(x_191, x_200); -lean_dec(x_191); -x_207 = lean_array_push(x_204, x_206); -x_208 = l_Lean_setOptionFromString___closed__5; -x_209 = l_Lean_addMacroScope(x_197, x_208, x_193); -x_210 = l_Lean_Elab_Term_toParserDescrAux___closed__16; -x_211 = l_Lean_Elab_Term_toParserDescrAux___closed__18; -x_212 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_212, 0, x_200); -lean_ctor_set(x_212, 1, x_210); -lean_ctor_set(x_212, 2, x_209); -lean_ctor_set(x_212, 3, x_211); -x_213 = lean_array_push(x_207, x_212); -x_214 = l_Lean_nullKind___closed__2; -x_215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_215, 0, x_214); -lean_ctor_set(x_215, 1, x_213); -x_216 = lean_array_push(x_205, x_215); -x_217 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_218, 0, x_217); -lean_ctor_set(x_218, 1, x_216); -lean_ctor_set(x_195, 0, x_218); -return x_195; -} -else -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_219 = lean_ctor_get(x_195, 0); -x_220 = lean_ctor_get(x_195, 1); -lean_inc(x_220); -lean_inc(x_219); -lean_dec(x_195); -x_221 = l_Lean_Elab_Term_toParserDescrAux___closed__11; -lean_inc(x_193); -lean_inc(x_219); -x_222 = l_Lean_addMacroScope(x_219, x_221, x_193); -x_223 = l_Lean_Init_Prelude___instance__72___closed__1; -x_224 = l_Lean_Elab_Term_toParserDescrAux___closed__9; -x_225 = l_Lean_Elab_Term_toParserDescrAux___closed__14; -x_226 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_226, 0, x_223); -lean_ctor_set(x_226, 1, x_224); -lean_ctor_set(x_226, 2, x_222); -lean_ctor_set(x_226, 3, x_225); -x_227 = l_Array_empty___closed__1; -x_228 = lean_array_push(x_227, x_226); -x_229 = l_Lean_Syntax_mkStrLit(x_191, x_223); -lean_dec(x_191); -x_230 = lean_array_push(x_227, x_229); -x_231 = l_Lean_setOptionFromString___closed__5; -x_232 = l_Lean_addMacroScope(x_219, x_231, x_193); -x_233 = l_Lean_Elab_Term_toParserDescrAux___closed__16; -x_234 = l_Lean_Elab_Term_toParserDescrAux___closed__18; -x_235 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_235, 0, x_223); -lean_ctor_set(x_235, 1, x_233); -lean_ctor_set(x_235, 2, x_232); -lean_ctor_set(x_235, 3, x_234); -x_236 = lean_array_push(x_230, x_235); -x_237 = l_Lean_nullKind___closed__2; -x_238 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_238, 0, x_237); -lean_ctor_set(x_238, 1, x_236); -x_239 = lean_array_push(x_228, x_238); -x_240 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_240); -lean_ctor_set(x_241, 1, x_239); -x_242 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_242, 0, x_241); -lean_ctor_set(x_242, 1, x_220); -return x_242; -} -} } } } else { -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; uint8_t x_252; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint8_t x_256; lean_dec(x_16); lean_dec(x_15); lean_dec(x_11); -x_243 = lean_unsigned_to_nat(0u); -x_244 = l_Lean_Syntax_getArg(x_1, x_243); -x_245 = l_Lean_Syntax_getId(x_244); -lean_dec(x_244); -x_246 = lean_erase_macro_scopes(x_245); -x_247 = lean_unsigned_to_nat(1u); +x_247 = lean_unsigned_to_nat(0u); x_248 = l_Lean_Syntax_getArg(x_1, x_247); -x_249 = l_Lean_Elab_Term_expandOptPrecedence(x_248); -x_250 = l_Lean_Parser_isParserAlias(x_246, x_10); -x_251 = lean_ctor_get(x_250, 0); -lean_inc(x_251); -x_252 = lean_unbox(x_251); -lean_dec(x_251); -if (x_252 == 0) -{ -lean_object* x_253; lean_object* x_254; uint8_t x_353; +x_249 = l_Lean_Syntax_getId(x_248); lean_dec(x_248); -lean_dec(x_18); -x_253 = lean_ctor_get(x_250, 1); -lean_inc(x_253); -lean_dec(x_250); -x_353 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -if (x_353 == 0) -{ -lean_object* x_354; -x_354 = lean_box(0); -x_254 = x_354; -goto block_352; -} -else -{ -lean_object* x_355; uint8_t x_356; -x_355 = lean_ctor_get(x_2, 0); -lean_inc(x_355); -x_356 = lean_name_eq(x_246, x_355); -lean_dec(x_355); -if (x_356 == 0) -{ -lean_object* x_357; -x_357 = lean_box(0); -x_254 = x_357; -goto block_352; -} -else -{ -lean_object* x_358; lean_object* x_359; -lean_dec(x_249); -lean_dec(x_246); -x_358 = l_Lean_Elab_Term_toParserDescrAux___closed__45; -x_359 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_358, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_253); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_359; -} -} -block_352: -{ -lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_308; -lean_dec(x_254); -x_255 = lean_st_ref_get(x_9, x_253); -x_256 = lean_ctor_get(x_255, 0); -lean_inc(x_256); -x_257 = lean_ctor_get(x_255, 1); -lean_inc(x_257); +x_250 = lean_erase_macro_scopes(x_249); +x_251 = lean_unsigned_to_nat(1u); +x_252 = l_Lean_Syntax_getArg(x_1, x_251); +x_253 = l_Lean_Elab_Term_expandOptPrecedence(x_252); +x_254 = l_Lean_Parser_isParserAlias(x_250, x_10); +x_255 = lean_ctor_get(x_254, 0); +lean_inc(x_255); +x_256 = lean_unbox(x_255); lean_dec(x_255); -x_258 = lean_ctor_get(x_256, 0); -lean_inc(x_258); -lean_dec(x_256); -x_308 = l_Lean_Parser_isParserCategory(x_258, x_246); -if (x_308 == 0) +if (x_256 == 0) { -lean_object* x_309; -lean_inc(x_4); -lean_inc(x_246); -x_309 = l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3(x_246, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_257); -if (lean_obj_tag(x_309) == 0) +lean_object* x_257; lean_object* x_258; uint8_t x_357; +lean_dec(x_252); +lean_dec(x_18); +x_257 = lean_ctor_get(x_254, 1); +lean_inc(x_257); +lean_dec(x_254); +x_357 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); +if (x_357 == 0) { -lean_object* x_310; lean_object* x_311; lean_object* x_312; -x_310 = lean_ctor_get(x_309, 0); -lean_inc(x_310); -x_311 = lean_ctor_get(x_309, 1); -lean_inc(x_311); -lean_dec(x_309); -x_312 = l_List_filterMap___at_Lean_Elab_Term_toParserDescrAux___spec__6(x_258, x_310); -if (lean_obj_tag(x_312) == 0) +lean_object* x_358; +x_358 = lean_box(0); +x_258 = x_358; +goto block_356; +} +else { -lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; -lean_dec(x_249); -x_313 = lean_unsigned_to_nat(3u); -x_314 = l_Lean_Syntax_getArg(x_1, x_313); -lean_dec(x_1); -x_315 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_315, 0, x_246); -x_316 = l_Lean_Elab_Term_toParserDescrAux___closed__35; -x_317 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_317, 0, x_316); -lean_ctor_set(x_317, 1, x_315); -x_318 = l_Lean_Elab_Term_toParserDescrAux___closed__37; -x_319 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -x_320 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_314, x_319, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_311); +lean_object* x_359; uint8_t x_360; +x_359 = lean_ctor_get(x_2, 0); +lean_inc(x_359); +x_360 = lean_name_eq(x_250, x_359); +lean_dec(x_359); +if (x_360 == 0) +{ +lean_object* x_361; +x_361 = lean_box(0); +x_258 = x_361; +goto block_356; +} +else +{ +lean_object* x_362; lean_object* x_363; +lean_dec(x_253); +lean_dec(x_250); +x_362 = l_Lean_Elab_Term_toParserDescrAux___closed__45; +x_363 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_362, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_257); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -5988,34 +6037,92 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_314); -return x_320; +lean_dec(x_1); +return x_363; +} +} +block_356: +{ +lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint8_t x_312; +lean_dec(x_258); +x_259 = lean_st_ref_get(x_9, x_257); +x_260 = lean_ctor_get(x_259, 0); +lean_inc(x_260); +x_261 = lean_ctor_get(x_259, 1); +lean_inc(x_261); +lean_dec(x_259); +x_262 = lean_ctor_get(x_260, 0); +lean_inc(x_262); +lean_dec(x_260); +x_312 = l_Lean_Parser_isParserCategory(x_262, x_250); +if (x_312 == 0) +{ +lean_object* x_313; +lean_inc(x_4); +lean_inc(x_250); +x_313 = l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3(x_250, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_261); +if (lean_obj_tag(x_313) == 0) +{ +lean_object* x_314; lean_object* x_315; lean_object* x_316; +x_314 = lean_ctor_get(x_313, 0); +lean_inc(x_314); +x_315 = lean_ctor_get(x_313, 1); +lean_inc(x_315); +lean_dec(x_313); +x_316 = l_List_filterMap___at_Lean_Elab_Term_toParserDescrAux___spec__6(x_262, x_314); +if (lean_obj_tag(x_316) == 0) +{ +lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; +lean_dec(x_253); +x_317 = lean_unsigned_to_nat(3u); +x_318 = l_Lean_Syntax_getArg(x_1, x_317); +lean_dec(x_1); +x_319 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_319, 0, x_250); +x_320 = l_Lean_Elab_Term_toParserDescrAux___closed__35; +x_321 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_321, 0, x_320); +lean_ctor_set(x_321, 1, x_319); +x_322 = l_Lean_Elab_Term_toParserDescrAux___closed__37; +x_323 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_323, 0, x_321); +lean_ctor_set(x_323, 1, x_322); +x_324 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_318, x_323, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_315); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_318); +return x_324; } else { -lean_object* x_321; lean_object* x_322; -lean_dec(x_246); -x_321 = lean_ctor_get(x_312, 0); -lean_inc(x_321); -x_322 = lean_ctor_get(x_312, 1); -lean_inc(x_322); -if (lean_obj_tag(x_322) == 0) +lean_object* x_325; lean_object* x_326; +lean_dec(x_250); +x_325 = lean_ctor_get(x_316, 0); +lean_inc(x_325); +x_326 = lean_ctor_get(x_316, 1); +lean_inc(x_326); +if (lean_obj_tag(x_326) == 0) { -lean_dec(x_312); -if (lean_obj_tag(x_249) == 0) +lean_dec(x_316); +if (lean_obj_tag(x_253) == 0) { -lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; uint8_t x_328; lean_object* x_329; -x_323 = lean_ctor_get(x_321, 0); -lean_inc(x_323); -x_324 = lean_ctor_get(x_321, 1); -lean_inc(x_324); -lean_dec(x_321); -x_325 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; -x_326 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; -x_327 = lean_box(0); -x_328 = lean_unbox(x_324); -lean_dec(x_324); -x_329 = l_Lean_Elab_Term_toParserDescrAux___lambda__1(x_328, x_325, x_326, x_323, x_1, x_327, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_311); +lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; uint8_t x_332; lean_object* x_333; +x_327 = lean_ctor_get(x_325, 0); +lean_inc(x_327); +x_328 = lean_ctor_get(x_325, 1); +lean_inc(x_328); +lean_dec(x_325); +x_329 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; +x_330 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; +x_331 = lean_box(0); +x_332 = lean_unbox(x_328); +lean_dec(x_328); +x_333 = l_Lean_Elab_Term_toParserDescrAux___lambda__1(x_332, x_329, x_330, x_327, x_1, x_331, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_315); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -6025,67 +6132,67 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -return x_329; -} -else -{ -lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; uint8_t x_334; -lean_dec(x_321); -lean_dec(x_249); -x_330 = lean_unsigned_to_nat(3u); -x_331 = l_Lean_Syntax_getArg(x_1, x_330); -lean_dec(x_1); -x_332 = l_Lean_Elab_Term_toParserDescrAux___closed__40; -x_333 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_331, x_332, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_311); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_331); -x_334 = !lean_is_exclusive(x_333); -if (x_334 == 0) -{ return x_333; } else { -lean_object* x_335; lean_object* x_336; lean_object* x_337; -x_335 = lean_ctor_get(x_333, 0); -x_336 = lean_ctor_get(x_333, 1); -lean_inc(x_336); -lean_inc(x_335); -lean_dec(x_333); -x_337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); +lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; uint8_t x_338; +lean_dec(x_325); +lean_dec(x_253); +x_334 = lean_unsigned_to_nat(3u); +x_335 = l_Lean_Syntax_getArg(x_1, x_334); +lean_dec(x_1); +x_336 = l_Lean_Elab_Term_toParserDescrAux___closed__40; +x_337 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_335, x_336, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_315); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_335); +x_338 = !lean_is_exclusive(x_337); +if (x_338 == 0) +{ return x_337; } +else +{ +lean_object* x_339; lean_object* x_340; lean_object* x_341; +x_339 = lean_ctor_get(x_337, 0); +x_340 = lean_ctor_get(x_337, 1); +lean_inc(x_340); +lean_inc(x_339); +lean_dec(x_337); +x_341 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +return x_341; +} } } else { -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; -lean_dec(x_322); -lean_dec(x_321); -lean_dec(x_249); -x_338 = lean_unsigned_to_nat(3u); -x_339 = l_Lean_Syntax_getArg(x_1, x_338); +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_dec(x_326); +lean_dec(x_325); +lean_dec(x_253); +x_342 = lean_unsigned_to_nat(3u); +x_343 = l_Lean_Syntax_getArg(x_1, x_342); lean_dec(x_1); -x_340 = l_List_map___at_Lean_Elab_Term_toParserDescrAux___spec__8(x_312); -x_341 = l_Lean_MessageData_ofList(x_340); -lean_dec(x_340); -x_342 = l_Lean_Elab_Term_toParserDescrAux___closed__42; -x_343 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_343, 0, x_342); -lean_ctor_set(x_343, 1, x_341); -x_344 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; -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_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_339, x_345, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_311); +x_344 = l_List_map___at_Lean_Elab_Term_toParserDescrAux___spec__8(x_316); +x_345 = l_Lean_MessageData_ofList(x_344); +lean_dec(x_344); +x_346 = l_Lean_Elab_Term_toParserDescrAux___closed__42; +x_347 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_347, 0, x_346); +lean_ctor_set(x_347, 1, x_345); +x_348 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; +x_349 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_349, 0, x_347); +lean_ctor_set(x_349, 1, x_348); +x_350 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_343, x_349, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_315); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -6093,184 +6200,184 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_339); -return x_346; -} -} -} -else -{ -uint8_t x_347; -lean_dec(x_258); -lean_dec(x_249); -lean_dec(x_246); -lean_dec(x_8); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_347 = !lean_is_exclusive(x_309); -if (x_347 == 0) -{ -return x_309; -} -else -{ -lean_object* x_348; lean_object* x_349; lean_object* x_350; -x_348 = lean_ctor_get(x_309, 0); -x_349 = lean_ctor_get(x_309, 1); -lean_inc(x_349); -lean_inc(x_348); -lean_dec(x_309); -x_350 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_350, 0, x_348); -lean_ctor_set(x_350, 1, x_349); +lean_dec(x_343); return x_350; } } } else { -lean_dec(x_258); +uint8_t x_351; +lean_dec(x_262); +lean_dec(x_253); +lean_dec(x_250); +lean_dec(x_8); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -if (lean_obj_tag(x_249) == 0) +x_351 = !lean_is_exclusive(x_313); +if (x_351 == 0) { -x_259 = x_243; -goto block_307; +return x_313; } else { -lean_object* x_351; -x_351 = lean_ctor_get(x_249, 0); -lean_inc(x_351); -lean_dec(x_249); -x_259 = x_351; -goto block_307; +lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_352 = lean_ctor_get(x_313, 0); +x_353 = lean_ctor_get(x_313, 1); +lean_inc(x_353); +lean_inc(x_352); +lean_dec(x_313); +x_354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +return x_354; } } -block_307: +} +else { -lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint8_t x_264; -x_260 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_257); +lean_dec(x_262); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +if (lean_obj_tag(x_253) == 0) +{ +x_263 = x_247; +goto block_311; +} +else +{ +lean_object* x_355; +x_355 = lean_ctor_get(x_253, 0); +lean_inc(x_355); +lean_dec(x_253); +x_263 = x_355; +goto block_311; +} +} +block_311: +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; uint8_t x_268; +x_264 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_261); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_261 = lean_ctor_get(x_260, 0); -lean_inc(x_261); -x_262 = lean_ctor_get(x_260, 1); -lean_inc(x_262); -lean_dec(x_260); -x_263 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_262); +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_264, 1); +lean_inc(x_266); +lean_dec(x_264); +x_267 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_266); lean_dec(x_9); -x_264 = !lean_is_exclusive(x_263); -if (x_264 == 0) +x_268 = !lean_is_exclusive(x_267); +if (x_268 == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; -x_265 = lean_ctor_get(x_263, 0); -x_266 = l_Lean_Elab_Term_toParserDescrAux___closed__30; -x_267 = l_Lean_addMacroScope(x_265, x_266, x_261); -x_268 = l_Lean_Init_Prelude___instance__72___closed__1; -x_269 = l_Lean_Elab_Term_toParserDescrAux___closed__29; -x_270 = l_Lean_Elab_Term_toParserDescrAux___closed__33; -x_271 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_271, 0, x_268); -lean_ctor_set(x_271, 1, x_269); -lean_ctor_set(x_271, 2, x_267); -lean_ctor_set(x_271, 3, x_270); -x_272 = l_Array_empty___closed__1; -x_273 = lean_array_push(x_272, x_271); -x_274 = l___private_Init_Meta_0__Lean_quoteName(x_246); -x_275 = lean_array_push(x_272, x_274); -x_276 = l_Nat_repr(x_259); -x_277 = l_Lean_numLitKind; -x_278 = l_Lean_Syntax_mkLit(x_277, x_276, x_268); -x_279 = lean_array_push(x_275, x_278); -x_280 = l_Lean_nullKind___closed__2; -x_281 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_281, 0, x_280); -lean_ctor_set(x_281, 1, x_279); -x_282 = lean_array_push(x_273, x_281); -x_283 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_284 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_284, 0, x_283); -lean_ctor_set(x_284, 1, x_282); -lean_ctor_set(x_263, 0, x_284); -return x_263; +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_269 = lean_ctor_get(x_267, 0); +x_270 = l_Lean_Elab_Term_toParserDescrAux___closed__30; +x_271 = l_Lean_addMacroScope(x_269, x_270, x_265); +x_272 = l_Lean_Init_Prelude___instance__72___closed__1; +x_273 = l_Lean_Elab_Term_toParserDescrAux___closed__29; +x_274 = l_Lean_Elab_Term_toParserDescrAux___closed__33; +x_275 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_275, 0, x_272); +lean_ctor_set(x_275, 1, x_273); +lean_ctor_set(x_275, 2, x_271); +lean_ctor_set(x_275, 3, x_274); +x_276 = l_Array_empty___closed__1; +x_277 = lean_array_push(x_276, x_275); +x_278 = l___private_Init_Meta_0__Lean_quoteName(x_250); +x_279 = lean_array_push(x_276, x_278); +x_280 = l_Nat_repr(x_263); +x_281 = l_Lean_numLitKind; +x_282 = l_Lean_Syntax_mkLit(x_281, x_280, x_272); +x_283 = lean_array_push(x_279, x_282); +x_284 = l_Lean_nullKind___closed__2; +x_285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_285, 0, x_284); +lean_ctor_set(x_285, 1, x_283); +x_286 = lean_array_push(x_277, x_285); +x_287 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_288, 0, x_287); +lean_ctor_set(x_288, 1, x_286); +lean_ctor_set(x_267, 0, x_288); +return x_267; } else { -lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; -x_285 = lean_ctor_get(x_263, 0); -x_286 = lean_ctor_get(x_263, 1); -lean_inc(x_286); -lean_inc(x_285); -lean_dec(x_263); -x_287 = l_Lean_Elab_Term_toParserDescrAux___closed__30; -x_288 = l_Lean_addMacroScope(x_285, x_287, x_261); -x_289 = l_Lean_Init_Prelude___instance__72___closed__1; -x_290 = l_Lean_Elab_Term_toParserDescrAux___closed__29; -x_291 = l_Lean_Elab_Term_toParserDescrAux___closed__33; -x_292 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_292, 0, x_289); -lean_ctor_set(x_292, 1, x_290); -lean_ctor_set(x_292, 2, x_288); -lean_ctor_set(x_292, 3, x_291); -x_293 = l_Array_empty___closed__1; -x_294 = lean_array_push(x_293, x_292); -x_295 = l___private_Init_Meta_0__Lean_quoteName(x_246); -x_296 = lean_array_push(x_293, x_295); -x_297 = l_Nat_repr(x_259); -x_298 = l_Lean_numLitKind; -x_299 = l_Lean_Syntax_mkLit(x_298, x_297, x_289); -x_300 = lean_array_push(x_296, x_299); -x_301 = l_Lean_nullKind___closed__2; -x_302 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_302, 0, x_301); -lean_ctor_set(x_302, 1, x_300); -x_303 = lean_array_push(x_294, x_302); -x_304 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_305, 0, x_304); -lean_ctor_set(x_305, 1, x_303); -x_306 = lean_alloc_ctor(0, 2, 0); +lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; +x_289 = lean_ctor_get(x_267, 0); +x_290 = lean_ctor_get(x_267, 1); +lean_inc(x_290); +lean_inc(x_289); +lean_dec(x_267); +x_291 = l_Lean_Elab_Term_toParserDescrAux___closed__30; +x_292 = l_Lean_addMacroScope(x_289, x_291, x_265); +x_293 = l_Lean_Init_Prelude___instance__72___closed__1; +x_294 = l_Lean_Elab_Term_toParserDescrAux___closed__29; +x_295 = l_Lean_Elab_Term_toParserDescrAux___closed__33; +x_296 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_296, 0, x_293); +lean_ctor_set(x_296, 1, x_294); +lean_ctor_set(x_296, 2, x_292); +lean_ctor_set(x_296, 3, x_295); +x_297 = l_Array_empty___closed__1; +x_298 = lean_array_push(x_297, x_296); +x_299 = l___private_Init_Meta_0__Lean_quoteName(x_250); +x_300 = lean_array_push(x_297, x_299); +x_301 = l_Nat_repr(x_263); +x_302 = l_Lean_numLitKind; +x_303 = l_Lean_Syntax_mkLit(x_302, x_301, x_293); +x_304 = lean_array_push(x_300, x_303); +x_305 = l_Lean_nullKind___closed__2; +x_306 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_306, 0, x_305); -lean_ctor_set(x_306, 1, x_286); -return x_306; +lean_ctor_set(x_306, 1, x_304); +x_307 = lean_array_push(x_298, x_306); +x_308 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_309 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_309, 0, x_308); +lean_ctor_set(x_309, 1, x_307); +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_309); +lean_ctor_set(x_310, 1, x_290); +return x_310; } } } } else { -lean_object* x_360; lean_object* x_361; +lean_object* x_364; lean_object* x_365; lean_dec(x_1); -x_360 = lean_ctor_get(x_250, 1); -lean_inc(x_360); -lean_dec(x_250); -lean_inc(x_246); -x_361 = l_Lean_Parser_ensureConstantParserAlias(x_246, x_360); -if (lean_obj_tag(x_361) == 0) +x_364 = lean_ctor_get(x_254, 1); +lean_inc(x_364); +lean_dec(x_254); +lean_inc(x_250); +x_365 = l_Lean_Parser_ensureConstantParserAlias(x_250, x_364); +if (lean_obj_tag(x_365) == 0) { lean_dec(x_18); -if (lean_obj_tag(x_249) == 0) +if (lean_obj_tag(x_253) == 0) { -lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; -lean_dec(x_248); -x_362 = lean_ctor_get(x_361, 1); -lean_inc(x_362); -lean_dec(x_361); -x_363 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; -x_364 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; -x_365 = lean_box(0); -x_366 = l_Lean_Elab_Term_toParserDescrAux___lambda__2(x_363, x_364, x_246, x_365, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_362); +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; +lean_dec(x_252); +x_366 = lean_ctor_get(x_365, 1); +lean_inc(x_366); +lean_dec(x_365); +x_367 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; +x_368 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; +x_369 = lean_box(0); +x_370 = l_Lean_Elab_Term_toParserDescrAux___lambda__2(x_367, x_368, x_250, x_369, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_366); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -6279,53 +6386,18 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_366; +return x_370; } else { -lean_object* x_367; lean_object* x_368; lean_object* x_369; uint8_t x_370; -lean_dec(x_249); -lean_dec(x_246); -x_367 = lean_ctor_get(x_361, 1); -lean_inc(x_367); -lean_dec(x_361); -x_368 = l_Lean_Elab_Term_toParserDescrAux___closed__47; -x_369 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_248, x_368, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_367); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_248); -x_370 = !lean_is_exclusive(x_369); -if (x_370 == 0) -{ -return x_369; -} -else -{ -lean_object* x_371; lean_object* x_372; lean_object* x_373; -x_371 = lean_ctor_get(x_369, 0); -x_372 = lean_ctor_get(x_369, 1); -lean_inc(x_372); +lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; +lean_dec(x_253); +lean_dec(x_250); +x_371 = lean_ctor_get(x_365, 1); lean_inc(x_371); -lean_dec(x_369); -x_373 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -return x_373; -} -} -} -else -{ -uint8_t x_374; -lean_dec(x_249); -lean_dec(x_248); -lean_dec(x_246); -lean_dec(x_8); +lean_dec(x_365); +x_372 = l_Lean_Elab_Term_toParserDescrAux___closed__47; +x_373 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_252, x_372, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_371); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -6333,42 +6405,77 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_374 = !lean_is_exclusive(x_361); +lean_dec(x_252); +x_374 = !lean_is_exclusive(x_373); if (x_374 == 0) { -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; -x_375 = lean_ctor_get(x_361, 0); -x_376 = lean_io_error_to_string(x_375); -x_377 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_377, 0, x_376); -x_378 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_378, 0, x_377); -x_379 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_379, 0, x_18); -lean_ctor_set(x_379, 1, x_378); -lean_ctor_set(x_361, 0, x_379); -return x_361; +return x_373; } else { -lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; -x_380 = lean_ctor_get(x_361, 0); -x_381 = lean_ctor_get(x_361, 1); -lean_inc(x_381); -lean_inc(x_380); -lean_dec(x_361); -x_382 = lean_io_error_to_string(x_380); -x_383 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_383, 0, x_382); -x_384 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_384, 0, x_383); -x_385 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_385, 0, x_18); -lean_ctor_set(x_385, 1, x_384); -x_386 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_386, 0, x_385); -lean_ctor_set(x_386, 1, x_381); -return x_386; +lean_object* x_375; lean_object* x_376; lean_object* x_377; +x_375 = lean_ctor_get(x_373, 0); +x_376 = lean_ctor_get(x_373, 1); +lean_inc(x_376); +lean_inc(x_375); +lean_dec(x_373); +x_377 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_377, 0, x_375); +lean_ctor_set(x_377, 1, x_376); +return x_377; +} +} +} +else +{ +uint8_t x_378; +lean_dec(x_253); +lean_dec(x_252); +lean_dec(x_250); +lean_dec(x_8); +lean_dec(x_9); +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_378 = !lean_is_exclusive(x_365); +if (x_378 == 0) +{ +lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; +x_379 = lean_ctor_get(x_365, 0); +x_380 = lean_io_error_to_string(x_379); +x_381 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_381, 0, x_380); +x_382 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_382, 0, x_381); +x_383 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_383, 0, x_18); +lean_ctor_set(x_383, 1, x_382); +lean_ctor_set(x_365, 0, x_383); +return x_365; +} +else +{ +lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; +x_384 = lean_ctor_get(x_365, 0); +x_385 = lean_ctor_get(x_365, 1); +lean_inc(x_385); +lean_inc(x_384); +lean_dec(x_365); +x_386 = lean_io_error_to_string(x_384); +x_387 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_387, 0, x_386); +x_388 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_388, 0, x_387); +x_389 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_389, 0, x_18); +lean_ctor_set(x_389, 1, x_388); +x_390 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_390, 0, x_389); +lean_ctor_set(x_390, 1, x_385); +return x_390; } } } @@ -6376,32 +6483,33 @@ return x_386; } else { -lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; +lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_dec(x_16); lean_dec(x_15); lean_dec(x_11); -x_387 = lean_unsigned_to_nat(0u); -x_388 = l_Lean_Syntax_getArg(x_1, x_387); -x_389 = l_Lean_Syntax_getId(x_388); -lean_dec(x_388); -x_390 = lean_erase_macro_scopes(x_389); -lean_inc(x_390); -x_391 = l_Lean_Parser_ensureBinaryParserAlias(x_390, x_10); -if (lean_obj_tag(x_391) == 0) +x_391 = lean_unsigned_to_nat(0u); +x_392 = l_Lean_Syntax_getArg(x_1, x_391); +x_393 = l_Lean_Syntax_getId(x_392); +lean_dec(x_392); +x_394 = lean_erase_macro_scopes(x_393); +lean_inc(x_394); +x_395 = l_Lean_Parser_ensureBinaryParserAlias(x_394, x_10); +if (lean_obj_tag(x_395) == 0) { -lean_object* x_392; lean_object* x_393; lean_object* x_394; uint8_t x_395; +lean_object* x_396; lean_object* x_397; lean_object* x_398; uint8_t x_399; lean_dec(x_18); -x_392 = lean_ctor_get(x_391, 1); -lean_inc(x_392); -lean_dec(x_391); -x_393 = lean_unsigned_to_nat(2u); -x_394 = l_Lean_Syntax_getArg(x_1, x_393); -x_395 = !lean_is_exclusive(x_2); -if (x_395 == 0) +x_396 = lean_ctor_get(x_395, 1); +lean_inc(x_396); +lean_dec(x_395); +x_397 = lean_unsigned_to_nat(2u); +x_398 = l_Lean_Syntax_getArg(x_1, x_397); +x_399 = !lean_is_exclusive(x_2); +if (x_399 == 0) { -uint8_t x_396; lean_object* x_397; -x_396 = 0; -lean_ctor_set_uint8(x_2, sizeof(void*)*1 + 1, x_396); +uint8_t x_400; lean_object* x_401; +x_400 = 0; +lean_ctor_set_uint8(x_2, sizeof(void*)*1, x_400); +lean_ctor_set_uint8(x_2, sizeof(void*)*1 + 1, x_400); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); @@ -6410,17 +6518,17 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_397 = l_Lean_Elab_Term_toParserDescrAux(x_394, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_392); -if (lean_obj_tag(x_397) == 0) +x_401 = l_Lean_Elab_Term_toParserDescrAux(x_398, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_396); +if (lean_obj_tag(x_401) == 0) { -lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; -x_398 = lean_ctor_get(x_397, 0); -lean_inc(x_398); -x_399 = lean_ctor_get(x_397, 1); -lean_inc(x_399); -lean_dec(x_397); -x_400 = lean_unsigned_to_nat(4u); -x_401 = l_Lean_Syntax_getArg(x_1, x_400); +lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_402 = lean_ctor_get(x_401, 0); +lean_inc(x_402); +x_403 = lean_ctor_get(x_401, 1); +lean_inc(x_403); +lean_dec(x_401); +x_404 = lean_unsigned_to_nat(4u); +x_405 = l_Lean_Syntax_getArg(x_1, x_404); lean_dec(x_1); lean_inc(x_9); lean_inc(x_8); @@ -6428,157 +6536,124 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_402 = l_Lean_Elab_Term_toParserDescrAux(x_401, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_399); -if (lean_obj_tag(x_402) == 0) +x_406 = l_Lean_Elab_Term_toParserDescrAux(x_405, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_403); +if (lean_obj_tag(x_406) == 0) { -lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; uint8_t x_409; -x_403 = lean_ctor_get(x_402, 0); -lean_inc(x_403); -x_404 = lean_ctor_get(x_402, 1); -lean_inc(x_404); -lean_dec(x_402); -x_405 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_404); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_406 = lean_ctor_get(x_405, 0); -lean_inc(x_406); -x_407 = lean_ctor_get(x_405, 1); +lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; uint8_t x_413; +x_407 = lean_ctor_get(x_406, 0); lean_inc(x_407); -lean_dec(x_405); -x_408 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_407); -lean_dec(x_9); -x_409 = !lean_is_exclusive(x_408); -if (x_409 == 0) -{ -lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; -x_410 = lean_ctor_get(x_408, 0); -x_411 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; -x_412 = l_Lean_addMacroScope(x_410, x_411, x_406); -x_413 = l_Lean_Init_Prelude___instance__72___closed__1; -x_414 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; -x_415 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; -x_416 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_416, 0, x_413); -lean_ctor_set(x_416, 1, x_414); -lean_ctor_set(x_416, 2, x_412); -lean_ctor_set(x_416, 3, x_415); -x_417 = l_Array_empty___closed__1; -x_418 = lean_array_push(x_417, x_416); -x_419 = l___private_Init_Meta_0__Lean_quoteName(x_390); -x_420 = lean_array_push(x_417, x_419); -x_421 = lean_array_push(x_420, x_398); -x_422 = lean_array_push(x_421, x_403); -x_423 = l_Lean_nullKind___closed__2; -x_424 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_424, 0, x_423); -lean_ctor_set(x_424, 1, x_422); -x_425 = lean_array_push(x_418, x_424); -x_426 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_427 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_427, 0, x_426); -lean_ctor_set(x_427, 1, x_425); -lean_ctor_set(x_408, 0, x_427); -return x_408; -} -else -{ -lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; -x_428 = lean_ctor_get(x_408, 0); -x_429 = lean_ctor_get(x_408, 1); -lean_inc(x_429); -lean_inc(x_428); -lean_dec(x_408); -x_430 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; -x_431 = l_Lean_addMacroScope(x_428, x_430, x_406); -x_432 = l_Lean_Init_Prelude___instance__72___closed__1; -x_433 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; -x_434 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; -x_435 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_435, 0, x_432); -lean_ctor_set(x_435, 1, x_433); -lean_ctor_set(x_435, 2, x_431); -lean_ctor_set(x_435, 3, x_434); -x_436 = l_Array_empty___closed__1; -x_437 = lean_array_push(x_436, x_435); -x_438 = l___private_Init_Meta_0__Lean_quoteName(x_390); -x_439 = lean_array_push(x_436, x_438); -x_440 = lean_array_push(x_439, x_398); -x_441 = lean_array_push(x_440, x_403); -x_442 = l_Lean_nullKind___closed__2; -x_443 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_443, 0, x_442); -lean_ctor_set(x_443, 1, x_441); -x_444 = lean_array_push(x_437, x_443); -x_445 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_446 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_446, 0, x_445); -lean_ctor_set(x_446, 1, x_444); -x_447 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_447, 0, x_446); -lean_ctor_set(x_447, 1, x_429); -return x_447; -} -} -else -{ -uint8_t x_448; -lean_dec(x_398); -lean_dec(x_390); +x_408 = lean_ctor_get(x_406, 1); +lean_inc(x_408); +lean_dec(x_406); +x_409 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_408); lean_dec(x_8); -lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_448 = !lean_is_exclusive(x_402); -if (x_448 == 0) +x_410 = lean_ctor_get(x_409, 0); +lean_inc(x_410); +x_411 = lean_ctor_get(x_409, 1); +lean_inc(x_411); +lean_dec(x_409); +x_412 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_411); +lean_dec(x_9); +x_413 = !lean_is_exclusive(x_412); +if (x_413 == 0) { -return x_402; +lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +x_414 = lean_ctor_get(x_412, 0); +x_415 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; +x_416 = l_Lean_addMacroScope(x_414, x_415, x_410); +x_417 = l_Lean_Init_Prelude___instance__72___closed__1; +x_418 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; +x_419 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; +x_420 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_420, 0, x_417); +lean_ctor_set(x_420, 1, x_418); +lean_ctor_set(x_420, 2, x_416); +lean_ctor_set(x_420, 3, x_419); +x_421 = l_Array_empty___closed__1; +x_422 = lean_array_push(x_421, x_420); +x_423 = l___private_Init_Meta_0__Lean_quoteName(x_394); +x_424 = lean_array_push(x_421, x_423); +x_425 = lean_array_push(x_424, x_402); +x_426 = lean_array_push(x_425, x_407); +x_427 = l_Lean_nullKind___closed__2; +x_428 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_428, 0, x_427); +lean_ctor_set(x_428, 1, x_426); +x_429 = lean_array_push(x_422, x_428); +x_430 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_431, 0, x_430); +lean_ctor_set(x_431, 1, x_429); +lean_ctor_set(x_412, 0, x_431); +return x_412; } else { -lean_object* x_449; lean_object* x_450; lean_object* x_451; -x_449 = lean_ctor_get(x_402, 0); -x_450 = lean_ctor_get(x_402, 1); -lean_inc(x_450); -lean_inc(x_449); -lean_dec(x_402); -x_451 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_451, 0, x_449); -lean_ctor_set(x_451, 1, x_450); +lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; +x_432 = lean_ctor_get(x_412, 0); +x_433 = lean_ctor_get(x_412, 1); +lean_inc(x_433); +lean_inc(x_432); +lean_dec(x_412); +x_434 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; +x_435 = l_Lean_addMacroScope(x_432, x_434, x_410); +x_436 = l_Lean_Init_Prelude___instance__72___closed__1; +x_437 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; +x_438 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; +x_439 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_439, 0, x_436); +lean_ctor_set(x_439, 1, x_437); +lean_ctor_set(x_439, 2, x_435); +lean_ctor_set(x_439, 3, x_438); +x_440 = l_Array_empty___closed__1; +x_441 = lean_array_push(x_440, x_439); +x_442 = l___private_Init_Meta_0__Lean_quoteName(x_394); +x_443 = lean_array_push(x_440, x_442); +x_444 = lean_array_push(x_443, x_402); +x_445 = lean_array_push(x_444, x_407); +x_446 = l_Lean_nullKind___closed__2; +x_447 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_447, 0, x_446); +lean_ctor_set(x_447, 1, x_445); +x_448 = lean_array_push(x_441, x_447); +x_449 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_450 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_450, 0, x_449); +lean_ctor_set(x_450, 1, x_448); +x_451 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_451, 0, x_450); +lean_ctor_set(x_451, 1, x_433); return x_451; } } -} else { uint8_t x_452; -lean_dec(x_2); -lean_dec(x_390); +lean_dec(x_402); +lean_dec(x_394); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_452 = !lean_is_exclusive(x_397); +x_452 = !lean_is_exclusive(x_406); if (x_452 == 0) { -return x_397; +return x_406; } else { lean_object* x_453; lean_object* x_454; lean_object* x_455; -x_453 = lean_ctor_get(x_397, 0); -x_454 = lean_ctor_get(x_397, 1); +x_453 = lean_ctor_get(x_406, 0); +x_454 = lean_ctor_get(x_406, 1); lean_inc(x_454); lean_inc(x_453); -lean_dec(x_397); +lean_dec(x_406); x_455 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_455, 0, x_453); lean_ctor_set(x_455, 1, x_454); @@ -6588,18 +6663,50 @@ return x_455; } else { -lean_object* x_456; uint8_t x_457; uint8_t x_458; uint8_t x_459; lean_object* x_460; lean_object* x_461; -x_456 = lean_ctor_get(x_2, 0); -x_457 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -x_458 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); -lean_inc(x_456); +uint8_t x_456; lean_dec(x_2); -x_459 = 0; -x_460 = lean_alloc_ctor(0, 1, 3); -lean_ctor_set(x_460, 0, x_456); -lean_ctor_set_uint8(x_460, sizeof(void*)*1, x_457); -lean_ctor_set_uint8(x_460, sizeof(void*)*1 + 1, x_459); -lean_ctor_set_uint8(x_460, sizeof(void*)*1 + 2, x_458); +lean_dec(x_394); +lean_dec(x_8); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_456 = !lean_is_exclusive(x_401); +if (x_456 == 0) +{ +return x_401; +} +else +{ +lean_object* x_457; lean_object* x_458; lean_object* x_459; +x_457 = lean_ctor_get(x_401, 0); +x_458 = lean_ctor_get(x_401, 1); +lean_inc(x_458); +lean_inc(x_457); +lean_dec(x_401); +x_459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_459, 0, x_457); +lean_ctor_set(x_459, 1, x_458); +return x_459; +} +} +} +else +{ +lean_object* x_460; uint8_t x_461; uint8_t x_462; lean_object* x_463; lean_object* x_464; +x_460 = lean_ctor_get(x_2, 0); +x_461 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +lean_inc(x_460); +lean_dec(x_2); +x_462 = 0; +x_463 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_463, 0, x_460); +lean_ctor_set_uint8(x_463, sizeof(void*)*1, x_462); +lean_ctor_set_uint8(x_463, sizeof(void*)*1 + 1, x_462); +lean_ctor_set_uint8(x_463, sizeof(void*)*1 + 2, x_461); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); @@ -6607,18 +6714,18 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_460); -x_461 = l_Lean_Elab_Term_toParserDescrAux(x_394, x_460, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_392); -if (lean_obj_tag(x_461) == 0) -{ -lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; -x_462 = lean_ctor_get(x_461, 0); -lean_inc(x_462); -x_463 = lean_ctor_get(x_461, 1); lean_inc(x_463); -lean_dec(x_461); -x_464 = lean_unsigned_to_nat(4u); -x_465 = l_Lean_Syntax_getArg(x_1, x_464); +x_464 = l_Lean_Elab_Term_toParserDescrAux(x_398, x_463, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_396); +if (lean_obj_tag(x_464) == 0) +{ +lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; +x_465 = lean_ctor_get(x_464, 0); +lean_inc(x_465); +x_466 = lean_ctor_get(x_464, 1); +lean_inc(x_466); +lean_dec(x_464); +x_467 = lean_unsigned_to_nat(4u); +x_468 = l_Lean_Syntax_getArg(x_1, x_467); lean_dec(x_1); lean_inc(x_9); lean_inc(x_8); @@ -6626,112 +6733,112 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_466 = l_Lean_Elab_Term_toParserDescrAux(x_465, x_460, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_463); -if (lean_obj_tag(x_466) == 0) +x_469 = l_Lean_Elab_Term_toParserDescrAux(x_468, x_463, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_466); +if (lean_obj_tag(x_469) == 0) { -lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; -x_467 = lean_ctor_get(x_466, 0); -lean_inc(x_467); -x_468 = lean_ctor_get(x_466, 1); -lean_inc(x_468); -lean_dec(x_466); -x_469 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_468); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; x_470 = lean_ctor_get(x_469, 0); lean_inc(x_470); x_471 = lean_ctor_get(x_469, 1); lean_inc(x_471); lean_dec(x_469); -x_472 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_471); -lean_dec(x_9); +x_472 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_471); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); x_473 = lean_ctor_get(x_472, 0); lean_inc(x_473); x_474 = lean_ctor_get(x_472, 1); lean_inc(x_474); -if (lean_is_exclusive(x_472)) { - lean_ctor_release(x_472, 0); - lean_ctor_release(x_472, 1); - x_475 = x_472; +lean_dec(x_472); +x_475 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_474); +lean_dec(x_9); +x_476 = lean_ctor_get(x_475, 0); +lean_inc(x_476); +x_477 = lean_ctor_get(x_475, 1); +lean_inc(x_477); +if (lean_is_exclusive(x_475)) { + lean_ctor_release(x_475, 0); + lean_ctor_release(x_475, 1); + x_478 = x_475; } else { - lean_dec_ref(x_472); - x_475 = lean_box(0); + lean_dec_ref(x_475); + x_478 = lean_box(0); } -x_476 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; -x_477 = l_Lean_addMacroScope(x_473, x_476, x_470); -x_478 = l_Lean_Init_Prelude___instance__72___closed__1; -x_479 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; -x_480 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; -x_481 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_481, 0, x_478); -lean_ctor_set(x_481, 1, x_479); -lean_ctor_set(x_481, 2, x_477); -lean_ctor_set(x_481, 3, x_480); -x_482 = l_Array_empty___closed__1; -x_483 = lean_array_push(x_482, x_481); -x_484 = l___private_Init_Meta_0__Lean_quoteName(x_390); -x_485 = lean_array_push(x_482, x_484); -x_486 = lean_array_push(x_485, x_462); -x_487 = lean_array_push(x_486, x_467); -x_488 = l_Lean_nullKind___closed__2; -x_489 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_489, 0, x_488); -lean_ctor_set(x_489, 1, x_487); -x_490 = lean_array_push(x_483, x_489); -x_491 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_479 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; +x_480 = l_Lean_addMacroScope(x_476, x_479, x_473); +x_481 = l_Lean_Init_Prelude___instance__72___closed__1; +x_482 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; +x_483 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; +x_484 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_484, 0, x_481); +lean_ctor_set(x_484, 1, x_482); +lean_ctor_set(x_484, 2, x_480); +lean_ctor_set(x_484, 3, x_483); +x_485 = l_Array_empty___closed__1; +x_486 = lean_array_push(x_485, x_484); +x_487 = l___private_Init_Meta_0__Lean_quoteName(x_394); +x_488 = lean_array_push(x_485, x_487); +x_489 = lean_array_push(x_488, x_465); +x_490 = lean_array_push(x_489, x_470); +x_491 = l_Lean_nullKind___closed__2; x_492 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_492, 0, x_491); lean_ctor_set(x_492, 1, x_490); -if (lean_is_scalar(x_475)) { - x_493 = lean_alloc_ctor(0, 2, 0); +x_493 = lean_array_push(x_486, x_492); +x_494 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_495, 0, x_494); +lean_ctor_set(x_495, 1, x_493); +if (lean_is_scalar(x_478)) { + x_496 = lean_alloc_ctor(0, 2, 0); } else { - x_493 = x_475; + x_496 = x_478; } -lean_ctor_set(x_493, 0, x_492); -lean_ctor_set(x_493, 1, x_474); -return x_493; +lean_ctor_set(x_496, 0, x_495); +lean_ctor_set(x_496, 1, x_477); +return x_496; } else { -lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; -lean_dec(x_462); -lean_dec(x_390); +lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; +lean_dec(x_465); +lean_dec(x_394); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_494 = lean_ctor_get(x_466, 0); -lean_inc(x_494); -x_495 = lean_ctor_get(x_466, 1); -lean_inc(x_495); -if (lean_is_exclusive(x_466)) { - lean_ctor_release(x_466, 0); - lean_ctor_release(x_466, 1); - x_496 = x_466; +x_497 = lean_ctor_get(x_469, 0); +lean_inc(x_497); +x_498 = lean_ctor_get(x_469, 1); +lean_inc(x_498); +if (lean_is_exclusive(x_469)) { + lean_ctor_release(x_469, 0); + lean_ctor_release(x_469, 1); + x_499 = x_469; } else { - lean_dec_ref(x_466); - x_496 = lean_box(0); + lean_dec_ref(x_469); + x_499 = lean_box(0); } -if (lean_is_scalar(x_496)) { - x_497 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_499)) { + x_500 = lean_alloc_ctor(1, 2, 0); } else { - x_497 = x_496; + x_500 = x_499; } -lean_ctor_set(x_497, 0, x_494); -lean_ctor_set(x_497, 1, x_495); -return x_497; +lean_ctor_set(x_500, 0, x_497); +lean_ctor_set(x_500, 1, x_498); +return x_500; } } else { -lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; -lean_dec(x_460); -lean_dec(x_390); +lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; +lean_dec(x_463); +lean_dec(x_394); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); @@ -6740,33 +6847,33 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_498 = lean_ctor_get(x_461, 0); -lean_inc(x_498); -x_499 = lean_ctor_get(x_461, 1); -lean_inc(x_499); -if (lean_is_exclusive(x_461)) { - lean_ctor_release(x_461, 0); - lean_ctor_release(x_461, 1); - x_500 = x_461; +x_501 = lean_ctor_get(x_464, 0); +lean_inc(x_501); +x_502 = lean_ctor_get(x_464, 1); +lean_inc(x_502); +if (lean_is_exclusive(x_464)) { + lean_ctor_release(x_464, 0); + lean_ctor_release(x_464, 1); + x_503 = x_464; } else { - lean_dec_ref(x_461); - x_500 = lean_box(0); + lean_dec_ref(x_464); + x_503 = lean_box(0); } -if (lean_is_scalar(x_500)) { - x_501 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_503)) { + x_504 = lean_alloc_ctor(1, 2, 0); } else { - x_501 = x_500; + x_504 = x_503; } -lean_ctor_set(x_501, 0, x_498); -lean_ctor_set(x_501, 1, x_499); -return x_501; +lean_ctor_set(x_504, 0, x_501); +lean_ctor_set(x_504, 1, x_502); +return x_504; } } } else { -uint8_t x_502; -lean_dec(x_390); +uint8_t x_505; +lean_dec(x_394); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); @@ -6776,327 +6883,327 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_502 = !lean_is_exclusive(x_391); -if (x_502 == 0) +x_505 = !lean_is_exclusive(x_395); +if (x_505 == 0) { -lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; -x_503 = lean_ctor_get(x_391, 0); -x_504 = lean_io_error_to_string(x_503); -x_505 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_505, 0, x_504); -x_506 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_506, 0, x_505); -x_507 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_507, 0, x_18); -lean_ctor_set(x_507, 1, x_506); -lean_ctor_set(x_391, 0, x_507); -return x_391; +lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; +x_506 = lean_ctor_get(x_395, 0); +x_507 = lean_io_error_to_string(x_506); +x_508 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_508, 0, x_507); +x_509 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_509, 0, x_508); +x_510 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_510, 0, x_18); +lean_ctor_set(x_510, 1, x_509); +lean_ctor_set(x_395, 0, x_510); +return x_395; } else { -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; -x_508 = lean_ctor_get(x_391, 0); -x_509 = lean_ctor_get(x_391, 1); -lean_inc(x_509); -lean_inc(x_508); -lean_dec(x_391); -x_510 = lean_io_error_to_string(x_508); -x_511 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_511, 0, x_510); -x_512 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_512, 0, x_511); -x_513 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_513, 0, x_18); -lean_ctor_set(x_513, 1, x_512); -x_514 = lean_alloc_ctor(1, 2, 0); +lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; +x_511 = lean_ctor_get(x_395, 0); +x_512 = lean_ctor_get(x_395, 1); +lean_inc(x_512); +lean_inc(x_511); +lean_dec(x_395); +x_513 = lean_io_error_to_string(x_511); +x_514 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_514, 0, x_513); -lean_ctor_set(x_514, 1, x_509); -return x_514; +x_515 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_515, 0, x_514); +x_516 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_516, 0, x_18); +lean_ctor_set(x_516, 1, x_515); +x_517 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_517, 0, x_516); +lean_ctor_set(x_517, 1, x_512); +return x_517; } } } } else { -lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; +lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_dec(x_16); lean_dec(x_15); lean_dec(x_11); -x_515 = lean_unsigned_to_nat(0u); -x_516 = l_Lean_Syntax_getArg(x_1, x_515); -x_517 = l_Lean_Syntax_getId(x_516); -lean_dec(x_516); -x_518 = lean_erase_macro_scopes(x_517); -lean_inc(x_518); -x_519 = l_Lean_Parser_ensureUnaryParserAlias(x_518, x_10); -if (lean_obj_tag(x_519) == 0) -{ -lean_object* x_520; lean_object* x_521; lean_object* x_522; uint8_t x_523; -lean_dec(x_18); -x_520 = lean_ctor_get(x_519, 1); -lean_inc(x_520); +x_518 = lean_unsigned_to_nat(0u); +x_519 = l_Lean_Syntax_getArg(x_1, x_518); +x_520 = l_Lean_Syntax_getId(x_519); lean_dec(x_519); -x_521 = lean_unsigned_to_nat(2u); -x_522 = l_Lean_Syntax_getArg(x_1, x_521); -lean_dec(x_1); -x_523 = !lean_is_exclusive(x_2); -if (x_523 == 0) +x_521 = lean_erase_macro_scopes(x_520); +lean_inc(x_521); +x_522 = l_Lean_Parser_ensureUnaryParserAlias(x_521, x_10); +if (lean_obj_tag(x_522) == 0) { -uint8_t x_524; lean_object* x_525; -x_524 = 0; -lean_ctor_set_uint8(x_2, sizeof(void*)*1 + 1, x_524); +lean_object* x_523; lean_object* x_524; lean_object* x_525; uint8_t x_526; +lean_dec(x_18); +x_523 = lean_ctor_get(x_522, 1); +lean_inc(x_523); +lean_dec(x_522); +x_524 = lean_unsigned_to_nat(2u); +x_525 = l_Lean_Syntax_getArg(x_1, x_524); +lean_dec(x_1); +x_526 = !lean_is_exclusive(x_2); +if (x_526 == 0) +{ +uint8_t x_527; lean_object* x_528; +x_527 = 0; +lean_ctor_set_uint8(x_2, sizeof(void*)*1, x_527); +lean_ctor_set_uint8(x_2, sizeof(void*)*1 + 1, x_527); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_525 = l_Lean_Elab_Term_toParserDescrAux(x_522, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_520); -if (lean_obj_tag(x_525) == 0) +x_528 = l_Lean_Elab_Term_toParserDescrAux(x_525, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_523); +if (lean_obj_tag(x_528) == 0) { -lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; uint8_t x_532; -x_526 = lean_ctor_get(x_525, 0); -lean_inc(x_526); -x_527 = lean_ctor_get(x_525, 1); -lean_inc(x_527); -lean_dec(x_525); -x_528 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_527); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; uint8_t x_535; x_529 = lean_ctor_get(x_528, 0); lean_inc(x_529); x_530 = lean_ctor_get(x_528, 1); lean_inc(x_530); lean_dec(x_528); -x_531 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_530); +x_531 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_530); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_532 = lean_ctor_get(x_531, 0); +lean_inc(x_532); +x_533 = lean_ctor_get(x_531, 1); +lean_inc(x_533); +lean_dec(x_531); +x_534 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_533); lean_dec(x_9); -x_532 = !lean_is_exclusive(x_531); -if (x_532 == 0) +x_535 = !lean_is_exclusive(x_534); +if (x_535 == 0) { -lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; -x_533 = lean_ctor_get(x_531, 0); -x_534 = l_Lean_Elab_Term_toParserDescrAux___closed__51; -x_535 = l_Lean_addMacroScope(x_533, x_534, x_529); -x_536 = l_Lean_Init_Prelude___instance__72___closed__1; -x_537 = l_Lean_Elab_Term_toParserDescrAux___closed__50; -x_538 = l_Lean_Elab_Term_toParserDescrAux___closed__54; -x_539 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_539, 0, x_536); -lean_ctor_set(x_539, 1, x_537); -lean_ctor_set(x_539, 2, x_535); -lean_ctor_set(x_539, 3, x_538); -x_540 = l_Array_empty___closed__1; -x_541 = lean_array_push(x_540, x_539); -x_542 = l___private_Init_Meta_0__Lean_quoteName(x_518); -x_543 = lean_array_push(x_540, x_542); -x_544 = lean_array_push(x_543, x_526); -x_545 = l_Lean_nullKind___closed__2; -x_546 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_546, 0, x_545); -lean_ctor_set(x_546, 1, x_544); -x_547 = lean_array_push(x_541, x_546); -x_548 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; +x_536 = lean_ctor_get(x_534, 0); +x_537 = l_Lean_Elab_Term_toParserDescrAux___closed__51; +x_538 = l_Lean_addMacroScope(x_536, x_537, x_532); +x_539 = l_Lean_Init_Prelude___instance__72___closed__1; +x_540 = l_Lean_Elab_Term_toParserDescrAux___closed__50; +x_541 = l_Lean_Elab_Term_toParserDescrAux___closed__54; +x_542 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_542, 0, x_539); +lean_ctor_set(x_542, 1, x_540); +lean_ctor_set(x_542, 2, x_538); +lean_ctor_set(x_542, 3, x_541); +x_543 = l_Array_empty___closed__1; +x_544 = lean_array_push(x_543, x_542); +x_545 = l___private_Init_Meta_0__Lean_quoteName(x_521); +x_546 = lean_array_push(x_543, x_545); +x_547 = lean_array_push(x_546, x_529); +x_548 = l_Lean_nullKind___closed__2; x_549 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_549, 0, x_548); lean_ctor_set(x_549, 1, x_547); -lean_ctor_set(x_531, 0, x_549); -return x_531; +x_550 = lean_array_push(x_544, x_549); +x_551 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_552 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_552, 0, x_551); +lean_ctor_set(x_552, 1, x_550); +lean_ctor_set(x_534, 0, x_552); +return x_534; } else { -lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; -x_550 = lean_ctor_get(x_531, 0); -x_551 = lean_ctor_get(x_531, 1); -lean_inc(x_551); -lean_inc(x_550); -lean_dec(x_531); -x_552 = l_Lean_Elab_Term_toParserDescrAux___closed__51; -x_553 = l_Lean_addMacroScope(x_550, x_552, x_529); -x_554 = l_Lean_Init_Prelude___instance__72___closed__1; -x_555 = l_Lean_Elab_Term_toParserDescrAux___closed__50; -x_556 = l_Lean_Elab_Term_toParserDescrAux___closed__54; -x_557 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_557, 0, x_554); -lean_ctor_set(x_557, 1, x_555); -lean_ctor_set(x_557, 2, x_553); -lean_ctor_set(x_557, 3, x_556); -x_558 = l_Array_empty___closed__1; -x_559 = lean_array_push(x_558, x_557); -x_560 = l___private_Init_Meta_0__Lean_quoteName(x_518); -x_561 = lean_array_push(x_558, x_560); -x_562 = lean_array_push(x_561, x_526); -x_563 = l_Lean_nullKind___closed__2; -x_564 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_564, 0, x_563); -lean_ctor_set(x_564, 1, x_562); -x_565 = lean_array_push(x_559, x_564); -x_566 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; +x_553 = lean_ctor_get(x_534, 0); +x_554 = lean_ctor_get(x_534, 1); +lean_inc(x_554); +lean_inc(x_553); +lean_dec(x_534); +x_555 = l_Lean_Elab_Term_toParserDescrAux___closed__51; +x_556 = l_Lean_addMacroScope(x_553, x_555, x_532); +x_557 = l_Lean_Init_Prelude___instance__72___closed__1; +x_558 = l_Lean_Elab_Term_toParserDescrAux___closed__50; +x_559 = l_Lean_Elab_Term_toParserDescrAux___closed__54; +x_560 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_560, 0, x_557); +lean_ctor_set(x_560, 1, x_558); +lean_ctor_set(x_560, 2, x_556); +lean_ctor_set(x_560, 3, x_559); +x_561 = l_Array_empty___closed__1; +x_562 = lean_array_push(x_561, x_560); +x_563 = l___private_Init_Meta_0__Lean_quoteName(x_521); +x_564 = lean_array_push(x_561, x_563); +x_565 = lean_array_push(x_564, x_529); +x_566 = l_Lean_nullKind___closed__2; x_567 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_567, 0, x_566); lean_ctor_set(x_567, 1, x_565); -x_568 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_568, 0, x_567); -lean_ctor_set(x_568, 1, x_551); -return x_568; +x_568 = lean_array_push(x_562, x_567); +x_569 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_570 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_570, 0, x_569); +lean_ctor_set(x_570, 1, x_568); +x_571 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_571, 0, x_570); +lean_ctor_set(x_571, 1, x_554); +return x_571; } } else { -uint8_t x_569; -lean_dec(x_518); +uint8_t x_572; +lean_dec(x_521); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_569 = !lean_is_exclusive(x_525); -if (x_569 == 0) +x_572 = !lean_is_exclusive(x_528); +if (x_572 == 0) { -return x_525; +return x_528; } else { -lean_object* x_570; lean_object* x_571; lean_object* x_572; -x_570 = lean_ctor_get(x_525, 0); -x_571 = lean_ctor_get(x_525, 1); -lean_inc(x_571); -lean_inc(x_570); -lean_dec(x_525); -x_572 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_572, 0, x_570); -lean_ctor_set(x_572, 1, x_571); -return x_572; -} -} -} -else -{ -lean_object* x_573; uint8_t x_574; uint8_t x_575; uint8_t x_576; lean_object* x_577; lean_object* x_578; -x_573 = lean_ctor_get(x_2, 0); -x_574 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -x_575 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +lean_object* x_573; lean_object* x_574; lean_object* x_575; +x_573 = lean_ctor_get(x_528, 0); +x_574 = lean_ctor_get(x_528, 1); +lean_inc(x_574); lean_inc(x_573); +lean_dec(x_528); +x_575 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_575, 0, x_573); +lean_ctor_set(x_575, 1, x_574); +return x_575; +} +} +} +else +{ +lean_object* x_576; uint8_t x_577; uint8_t x_578; lean_object* x_579; lean_object* x_580; +x_576 = lean_ctor_get(x_2, 0); +x_577 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +lean_inc(x_576); lean_dec(x_2); -x_576 = 0; -x_577 = lean_alloc_ctor(0, 1, 3); -lean_ctor_set(x_577, 0, x_573); -lean_ctor_set_uint8(x_577, sizeof(void*)*1, x_574); -lean_ctor_set_uint8(x_577, sizeof(void*)*1 + 1, x_576); -lean_ctor_set_uint8(x_577, sizeof(void*)*1 + 2, x_575); +x_578 = 0; +x_579 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_579, 0, x_576); +lean_ctor_set_uint8(x_579, sizeof(void*)*1, x_578); +lean_ctor_set_uint8(x_579, sizeof(void*)*1 + 1, x_578); +lean_ctor_set_uint8(x_579, sizeof(void*)*1 + 2, x_577); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_578 = l_Lean_Elab_Term_toParserDescrAux(x_522, x_577, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_520); -if (lean_obj_tag(x_578) == 0) +x_580 = l_Lean_Elab_Term_toParserDescrAux(x_525, x_579, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_523); +if (lean_obj_tag(x_580) == 0) { -lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; -x_579 = lean_ctor_get(x_578, 0); -lean_inc(x_579); -x_580 = lean_ctor_get(x_578, 1); -lean_inc(x_580); -lean_dec(x_578); -x_581 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_580); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_582 = lean_ctor_get(x_581, 0); +lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; +x_581 = lean_ctor_get(x_580, 0); +lean_inc(x_581); +x_582 = lean_ctor_get(x_580, 1); lean_inc(x_582); -x_583 = lean_ctor_get(x_581, 1); -lean_inc(x_583); -lean_dec(x_581); -x_584 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_583); -lean_dec(x_9); -x_585 = lean_ctor_get(x_584, 0); +lean_dec(x_580); +x_583 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_8, x_9, x_582); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_584 = lean_ctor_get(x_583, 0); +lean_inc(x_584); +x_585 = lean_ctor_get(x_583, 1); lean_inc(x_585); -x_586 = lean_ctor_get(x_584, 1); -lean_inc(x_586); -if (lean_is_exclusive(x_584)) { - lean_ctor_release(x_584, 0); - lean_ctor_release(x_584, 1); - x_587 = x_584; +lean_dec(x_583); +x_586 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_585); +lean_dec(x_9); +x_587 = lean_ctor_get(x_586, 0); +lean_inc(x_587); +x_588 = lean_ctor_get(x_586, 1); +lean_inc(x_588); +if (lean_is_exclusive(x_586)) { + lean_ctor_release(x_586, 0); + lean_ctor_release(x_586, 1); + x_589 = x_586; } else { - lean_dec_ref(x_584); - x_587 = lean_box(0); + lean_dec_ref(x_586); + x_589 = lean_box(0); } -x_588 = l_Lean_Elab_Term_toParserDescrAux___closed__51; -x_589 = l_Lean_addMacroScope(x_585, x_588, x_582); -x_590 = l_Lean_Init_Prelude___instance__72___closed__1; -x_591 = l_Lean_Elab_Term_toParserDescrAux___closed__50; -x_592 = l_Lean_Elab_Term_toParserDescrAux___closed__54; -x_593 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_593, 0, x_590); -lean_ctor_set(x_593, 1, x_591); -lean_ctor_set(x_593, 2, x_589); -lean_ctor_set(x_593, 3, x_592); -x_594 = l_Array_empty___closed__1; -x_595 = lean_array_push(x_594, x_593); -x_596 = l___private_Init_Meta_0__Lean_quoteName(x_518); -x_597 = lean_array_push(x_594, x_596); -x_598 = lean_array_push(x_597, x_579); -x_599 = l_Lean_nullKind___closed__2; -x_600 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_600, 0, x_599); -lean_ctor_set(x_600, 1, x_598); -x_601 = lean_array_push(x_595, x_600); -x_602 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_603, 0, x_602); -lean_ctor_set(x_603, 1, x_601); -if (lean_is_scalar(x_587)) { - x_604 = lean_alloc_ctor(0, 2, 0); +x_590 = l_Lean_Elab_Term_toParserDescrAux___closed__51; +x_591 = l_Lean_addMacroScope(x_587, x_590, x_584); +x_592 = l_Lean_Init_Prelude___instance__72___closed__1; +x_593 = l_Lean_Elab_Term_toParserDescrAux___closed__50; +x_594 = l_Lean_Elab_Term_toParserDescrAux___closed__54; +x_595 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_595, 0, x_592); +lean_ctor_set(x_595, 1, x_593); +lean_ctor_set(x_595, 2, x_591); +lean_ctor_set(x_595, 3, x_594); +x_596 = l_Array_empty___closed__1; +x_597 = lean_array_push(x_596, x_595); +x_598 = l___private_Init_Meta_0__Lean_quoteName(x_521); +x_599 = lean_array_push(x_596, x_598); +x_600 = lean_array_push(x_599, x_581); +x_601 = l_Lean_nullKind___closed__2; +x_602 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_602, 0, x_601); +lean_ctor_set(x_602, 1, x_600); +x_603 = lean_array_push(x_597, x_602); +x_604 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_605 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_605, 0, x_604); +lean_ctor_set(x_605, 1, x_603); +if (lean_is_scalar(x_589)) { + x_606 = lean_alloc_ctor(0, 2, 0); } else { - x_604 = x_587; + x_606 = x_589; } -lean_ctor_set(x_604, 0, x_603); -lean_ctor_set(x_604, 1, x_586); -return x_604; +lean_ctor_set(x_606, 0, x_605); +lean_ctor_set(x_606, 1, x_588); +return x_606; } else { -lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; -lean_dec(x_518); +lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; +lean_dec(x_521); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_605 = lean_ctor_get(x_578, 0); -lean_inc(x_605); -x_606 = lean_ctor_get(x_578, 1); -lean_inc(x_606); -if (lean_is_exclusive(x_578)) { - lean_ctor_release(x_578, 0); - lean_ctor_release(x_578, 1); - x_607 = x_578; +x_607 = lean_ctor_get(x_580, 0); +lean_inc(x_607); +x_608 = lean_ctor_get(x_580, 1); +lean_inc(x_608); +if (lean_is_exclusive(x_580)) { + lean_ctor_release(x_580, 0); + lean_ctor_release(x_580, 1); + x_609 = x_580; } else { - lean_dec_ref(x_578); - x_607 = lean_box(0); + lean_dec_ref(x_580); + x_609 = lean_box(0); } -if (lean_is_scalar(x_607)) { - x_608 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_609)) { + x_610 = lean_alloc_ctor(1, 2, 0); } else { - x_608 = x_607; + x_610 = x_609; } -lean_ctor_set(x_608, 0, x_605); -lean_ctor_set(x_608, 1, x_606); -return x_608; +lean_ctor_set(x_610, 0, x_607); +lean_ctor_set(x_610, 1, x_608); +return x_610; } } } else { -uint8_t x_609; -lean_dec(x_518); +uint8_t x_611; +lean_dec(x_521); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); @@ -7106,84 +7213,84 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_609 = !lean_is_exclusive(x_519); -if (x_609 == 0) +x_611 = !lean_is_exclusive(x_522); +if (x_611 == 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_519, 0); -x_611 = lean_io_error_to_string(x_610); -x_612 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_612, 0, x_611); -x_613 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_613, 0, x_612); -x_614 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_614, 0, x_18); -lean_ctor_set(x_614, 1, x_613); -lean_ctor_set(x_519, 0, x_614); -return x_519; +lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; +x_612 = lean_ctor_get(x_522, 0); +x_613 = lean_io_error_to_string(x_612); +x_614 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_614, 0, x_613); +x_615 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_615, 0, x_614); +x_616 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_616, 0, x_18); +lean_ctor_set(x_616, 1, x_615); +lean_ctor_set(x_522, 0, x_616); +return x_522; } else { -lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; -x_615 = lean_ctor_get(x_519, 0); -x_616 = lean_ctor_get(x_519, 1); -lean_inc(x_616); -lean_inc(x_615); -lean_dec(x_519); -x_617 = lean_io_error_to_string(x_615); -x_618 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_618, 0, x_617); -x_619 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_619, 0, x_618); -x_620 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_620, 0, x_18); -lean_ctor_set(x_620, 1, x_619); -x_621 = lean_alloc_ctor(1, 2, 0); +lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; +x_617 = lean_ctor_get(x_522, 0); +x_618 = lean_ctor_get(x_522, 1); +lean_inc(x_618); +lean_inc(x_617); +lean_dec(x_522); +x_619 = lean_io_error_to_string(x_617); +x_620 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_620, 0, x_619); +x_621 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_621, 0, x_620); -lean_ctor_set(x_621, 1, x_616); -return x_621; +x_622 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_622, 0, x_18); +lean_ctor_set(x_622, 1, x_621); +x_623 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_623, 0, x_622); +lean_ctor_set(x_623, 1, x_618); +return x_623; } } } } else { -lean_object* x_622; lean_object* x_623; +lean_object* x_624; lean_object* x_625; lean_dec(x_18); lean_dec(x_16); lean_dec(x_15); lean_dec(x_11); -x_622 = lean_unsigned_to_nat(1u); -x_623 = l_Lean_Syntax_getArg(x_1, x_622); +x_624 = lean_unsigned_to_nat(1u); +x_625 = l_Lean_Syntax_getArg(x_1, x_624); lean_dec(x_1); -x_1 = x_623; +x_1 = x_625; goto _start; } } else { -lean_object* x_625; lean_object* x_626; +lean_object* x_627; lean_object* x_628; lean_dec(x_18); lean_dec(x_16); lean_dec(x_15); lean_dec(x_11); -x_625 = lean_unsigned_to_nat(0u); -x_626 = l_Lean_Syntax_getArg(x_1, x_625); +x_627 = lean_unsigned_to_nat(0u); +x_628 = l_Lean_Syntax_getArg(x_1, x_627); lean_dec(x_1); -x_1 = x_626; +x_1 = x_628; goto _start; } } else { -lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; +lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_dec(x_18); lean_dec(x_16); lean_dec(x_15); lean_dec(x_11); -x_628 = l_Lean_Syntax_getArgs(x_1); -x_629 = lean_unsigned_to_nat(0u); -x_630 = l_Lean_Syntax_getArg(x_1, x_629); +x_630 = l_Lean_Syntax_getArgs(x_1); +x_631 = lean_unsigned_to_nat(0u); +x_632 = l_Lean_Syntax_getArg(x_1, x_631); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); @@ -7192,136 +7299,135 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_631 = l_Lean_Elab_Term_checkLeftRec(x_630, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_631) == 0) +x_633 = l_Lean_Elab_Term_checkLeftRec(x_632, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_633) == 0) { -lean_object* x_632; uint8_t x_633; -x_632 = lean_ctor_get(x_631, 0); -lean_inc(x_632); -x_633 = lean_unbox(x_632); -lean_dec(x_632); -if (x_633 == 0) -{ -lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; -x_634 = lean_ctor_get(x_631, 1); +lean_object* x_634; uint8_t x_635; +x_634 = lean_ctor_get(x_633, 0); lean_inc(x_634); -lean_dec(x_631); -x_635 = lean_array_get_size(x_628); -x_636 = lean_mk_empty_array_with_capacity(x_635); +x_635 = lean_unbox(x_634); +lean_dec(x_634); +if (x_635 == 0) +{ +lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; +x_636 = lean_ctor_get(x_633, 1); +lean_inc(x_636); +lean_dec(x_633); +x_637 = lean_array_get_size(x_630); +x_638 = lean_mk_empty_array_with_capacity(x_637); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_637 = l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__9(x_1, x_628, x_635, x_629, lean_box(0), x_636, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_634); +x_639 = l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__9(x_1, x_630, x_637, x_631, lean_box(0), x_638, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_636); lean_dec(x_2); -lean_dec(x_628); +lean_dec(x_630); lean_dec(x_1); -if (lean_obj_tag(x_637) == 0) +if (lean_obj_tag(x_639) == 0) { -lean_object* x_638; lean_object* x_639; lean_object* x_640; -x_638 = lean_ctor_get(x_637, 0); -lean_inc(x_638); -x_639 = lean_ctor_get(x_637, 1); -lean_inc(x_639); -lean_dec(x_637); -x_640 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq(x_638, x_4, x_5, x_6, x_7, x_8, x_9, x_639); +lean_object* x_640; lean_object* x_641; lean_object* x_642; +x_640 = lean_ctor_get(x_639, 0); +lean_inc(x_640); +x_641 = lean_ctor_get(x_639, 1); +lean_inc(x_641); +lean_dec(x_639); +x_642 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq(x_640, x_4, x_5, x_6, x_7, x_8, x_9, x_641); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_640; +return x_642; } else { -uint8_t x_641; +uint8_t x_643; lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_641 = !lean_is_exclusive(x_637); -if (x_641 == 0) +x_643 = !lean_is_exclusive(x_639); +if (x_643 == 0) { -return x_637; +return x_639; } else { -lean_object* x_642; lean_object* x_643; lean_object* x_644; -x_642 = lean_ctor_get(x_637, 0); -x_643 = lean_ctor_get(x_637, 1); -lean_inc(x_643); -lean_inc(x_642); -lean_dec(x_637); -x_644 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_644, 0, x_642); -lean_ctor_set(x_644, 1, x_643); -return x_644; -} -} -} -else -{ -lean_object* x_645; lean_object* x_646; lean_object* x_647; uint8_t x_648; -x_645 = lean_ctor_get(x_631, 1); +lean_object* x_644; lean_object* x_645; lean_object* x_646; +x_644 = lean_ctor_get(x_639, 0); +x_645 = lean_ctor_get(x_639, 1); lean_inc(x_645); -lean_dec(x_631); -x_646 = lean_array_get_size(x_628); -x_647 = lean_unsigned_to_nat(1u); -x_648 = lean_nat_dec_eq(x_646, x_647); -lean_dec(x_646); -if (x_648 == 0) -{ -lean_object* x_649; lean_object* x_650; -x_649 = lean_box(0); -x_650 = l_Lean_Elab_Term_toParserDescrAux___lambda__3(x_628, x_1, x_649, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_645); -lean_dec(x_2); -lean_dec(x_1); -return x_650; +lean_inc(x_644); +lean_dec(x_639); +x_646 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_646, 0, x_644); +lean_ctor_set(x_646, 1, x_645); +return x_646; +} +} } else { -lean_object* x_651; lean_object* x_652; uint8_t x_653; -lean_dec(x_628); -x_651 = l_Lean_Elab_Term_toParserDescrAux___closed__45; -x_652 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_651, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_645); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_653 = !lean_is_exclusive(x_652); -if (x_653 == 0) +lean_object* x_647; lean_object* x_648; lean_object* x_649; uint8_t x_650; +x_647 = lean_ctor_get(x_633, 1); +lean_inc(x_647); +lean_dec(x_633); +x_648 = lean_array_get_size(x_630); +x_649 = lean_unsigned_to_nat(1u); +x_650 = lean_nat_dec_eq(x_648, x_649); +lean_dec(x_648); +if (x_650 == 0) { +lean_object* x_651; lean_object* x_652; +lean_dec(x_1); +x_651 = lean_box(0); +x_652 = l_Lean_Elab_Term_toParserDescrAux___lambda__3(x_630, x_651, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_647); return x_652; } else { -lean_object* x_654; lean_object* x_655; lean_object* x_656; -x_654 = lean_ctor_get(x_652, 0); -x_655 = lean_ctor_get(x_652, 1); -lean_inc(x_655); -lean_inc(x_654); -lean_dec(x_652); -x_656 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_656, 0, x_654); -lean_ctor_set(x_656, 1, x_655); -return x_656; +lean_object* x_653; lean_object* x_654; uint8_t x_655; +lean_dec(x_630); +x_653 = l_Lean_Elab_Term_toParserDescrAux___closed__45; +x_654 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_653, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_647); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_655 = !lean_is_exclusive(x_654); +if (x_655 == 0) +{ +return x_654; +} +else +{ +lean_object* x_656; lean_object* x_657; lean_object* x_658; +x_656 = lean_ctor_get(x_654, 0); +x_657 = lean_ctor_get(x_654, 1); +lean_inc(x_657); +lean_inc(x_656); +lean_dec(x_654); +x_658 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_658, 0, x_656); +lean_ctor_set(x_658, 1, x_657); +return x_658; } } } } else { -uint8_t x_657; -lean_dec(x_628); +uint8_t x_659; +lean_dec(x_630); lean_dec(x_8); lean_dec(x_9); lean_dec(x_7); @@ -7331,269 +7437,269 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_657 = !lean_is_exclusive(x_631); -if (x_657 == 0) +x_659 = !lean_is_exclusive(x_633); +if (x_659 == 0) { -return x_631; +return x_633; } else { -lean_object* x_658; lean_object* x_659; lean_object* x_660; -x_658 = lean_ctor_get(x_631, 0); -x_659 = lean_ctor_get(x_631, 1); -lean_inc(x_659); -lean_inc(x_658); -lean_dec(x_631); -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; +lean_object* x_660; lean_object* x_661; lean_object* x_662; +x_660 = lean_ctor_get(x_633, 0); +x_661 = lean_ctor_get(x_633, 1); +lean_inc(x_661); +lean_inc(x_660); +lean_dec(x_633); +x_662 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_662, 0, x_660); +lean_ctor_set(x_662, 1, x_661); +return x_662; } } } } 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; -x_661 = lean_ctor_get(x_8, 0); -x_662 = lean_ctor_get(x_8, 1); -x_663 = lean_ctor_get(x_8, 2); -x_664 = lean_ctor_get(x_8, 3); +lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; +x_663 = lean_ctor_get(x_8, 0); +x_664 = lean_ctor_get(x_8, 1); +x_665 = lean_ctor_get(x_8, 2); +x_666 = lean_ctor_get(x_8, 3); +lean_inc(x_666); +lean_inc(x_665); lean_inc(x_664); lean_inc(x_663); -lean_inc(x_662); -lean_inc(x_661); lean_dec(x_8); -x_665 = l_Lean_replaceRef(x_1, x_664); -lean_dec(x_664); +x_667 = l_Lean_replaceRef(x_1, x_666); +lean_dec(x_666); +lean_inc(x_667); lean_inc(x_665); -lean_inc(x_663); -lean_inc(x_662); -x_666 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_666, 0, x_661); -lean_ctor_set(x_666, 1, x_662); -lean_ctor_set(x_666, 2, x_663); -lean_ctor_set(x_666, 3, x_665); +lean_inc(x_664); +x_668 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_668, 0, x_663); +lean_ctor_set(x_668, 1, x_664); +lean_ctor_set(x_668, 2, x_665); +lean_ctor_set(x_668, 3, x_667); if (x_13 == 0) { -lean_object* x_667; uint8_t x_668; -x_667 = l_Lean_choiceKind; -x_668 = lean_name_eq(x_11, x_667); -if (x_668 == 0) -{ lean_object* x_669; uint8_t x_670; -x_669 = l_Lean_Elab_Term_toParserDescrAux___closed__1; +x_669 = l_Lean_choiceKind; x_670 = lean_name_eq(x_11, x_669); if (x_670 == 0) { lean_object* x_671; uint8_t x_672; -x_671 = l_myMacro____x40_Init_Notation___hyg_6694____closed__4; +x_671 = l_Lean_Elab_Term_toParserDescrAux___closed__1; x_672 = lean_name_eq(x_11, x_671); if (x_672 == 0) { lean_object* x_673; uint8_t x_674; -x_673 = l_myMacro____x40_Init_Notation___hyg_7078____closed__2; +x_673 = l_myMacro____x40_Init_Notation___hyg_6694____closed__4; x_674 = lean_name_eq(x_11, x_673); if (x_674 == 0) { lean_object* x_675; uint8_t x_676; -x_675 = l_Lean_Elab_Term_checkLeftRec___closed__2; +x_675 = l_myMacro____x40_Init_Notation___hyg_7078____closed__2; x_676 = lean_name_eq(x_11, x_675); if (x_676 == 0) { lean_object* x_677; uint8_t x_678; -x_677 = l_Lean_Elab_Term_toParserDescrAux___closed__2; +x_677 = l_Lean_Elab_Term_checkLeftRec___closed__2; x_678 = lean_name_eq(x_11, x_677); if (x_678 == 0) { lean_object* x_679; uint8_t x_680; -x_679 = l_Lean_Elab_Term_toParserDescrAux___closed__4; +x_679 = l_Lean_Elab_Term_toParserDescrAux___closed__2; x_680 = lean_name_eq(x_11, x_679); if (x_680 == 0) { -lean_object* x_681; lean_object* x_682; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; -x_692 = lean_st_ref_get(x_9, x_10); -x_693 = lean_ctor_get(x_692, 0); -lean_inc(x_693); -x_694 = lean_ctor_get(x_692, 1); -lean_inc(x_694); -lean_dec(x_692); -x_695 = lean_ctor_get(x_693, 0); +lean_object* x_681; uint8_t x_682; +x_681 = l_Lean_Elab_Term_toParserDescrAux___closed__4; +x_682 = lean_name_eq(x_11, x_681); +if (x_682 == 0) +{ +lean_object* x_683; lean_object* x_684; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; +x_694 = lean_st_ref_get(x_9, x_10); +x_695 = lean_ctor_get(x_694, 0); lean_inc(x_695); -lean_dec(x_693); -x_696 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_666, x_9, x_694); -x_697 = lean_ctor_get(x_696, 0); +x_696 = lean_ctor_get(x_694, 1); +lean_inc(x_696); +lean_dec(x_694); +x_697 = lean_ctor_get(x_695, 0); lean_inc(x_697); -x_698 = lean_ctor_get(x_696, 1); -lean_inc(x_698); -lean_dec(x_696); -x_699 = lean_st_ref_get(x_9, x_698); -x_700 = lean_ctor_get(x_699, 0); +lean_dec(x_695); +x_698 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_668, x_9, x_696); +x_699 = lean_ctor_get(x_698, 0); +lean_inc(x_699); +x_700 = lean_ctor_get(x_698, 1); lean_inc(x_700); -x_701 = lean_ctor_get(x_699, 1); -lean_inc(x_701); -lean_dec(x_699); -x_702 = lean_ctor_get(x_700, 1); +lean_dec(x_698); +x_701 = lean_st_ref_get(x_9, x_700); +x_702 = lean_ctor_get(x_701, 0); lean_inc(x_702); -lean_dec(x_700); -lean_inc(x_695); -x_703 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_703, 0, x_695); -x_704 = x_703; -x_705 = lean_environment_main_module(x_695); -x_706 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_706, 0, x_704); -lean_ctor_set(x_706, 1, x_705); -lean_ctor_set(x_706, 2, x_697); -lean_ctor_set(x_706, 3, x_662); -lean_ctor_set(x_706, 4, x_663); -lean_ctor_set(x_706, 5, x_665); +x_703 = lean_ctor_get(x_701, 1); +lean_inc(x_703); +lean_dec(x_701); +x_704 = lean_ctor_get(x_702, 1); +lean_inc(x_704); +lean_dec(x_702); +lean_inc(x_697); +x_705 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_705, 0, x_697); +x_706 = x_705; +x_707 = lean_environment_main_module(x_697); +x_708 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_708, 0, x_706); +lean_ctor_set(x_708, 1, x_707); +lean_ctor_set(x_708, 2, x_699); +lean_ctor_set(x_708, 3, x_664); +lean_ctor_set(x_708, 4, x_665); +lean_ctor_set(x_708, 5, x_667); lean_inc(x_1); -x_707 = l_Lean_Macro_expandMacro_x3fImp(x_1, x_706, x_702); -if (lean_obj_tag(x_707) == 0) +x_709 = l_Lean_Macro_expandMacro_x3fImp(x_1, x_708, x_704); +if (lean_obj_tag(x_709) == 0) { -lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; -x_708 = lean_ctor_get(x_707, 0); -lean_inc(x_708); -x_709 = lean_ctor_get(x_707, 1); -lean_inc(x_709); -lean_dec(x_707); -x_710 = lean_st_ref_take(x_9, x_701); -x_711 = lean_ctor_get(x_710, 0); +lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; +x_710 = lean_ctor_get(x_709, 0); +lean_inc(x_710); +x_711 = lean_ctor_get(x_709, 1); lean_inc(x_711); -x_712 = lean_ctor_get(x_710, 1); -lean_inc(x_712); -lean_dec(x_710); -x_713 = lean_ctor_get(x_711, 0); +lean_dec(x_709); +x_712 = lean_st_ref_take(x_9, x_703); +x_713 = lean_ctor_get(x_712, 0); lean_inc(x_713); -x_714 = lean_ctor_get(x_711, 2); +x_714 = lean_ctor_get(x_712, 1); lean_inc(x_714); -x_715 = lean_ctor_get(x_711, 3); +lean_dec(x_712); +x_715 = lean_ctor_get(x_713, 0); lean_inc(x_715); -if (lean_is_exclusive(x_711)) { - lean_ctor_release(x_711, 0); - lean_ctor_release(x_711, 1); - lean_ctor_release(x_711, 2); - lean_ctor_release(x_711, 3); - x_716 = x_711; +x_716 = lean_ctor_get(x_713, 2); +lean_inc(x_716); +x_717 = lean_ctor_get(x_713, 3); +lean_inc(x_717); +if (lean_is_exclusive(x_713)) { + lean_ctor_release(x_713, 0); + lean_ctor_release(x_713, 1); + lean_ctor_release(x_713, 2); + lean_ctor_release(x_713, 3); + x_718 = x_713; } else { - lean_dec_ref(x_711); - x_716 = lean_box(0); + lean_dec_ref(x_713); + x_718 = lean_box(0); } -if (lean_is_scalar(x_716)) { - x_717 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_718)) { + x_719 = lean_alloc_ctor(0, 4, 0); } else { - x_717 = x_716; + x_719 = x_718; } -lean_ctor_set(x_717, 0, x_713); -lean_ctor_set(x_717, 1, x_709); -lean_ctor_set(x_717, 2, x_714); -lean_ctor_set(x_717, 3, x_715); -x_718 = lean_st_ref_set(x_9, x_717, x_712); -x_719 = lean_ctor_get(x_718, 1); -lean_inc(x_719); -lean_dec(x_718); -x_681 = x_708; -x_682 = x_719; -goto block_691; -} -else -{ -lean_object* x_720; -lean_dec(x_11); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_720 = lean_ctor_get(x_707, 0); -lean_inc(x_720); -lean_dec(x_707); -if (lean_obj_tag(x_720) == 0) -{ -lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; -x_721 = lean_ctor_get(x_720, 0); +lean_ctor_set(x_719, 0, x_715); +lean_ctor_set(x_719, 1, x_711); +lean_ctor_set(x_719, 2, x_716); +lean_ctor_set(x_719, 3, x_717); +x_720 = lean_st_ref_set(x_9, x_719, x_714); +x_721 = lean_ctor_get(x_720, 1); lean_inc(x_721); -x_722 = lean_ctor_get(x_720, 1); -lean_inc(x_722); lean_dec(x_720); -x_723 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_723, 0, x_722); -x_724 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_724, 0, x_723); -x_725 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_721, x_724, x_4, x_5, x_6, x_7, x_666, x_9, x_701); +x_683 = x_710; +x_684 = x_721; +goto block_693; +} +else +{ +lean_object* x_722; +lean_dec(x_11); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_722 = lean_ctor_get(x_709, 0); +lean_inc(x_722); +lean_dec(x_709); +if (lean_obj_tag(x_722) == 0) +{ +lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; +x_723 = lean_ctor_get(x_722, 0); +lean_inc(x_723); +x_724 = lean_ctor_get(x_722, 1); +lean_inc(x_724); +lean_dec(x_722); +x_725 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_725, 0, x_724); +x_726 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_726, 0, x_725); +x_727 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_723, x_726, x_4, x_5, x_6, x_7, x_668, x_9, x_703); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_721); -x_726 = lean_ctor_get(x_725, 0); -lean_inc(x_726); -x_727 = lean_ctor_get(x_725, 1); -lean_inc(x_727); -if (lean_is_exclusive(x_725)) { - lean_ctor_release(x_725, 0); - lean_ctor_release(x_725, 1); - x_728 = x_725; +lean_dec(x_723); +x_728 = lean_ctor_get(x_727, 0); +lean_inc(x_728); +x_729 = lean_ctor_get(x_727, 1); +lean_inc(x_729); +if (lean_is_exclusive(x_727)) { + lean_ctor_release(x_727, 0); + lean_ctor_release(x_727, 1); + x_730 = x_727; } else { - lean_dec_ref(x_725); - x_728 = lean_box(0); + lean_dec_ref(x_727); + x_730 = lean_box(0); } -if (lean_is_scalar(x_728)) { - x_729 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_730)) { + x_731 = lean_alloc_ctor(1, 2, 0); } else { - x_729 = x_728; + x_731 = x_730; } -lean_ctor_set(x_729, 0, x_726); -lean_ctor_set(x_729, 1, x_727); -return x_729; +lean_ctor_set(x_731, 0, x_728); +lean_ctor_set(x_731, 1, x_729); +return x_731; } else { -lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; -lean_dec(x_666); +lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; +lean_dec(x_668); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_730 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__1___rarg(x_701); -x_731 = lean_ctor_get(x_730, 0); -lean_inc(x_731); -x_732 = lean_ctor_get(x_730, 1); -lean_inc(x_732); -if (lean_is_exclusive(x_730)) { - lean_ctor_release(x_730, 0); - lean_ctor_release(x_730, 1); - x_733 = x_730; +x_732 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__1___rarg(x_703); +x_733 = lean_ctor_get(x_732, 0); +lean_inc(x_733); +x_734 = lean_ctor_get(x_732, 1); +lean_inc(x_734); +if (lean_is_exclusive(x_732)) { + lean_ctor_release(x_732, 0); + lean_ctor_release(x_732, 1); + x_735 = x_732; } else { - lean_dec_ref(x_730); - x_733 = lean_box(0); + lean_dec_ref(x_732); + x_735 = lean_box(0); } -if (lean_is_scalar(x_733)) { - x_734 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_735)) { + x_736 = lean_alloc_ctor(1, 2, 0); } else { - x_734 = x_733; + x_736 = x_735; } -lean_ctor_set(x_734, 0, x_731); -lean_ctor_set(x_734, 1, x_732); -return x_734; +lean_ctor_set(x_736, 0, x_733); +lean_ctor_set(x_736, 1, x_734); +return x_736; } } -block_691: +block_693: { -if (lean_obj_tag(x_681) == 0) +if (lean_obj_tag(x_683) == 0) { -lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; -x_683 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_683, 0, x_11); -x_684 = l_Lean_Elab_Term_toParserDescrAux___closed__6; -x_685 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_685, 0, x_684); -lean_ctor_set(x_685, 1, x_683); -x_686 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; +lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; +x_685 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_685, 0, x_11); +x_686 = l_Lean_Elab_Term_toParserDescrAux___closed__6; x_687 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_687, 0, x_685); -lean_ctor_set(x_687, 1, x_686); -x_688 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_687, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_682); +lean_ctor_set(x_687, 0, x_686); +lean_ctor_set(x_687, 1, x_685); +x_688 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; +x_689 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_689, 0, x_687); +lean_ctor_set(x_689, 1, x_688); +x_690 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_689, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_684); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -7602,415 +7708,719 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -return x_688; +return x_690; } else { -lean_object* x_689; +lean_object* x_691; lean_dec(x_11); lean_dec(x_1); -x_689 = lean_ctor_get(x_681, 0); -lean_inc(x_689); -lean_dec(x_681); -x_1 = x_689; -x_8 = x_666; -x_10 = x_682; +x_691 = lean_ctor_get(x_683, 0); +lean_inc(x_691); +lean_dec(x_683); +x_1 = x_691; +x_8 = x_668; +x_10 = x_684; goto _start; } } } else { -lean_object* x_735; lean_object* x_736; lean_object* x_737; +lean_object* x_737; lean_object* x_738; lean_object* x_739; +lean_dec(x_667); lean_dec(x_665); -lean_dec(x_663); -lean_dec(x_662); +lean_dec(x_664); lean_dec(x_11); lean_dec(x_3); lean_dec(x_2); -x_735 = lean_unsigned_to_nat(1u); -x_736 = l_Lean_Syntax_getArg(x_1, x_735); +x_737 = lean_unsigned_to_nat(1u); +x_738 = l_Lean_Syntax_getArg(x_1, x_737); lean_dec(x_1); -x_737 = l_Lean_Syntax_isStrLit_x3f(x_736); -lean_dec(x_736); -if (lean_obj_tag(x_737) == 0) +x_739 = l_Lean_Syntax_isStrLit_x3f(x_738); +lean_dec(x_738); +if (lean_obj_tag(x_739) == 0) { -lean_object* x_738; -lean_dec(x_666); +lean_object* x_740; +lean_dec(x_668); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_738 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__2___rarg(x_10); -return x_738; +x_740 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__2___rarg(x_10); +return x_740; } else { -lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; -x_739 = lean_ctor_get(x_737, 0); -lean_inc(x_739); -lean_dec(x_737); -x_740 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_666, x_9, x_10); -lean_dec(x_666); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_741 = lean_ctor_get(x_740, 0); +lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; +x_741 = lean_ctor_get(x_739, 0); lean_inc(x_741); -x_742 = lean_ctor_get(x_740, 1); -lean_inc(x_742); -lean_dec(x_740); -x_743 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_742); -lean_dec(x_9); -x_744 = lean_ctor_get(x_743, 0); -lean_inc(x_744); -x_745 = lean_ctor_get(x_743, 1); -lean_inc(x_745); -if (lean_is_exclusive(x_743)) { - lean_ctor_release(x_743, 0); - lean_ctor_release(x_743, 1); - x_746 = x_743; -} else { - lean_dec_ref(x_743); - x_746 = lean_box(0); -} -x_747 = l_Lean_Elab_Term_toParserDescrAux___closed__11; -lean_inc(x_741); -lean_inc(x_744); -x_748 = l_Lean_addMacroScope(x_744, x_747, x_741); -x_749 = l_Lean_Init_Prelude___instance__72___closed__1; -x_750 = l_Lean_Elab_Term_toParserDescrAux___closed__9; -x_751 = l_Lean_Elab_Term_toParserDescrAux___closed__14; -x_752 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_752, 0, x_749); -lean_ctor_set(x_752, 1, x_750); -lean_ctor_set(x_752, 2, x_748); -lean_ctor_set(x_752, 3, x_751); -x_753 = l_Array_empty___closed__1; -x_754 = lean_array_push(x_753, x_752); -x_755 = l_Lean_Syntax_mkStrLit(x_739, x_749); lean_dec(x_739); -x_756 = lean_array_push(x_753, x_755); -x_757 = l_Lean_setOptionFromString___closed__5; -x_758 = l_Lean_addMacroScope(x_744, x_757, x_741); -x_759 = l_Lean_Elab_Term_toParserDescrAux___closed__16; -x_760 = l_Lean_Elab_Term_toParserDescrAux___closed__18; -x_761 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_761, 0, x_749); -lean_ctor_set(x_761, 1, x_759); -lean_ctor_set(x_761, 2, x_758); -lean_ctor_set(x_761, 3, x_760); -x_762 = lean_array_push(x_756, x_761); -x_763 = l_Lean_nullKind___closed__2; -x_764 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_764, 0, x_763); -lean_ctor_set(x_764, 1, x_762); -x_765 = lean_array_push(x_754, x_764); -x_766 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_767 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_767, 0, x_766); -lean_ctor_set(x_767, 1, x_765); -if (lean_is_scalar(x_746)) { - x_768 = lean_alloc_ctor(0, 2, 0); +x_742 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_668, x_9, x_10); +lean_dec(x_668); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +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_745 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_744); +lean_dec(x_9); +x_746 = lean_ctor_get(x_745, 0); +lean_inc(x_746); +x_747 = lean_ctor_get(x_745, 1); +lean_inc(x_747); +if (lean_is_exclusive(x_745)) { + lean_ctor_release(x_745, 0); + lean_ctor_release(x_745, 1); + x_748 = x_745; } else { - x_768 = x_746; + lean_dec_ref(x_745); + x_748 = lean_box(0); } -lean_ctor_set(x_768, 0, x_767); -lean_ctor_set(x_768, 1, x_745); -return x_768; +x_749 = l_Lean_Elab_Term_toParserDescrAux___closed__11; +lean_inc(x_743); +lean_inc(x_746); +x_750 = l_Lean_addMacroScope(x_746, x_749, x_743); +x_751 = l_Lean_Init_Prelude___instance__72___closed__1; +x_752 = l_Lean_Elab_Term_toParserDescrAux___closed__9; +x_753 = l_Lean_Elab_Term_toParserDescrAux___closed__14; +x_754 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_754, 0, x_751); +lean_ctor_set(x_754, 1, x_752); +lean_ctor_set(x_754, 2, x_750); +lean_ctor_set(x_754, 3, x_753); +x_755 = l_Array_empty___closed__1; +x_756 = lean_array_push(x_755, x_754); +x_757 = l_Lean_Syntax_mkStrLit(x_741, x_751); +lean_dec(x_741); +x_758 = lean_array_push(x_755, x_757); +x_759 = l_Lean_setOptionFromString___closed__5; +x_760 = l_Lean_addMacroScope(x_746, x_759, x_743); +x_761 = l_Lean_Elab_Term_toParserDescrAux___closed__16; +x_762 = l_Lean_Elab_Term_toParserDescrAux___closed__18; +x_763 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_763, 0, x_751); +lean_ctor_set(x_763, 1, x_761); +lean_ctor_set(x_763, 2, x_760); +lean_ctor_set(x_763, 3, x_762); +x_764 = lean_array_push(x_758, x_763); +x_765 = l_Lean_nullKind___closed__2; +x_766 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_766, 0, x_765); +lean_ctor_set(x_766, 1, x_764); +x_767 = lean_array_push(x_756, x_766); +x_768 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_769 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_769, 0, x_768); +lean_ctor_set(x_769, 1, x_767); +if (lean_is_scalar(x_748)) { + x_770 = lean_alloc_ctor(0, 2, 0); +} else { + x_770 = x_748; +} +lean_ctor_set(x_770, 0, x_769); +lean_ctor_set(x_770, 1, x_747); +return x_770; } } } else { -lean_object* x_769; lean_object* x_770; lean_object* x_771; +lean_object* x_771; lean_object* x_772; lean_object* x_773; +lean_dec(x_667); lean_dec(x_665); -lean_dec(x_663); -lean_dec(x_662); +lean_dec(x_664); lean_dec(x_11); lean_dec(x_3); -x_769 = lean_unsigned_to_nat(0u); -x_770 = l_Lean_Syntax_getArg(x_1, x_769); +x_771 = lean_unsigned_to_nat(0u); +x_772 = l_Lean_Syntax_getArg(x_1, x_771); lean_dec(x_1); -x_771 = l_Lean_Syntax_isStrLit_x3f(x_770); -lean_dec(x_770); -if (lean_obj_tag(x_771) == 0) +x_773 = l_Lean_Syntax_isStrLit_x3f(x_772); +lean_dec(x_772); +if (lean_obj_tag(x_773) == 0) { -lean_object* x_772; -lean_dec(x_666); +lean_object* x_774; +lean_dec(x_668); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_772 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__2___rarg(x_10); -return x_772; +x_774 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__2___rarg(x_10); +return x_774; } else { -uint8_t x_773; -x_773 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); -lean_dec(x_2); -if (x_773 == 0) +lean_object* x_775; lean_object* x_776; uint8_t x_801; +x_775 = lean_ctor_get(x_773, 0); +lean_inc(x_775); +lean_dec(x_773); +x_801 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +if (x_801 == 0) { -lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; -x_774 = lean_ctor_get(x_771, 0); -lean_inc(x_774); -lean_dec(x_771); -x_775 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_666, x_9, x_10); -lean_dec(x_666); +lean_object* x_802; +lean_dec(x_2); +x_802 = lean_box(0); +x_776 = x_802; +goto block_800; +} +else +{ +uint8_t x_803; +x_803 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); +lean_dec(x_2); +if (x_803 == 0) +{ +lean_object* x_804; +x_804 = lean_box(0); +x_776 = x_804; +goto block_800; +} +else +{ +lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; +x_805 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_668, x_9, x_10); +lean_dec(x_668); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_776 = lean_ctor_get(x_775, 0); -lean_inc(x_776); -x_777 = lean_ctor_get(x_775, 1); -lean_inc(x_777); +x_806 = lean_ctor_get(x_805, 0); +lean_inc(x_806); +x_807 = lean_ctor_get(x_805, 1); +lean_inc(x_807); +lean_dec(x_805); +x_808 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_807); +lean_dec(x_9); +x_809 = lean_ctor_get(x_808, 0); +lean_inc(x_809); +x_810 = lean_ctor_get(x_808, 1); +lean_inc(x_810); +if (lean_is_exclusive(x_808)) { + lean_ctor_release(x_808, 0); + lean_ctor_release(x_808, 1); + x_811 = x_808; +} else { + lean_dec_ref(x_808); + x_811 = lean_box(0); +} +x_812 = l_Lean_Elab_Term_toParserDescrAux___closed__11; +lean_inc(x_806); +lean_inc(x_809); +x_813 = l_Lean_addMacroScope(x_809, x_812, x_806); +x_814 = l_Lean_Init_Prelude___instance__72___closed__1; +x_815 = l_Lean_Elab_Term_toParserDescrAux___closed__9; +x_816 = l_Lean_Elab_Term_toParserDescrAux___closed__14; +x_817 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_817, 0, x_814); +lean_ctor_set(x_817, 1, x_815); +lean_ctor_set(x_817, 2, x_813); +lean_ctor_set(x_817, 3, x_816); +x_818 = l_Array_empty___closed__1; +x_819 = lean_array_push(x_818, x_817); +x_820 = l_Lean_Syntax_mkStrLit(x_775, x_814); lean_dec(x_775); -x_778 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_777); -lean_dec(x_9); -x_779 = lean_ctor_get(x_778, 0); -lean_inc(x_779); -x_780 = lean_ctor_get(x_778, 1); -lean_inc(x_780); -if (lean_is_exclusive(x_778)) { - lean_ctor_release(x_778, 0); - lean_ctor_release(x_778, 1); - x_781 = x_778; +x_821 = lean_array_push(x_818, x_820); +x_822 = l_Lean_setOptionFromString___closed__5; +x_823 = l_Lean_addMacroScope(x_809, x_822, x_806); +x_824 = l_Lean_Elab_Term_toParserDescrAux___closed__16; +x_825 = l_Lean_Elab_Term_toParserDescrAux___closed__18; +x_826 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_826, 0, x_814); +lean_ctor_set(x_826, 1, x_824); +lean_ctor_set(x_826, 2, x_823); +lean_ctor_set(x_826, 3, x_825); +x_827 = lean_array_push(x_821, x_826); +x_828 = l_Lean_nullKind___closed__2; +x_829 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_829, 0, x_828); +lean_ctor_set(x_829, 1, x_827); +x_830 = lean_array_push(x_819, x_829); +x_831 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_832 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_832, 0, x_831); +lean_ctor_set(x_832, 1, x_830); +if (lean_is_scalar(x_811)) { + x_833 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_778); - x_781 = lean_box(0); + x_833 = x_811; } -x_782 = l_Lean_Elab_Term_toParserDescrAux___closed__23; -x_783 = l_Lean_addMacroScope(x_779, x_782, x_776); -x_784 = l_Lean_Init_Prelude___instance__72___closed__1; -x_785 = l_Lean_Elab_Term_toParserDescrAux___closed__21; -x_786 = l_Lean_Elab_Term_toParserDescrAux___closed__26; -x_787 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_787, 0, x_784); -lean_ctor_set(x_787, 1, x_785); -lean_ctor_set(x_787, 2, x_783); -lean_ctor_set(x_787, 3, x_786); -x_788 = l_Array_empty___closed__1; -x_789 = lean_array_push(x_788, x_787); -x_790 = l_Lean_Syntax_mkStrLit(x_774, x_784); -lean_dec(x_774); -x_791 = lean_array_push(x_788, x_790); -x_792 = l_Lean_nullKind___closed__2; -x_793 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_793, 0, x_792); -lean_ctor_set(x_793, 1, x_791); -x_794 = lean_array_push(x_789, x_793); -x_795 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_796 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_796, 0, x_795); -lean_ctor_set(x_796, 1, x_794); -if (lean_is_scalar(x_781)) { - x_797 = lean_alloc_ctor(0, 2, 0); -} else { - x_797 = x_781; +lean_ctor_set(x_833, 0, x_832); +lean_ctor_set(x_833, 1, x_810); +return x_833; } -lean_ctor_set(x_797, 0, x_796); -lean_ctor_set(x_797, 1, x_780); -return x_797; } -else +block_800: { -lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; -x_798 = lean_ctor_get(x_771, 0); -lean_inc(x_798); -lean_dec(x_771); -x_799 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_666, x_9, x_10); -lean_dec(x_666); +lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; +lean_dec(x_776); +x_777 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_668, x_9, x_10); +lean_dec(x_668); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_800 = lean_ctor_get(x_799, 0); -lean_inc(x_800); -x_801 = lean_ctor_get(x_799, 1); -lean_inc(x_801); -lean_dec(x_799); -x_802 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_801); +x_778 = lean_ctor_get(x_777, 0); +lean_inc(x_778); +x_779 = lean_ctor_get(x_777, 1); +lean_inc(x_779); +lean_dec(x_777); +x_780 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_779); lean_dec(x_9); -x_803 = lean_ctor_get(x_802, 0); -lean_inc(x_803); -x_804 = lean_ctor_get(x_802, 1); -lean_inc(x_804); -if (lean_is_exclusive(x_802)) { - lean_ctor_release(x_802, 0); - lean_ctor_release(x_802, 1); - x_805 = x_802; +x_781 = lean_ctor_get(x_780, 0); +lean_inc(x_781); +x_782 = lean_ctor_get(x_780, 1); +lean_inc(x_782); +if (lean_is_exclusive(x_780)) { + lean_ctor_release(x_780, 0); + lean_ctor_release(x_780, 1); + x_783 = x_780; } else { - lean_dec_ref(x_802); - x_805 = lean_box(0); + lean_dec_ref(x_780); + x_783 = lean_box(0); } -x_806 = l_Lean_Elab_Term_toParserDescrAux___closed__11; -lean_inc(x_800); -lean_inc(x_803); -x_807 = l_Lean_addMacroScope(x_803, x_806, x_800); -x_808 = l_Lean_Init_Prelude___instance__72___closed__1; -x_809 = l_Lean_Elab_Term_toParserDescrAux___closed__9; -x_810 = l_Lean_Elab_Term_toParserDescrAux___closed__14; -x_811 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_811, 0, x_808); -lean_ctor_set(x_811, 1, x_809); -lean_ctor_set(x_811, 2, x_807); -lean_ctor_set(x_811, 3, x_810); -x_812 = l_Array_empty___closed__1; -x_813 = lean_array_push(x_812, x_811); -x_814 = l_Lean_Syntax_mkStrLit(x_798, x_808); -lean_dec(x_798); -x_815 = lean_array_push(x_812, x_814); -x_816 = l_Lean_setOptionFromString___closed__5; -x_817 = l_Lean_addMacroScope(x_803, x_816, x_800); -x_818 = l_Lean_Elab_Term_toParserDescrAux___closed__16; -x_819 = l_Lean_Elab_Term_toParserDescrAux___closed__18; -x_820 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_820, 0, x_808); -lean_ctor_set(x_820, 1, x_818); -lean_ctor_set(x_820, 2, x_817); -lean_ctor_set(x_820, 3, x_819); -x_821 = lean_array_push(x_815, x_820); -x_822 = l_Lean_nullKind___closed__2; -x_823 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_823, 0, x_822); -lean_ctor_set(x_823, 1, x_821); -x_824 = lean_array_push(x_813, x_823); -x_825 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_826 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_826, 0, x_825); -lean_ctor_set(x_826, 1, x_824); -if (lean_is_scalar(x_805)) { - x_827 = lean_alloc_ctor(0, 2, 0); +x_784 = l_Lean_Elab_Term_toParserDescrAux___closed__23; +x_785 = l_Lean_addMacroScope(x_781, x_784, x_778); +x_786 = l_Lean_Init_Prelude___instance__72___closed__1; +x_787 = l_Lean_Elab_Term_toParserDescrAux___closed__21; +x_788 = l_Lean_Elab_Term_toParserDescrAux___closed__26; +x_789 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_789, 0, x_786); +lean_ctor_set(x_789, 1, x_787); +lean_ctor_set(x_789, 2, x_785); +lean_ctor_set(x_789, 3, x_788); +x_790 = l_Array_empty___closed__1; +x_791 = lean_array_push(x_790, x_789); +x_792 = l_Lean_Syntax_mkStrLit(x_775, x_786); +lean_dec(x_775); +x_793 = lean_array_push(x_790, x_792); +x_794 = l_Lean_nullKind___closed__2; +x_795 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_795, 0, x_794); +lean_ctor_set(x_795, 1, x_793); +x_796 = lean_array_push(x_791, x_795); +x_797 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_798 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_798, 0, x_797); +lean_ctor_set(x_798, 1, x_796); +if (lean_is_scalar(x_783)) { + x_799 = lean_alloc_ctor(0, 2, 0); } else { - x_827 = x_805; + x_799 = x_783; } -lean_ctor_set(x_827, 0, x_826); -lean_ctor_set(x_827, 1, x_804); -return x_827; +lean_ctor_set(x_799, 0, x_798); +lean_ctor_set(x_799, 1, x_782); +return x_799; } } } } else { -lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; uint8_t x_837; -lean_dec(x_663); -lean_dec(x_662); -lean_dec(x_11); -x_828 = lean_unsigned_to_nat(0u); -x_829 = l_Lean_Syntax_getArg(x_1, x_828); -x_830 = l_Lean_Syntax_getId(x_829); -lean_dec(x_829); -x_831 = lean_erase_macro_scopes(x_830); -x_832 = lean_unsigned_to_nat(1u); -x_833 = l_Lean_Syntax_getArg(x_1, x_832); -x_834 = l_Lean_Elab_Term_expandOptPrecedence(x_833); -x_835 = l_Lean_Parser_isParserAlias(x_831, x_10); -x_836 = lean_ctor_get(x_835, 0); -lean_inc(x_836); -x_837 = lean_unbox(x_836); -lean_dec(x_836); -if (x_837 == 0) -{ -lean_object* x_838; lean_object* x_839; uint8_t x_918; -lean_dec(x_833); +lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; uint8_t x_843; lean_dec(x_665); -x_838 = lean_ctor_get(x_835, 1); -lean_inc(x_838); +lean_dec(x_664); +lean_dec(x_11); +x_834 = lean_unsigned_to_nat(0u); +x_835 = l_Lean_Syntax_getArg(x_1, x_834); +x_836 = l_Lean_Syntax_getId(x_835); lean_dec(x_835); -x_918 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -if (x_918 == 0) +x_837 = lean_erase_macro_scopes(x_836); +x_838 = lean_unsigned_to_nat(1u); +x_839 = l_Lean_Syntax_getArg(x_1, x_838); +x_840 = l_Lean_Elab_Term_expandOptPrecedence(x_839); +x_841 = l_Lean_Parser_isParserAlias(x_837, x_10); +x_842 = lean_ctor_get(x_841, 0); +lean_inc(x_842); +x_843 = lean_unbox(x_842); +lean_dec(x_842); +if (x_843 == 0) { -lean_object* x_919; -x_919 = lean_box(0); -x_839 = x_919; -goto block_917; +lean_object* x_844; lean_object* x_845; uint8_t x_924; +lean_dec(x_839); +lean_dec(x_667); +x_844 = lean_ctor_get(x_841, 1); +lean_inc(x_844); +lean_dec(x_841); +x_924 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); +if (x_924 == 0) +{ +lean_object* x_925; +x_925 = lean_box(0); +x_845 = x_925; +goto block_923; } else { -lean_object* x_920; uint8_t x_921; -x_920 = lean_ctor_get(x_2, 0); -lean_inc(x_920); -x_921 = lean_name_eq(x_831, x_920); -lean_dec(x_920); -if (x_921 == 0) +lean_object* x_926; uint8_t x_927; +x_926 = lean_ctor_get(x_2, 0); +lean_inc(x_926); +x_927 = lean_name_eq(x_837, x_926); +lean_dec(x_926); +if (x_927 == 0) +{ +lean_object* x_928; +x_928 = lean_box(0); +x_845 = x_928; +goto block_923; +} +else +{ +lean_object* x_929; lean_object* x_930; +lean_dec(x_840); +lean_dec(x_837); +x_929 = l_Lean_Elab_Term_toParserDescrAux___closed__45; +x_930 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_929, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_844); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_930; +} +} +block_923: +{ +lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; uint8_t x_879; +lean_dec(x_845); +x_846 = lean_st_ref_get(x_9, x_844); +x_847 = lean_ctor_get(x_846, 0); +lean_inc(x_847); +x_848 = lean_ctor_get(x_846, 1); +lean_inc(x_848); +lean_dec(x_846); +x_849 = lean_ctor_get(x_847, 0); +lean_inc(x_849); +lean_dec(x_847); +x_879 = l_Lean_Parser_isParserCategory(x_849, x_837); +if (x_879 == 0) +{ +lean_object* x_880; +lean_inc(x_4); +lean_inc(x_837); +x_880 = l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3(x_837, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_848); +if (lean_obj_tag(x_880) == 0) +{ +lean_object* x_881; lean_object* x_882; lean_object* x_883; +x_881 = lean_ctor_get(x_880, 0); +lean_inc(x_881); +x_882 = lean_ctor_get(x_880, 1); +lean_inc(x_882); +lean_dec(x_880); +x_883 = l_List_filterMap___at_Lean_Elab_Term_toParserDescrAux___spec__6(x_849, x_881); +if (lean_obj_tag(x_883) == 0) +{ +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_840); +x_884 = lean_unsigned_to_nat(3u); +x_885 = l_Lean_Syntax_getArg(x_1, x_884); +lean_dec(x_1); +x_886 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_886, 0, x_837); +x_887 = l_Lean_Elab_Term_toParserDescrAux___closed__35; +x_888 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_888, 0, x_887); +lean_ctor_set(x_888, 1, x_886); +x_889 = l_Lean_Elab_Term_toParserDescrAux___closed__37; +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_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_885, x_890, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_882); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_885); +return x_891; +} +else +{ +lean_object* x_892; lean_object* x_893; +lean_dec(x_837); +x_892 = lean_ctor_get(x_883, 0); +lean_inc(x_892); +x_893 = lean_ctor_get(x_883, 1); +lean_inc(x_893); +if (lean_obj_tag(x_893) == 0) +{ +lean_dec(x_883); +if (lean_obj_tag(x_840) == 0) +{ +lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; uint8_t x_899; lean_object* x_900; +x_894 = lean_ctor_get(x_892, 0); +lean_inc(x_894); +x_895 = lean_ctor_get(x_892, 1); +lean_inc(x_895); +lean_dec(x_892); +x_896 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; +x_897 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; +x_898 = lean_box(0); +x_899 = lean_unbox(x_895); +lean_dec(x_895); +x_900 = l_Lean_Elab_Term_toParserDescrAux___lambda__1(x_899, x_896, x_897, x_894, x_1, x_898, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_882); +lean_dec(x_9); +lean_dec(x_668); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_900; +} +else +{ +lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; +lean_dec(x_892); +lean_dec(x_840); +x_901 = lean_unsigned_to_nat(3u); +x_902 = l_Lean_Syntax_getArg(x_1, x_901); +lean_dec(x_1); +x_903 = l_Lean_Elab_Term_toParserDescrAux___closed__40; +x_904 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_902, x_903, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_882); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_902); +x_905 = lean_ctor_get(x_904, 0); +lean_inc(x_905); +x_906 = lean_ctor_get(x_904, 1); +lean_inc(x_906); +if (lean_is_exclusive(x_904)) { + lean_ctor_release(x_904, 0); + lean_ctor_release(x_904, 1); + x_907 = x_904; +} else { + lean_dec_ref(x_904); + x_907 = lean_box(0); +} +if (lean_is_scalar(x_907)) { + x_908 = lean_alloc_ctor(1, 2, 0); +} else { + x_908 = x_907; +} +lean_ctor_set(x_908, 0, x_905); +lean_ctor_set(x_908, 1, x_906); +return x_908; +} +} +else +{ +lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; +lean_dec(x_893); +lean_dec(x_892); +lean_dec(x_840); +x_909 = lean_unsigned_to_nat(3u); +x_910 = l_Lean_Syntax_getArg(x_1, x_909); +lean_dec(x_1); +x_911 = l_List_map___at_Lean_Elab_Term_toParserDescrAux___spec__8(x_883); +x_912 = l_Lean_MessageData_ofList(x_911); +lean_dec(x_911); +x_913 = l_Lean_Elab_Term_toParserDescrAux___closed__42; +x_914 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_914, 0, x_913); +lean_ctor_set(x_914, 1, x_912); +x_915 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; +x_916 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_916, 0, x_914); +lean_ctor_set(x_916, 1, x_915); +x_917 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_910, x_916, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_882); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_910); +return x_917; +} +} +} +else +{ +lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; +lean_dec(x_849); +lean_dec(x_840); +lean_dec(x_837); +lean_dec(x_668); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_918 = lean_ctor_get(x_880, 0); +lean_inc(x_918); +x_919 = lean_ctor_get(x_880, 1); +lean_inc(x_919); +if (lean_is_exclusive(x_880)) { + lean_ctor_release(x_880, 0); + lean_ctor_release(x_880, 1); + x_920 = x_880; +} else { + lean_dec_ref(x_880); + x_920 = lean_box(0); +} +if (lean_is_scalar(x_920)) { + x_921 = lean_alloc_ctor(1, 2, 0); +} else { + x_921 = x_920; +} +lean_ctor_set(x_921, 0, x_918); +lean_ctor_set(x_921, 1, x_919); +return x_921; +} +} +else +{ +lean_dec(x_849); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +if (lean_obj_tag(x_840) == 0) +{ +x_850 = x_834; +goto block_878; +} +else { lean_object* x_922; -x_922 = lean_box(0); -x_839 = x_922; -goto block_917; -} -else -{ -lean_object* x_923; lean_object* x_924; -lean_dec(x_834); -lean_dec(x_831); -x_923 = l_Lean_Elab_Term_toParserDescrAux___closed__45; -x_924 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_923, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_838); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_924; -} -} -block_917: -{ -lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; uint8_t x_873; -lean_dec(x_839); -x_840 = lean_st_ref_get(x_9, x_838); -x_841 = lean_ctor_get(x_840, 0); -lean_inc(x_841); -x_842 = lean_ctor_get(x_840, 1); -lean_inc(x_842); +x_922 = lean_ctor_get(x_840, 0); +lean_inc(x_922); lean_dec(x_840); -x_843 = lean_ctor_get(x_841, 0); -lean_inc(x_843); +x_850 = x_922; +goto block_878; +} +} +block_878: +{ +lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; +x_851 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_668, x_9, x_848); +lean_dec(x_668); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_852 = lean_ctor_get(x_851, 0); +lean_inc(x_852); +x_853 = lean_ctor_get(x_851, 1); +lean_inc(x_853); +lean_dec(x_851); +x_854 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_853); +lean_dec(x_9); +x_855 = lean_ctor_get(x_854, 0); +lean_inc(x_855); +x_856 = lean_ctor_get(x_854, 1); +lean_inc(x_856); +if (lean_is_exclusive(x_854)) { + lean_ctor_release(x_854, 0); + lean_ctor_release(x_854, 1); + x_857 = x_854; +} else { + lean_dec_ref(x_854); + x_857 = lean_box(0); +} +x_858 = l_Lean_Elab_Term_toParserDescrAux___closed__30; +x_859 = l_Lean_addMacroScope(x_855, x_858, x_852); +x_860 = l_Lean_Init_Prelude___instance__72___closed__1; +x_861 = l_Lean_Elab_Term_toParserDescrAux___closed__29; +x_862 = l_Lean_Elab_Term_toParserDescrAux___closed__33; +x_863 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_863, 0, x_860); +lean_ctor_set(x_863, 1, x_861); +lean_ctor_set(x_863, 2, x_859); +lean_ctor_set(x_863, 3, x_862); +x_864 = l_Array_empty___closed__1; +x_865 = lean_array_push(x_864, x_863); +x_866 = l___private_Init_Meta_0__Lean_quoteName(x_837); +x_867 = lean_array_push(x_864, x_866); +x_868 = l_Nat_repr(x_850); +x_869 = l_Lean_numLitKind; +x_870 = l_Lean_Syntax_mkLit(x_869, x_868, x_860); +x_871 = lean_array_push(x_867, x_870); +x_872 = l_Lean_nullKind___closed__2; +x_873 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_873, 0, x_872); +lean_ctor_set(x_873, 1, x_871); +x_874 = lean_array_push(x_865, x_873); +x_875 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_876, 0, x_875); +lean_ctor_set(x_876, 1, x_874); +if (lean_is_scalar(x_857)) { + x_877 = lean_alloc_ctor(0, 2, 0); +} else { + x_877 = x_857; +} +lean_ctor_set(x_877, 0, x_876); +lean_ctor_set(x_877, 1, x_856); +return x_877; +} +} +} +else +{ +lean_object* x_931; lean_object* x_932; +lean_dec(x_1); +x_931 = lean_ctor_get(x_841, 1); +lean_inc(x_931); lean_dec(x_841); -x_873 = l_Lean_Parser_isParserCategory(x_843, x_831); -if (x_873 == 0) +lean_inc(x_837); +x_932 = l_Lean_Parser_ensureConstantParserAlias(x_837, x_931); +if (lean_obj_tag(x_932) == 0) { -lean_object* x_874; -lean_inc(x_4); -lean_inc(x_831); -x_874 = l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3(x_831, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_842); -if (lean_obj_tag(x_874) == 0) +lean_dec(x_667); +if (lean_obj_tag(x_840) == 0) { -lean_object* x_875; lean_object* x_876; lean_object* x_877; -x_875 = lean_ctor_get(x_874, 0); -lean_inc(x_875); -x_876 = lean_ctor_get(x_874, 1); -lean_inc(x_876); -lean_dec(x_874); -x_877 = l_List_filterMap___at_Lean_Elab_Term_toParserDescrAux___spec__6(x_843, x_875); -if (lean_obj_tag(x_877) == 0) +lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; +lean_dec(x_839); +x_933 = lean_ctor_get(x_932, 1); +lean_inc(x_933); +lean_dec(x_932); +x_934 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; +x_935 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; +x_936 = lean_box(0); +x_937 = l_Lean_Elab_Term_toParserDescrAux___lambda__2(x_934, x_935, x_837, x_936, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_933); +lean_dec(x_9); +lean_dec(x_668); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_937; +} +else { -lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; -lean_dec(x_834); -x_878 = lean_unsigned_to_nat(3u); -x_879 = l_Lean_Syntax_getArg(x_1, x_878); -lean_dec(x_1); -x_880 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_880, 0, x_831); -x_881 = l_Lean_Elab_Term_toParserDescrAux___closed__35; -x_882 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_882, 0, x_881); -lean_ctor_set(x_882, 1, x_880); -x_883 = l_Lean_Elab_Term_toParserDescrAux___closed__37; -x_884 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_884, 0, x_882); -lean_ctor_set(x_884, 1, x_883); -x_885 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_879, x_884, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_876); +lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; +lean_dec(x_840); +lean_dec(x_837); +x_938 = lean_ctor_get(x_932, 1); +lean_inc(x_938); +lean_dec(x_932); +x_939 = l_Lean_Elab_Term_toParserDescrAux___closed__47; +x_940 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_839, x_939, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_938); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -8018,55 +8428,36 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_879); -return x_885; +lean_dec(x_839); +x_941 = lean_ctor_get(x_940, 0); +lean_inc(x_941); +x_942 = lean_ctor_get(x_940, 1); +lean_inc(x_942); +if (lean_is_exclusive(x_940)) { + lean_ctor_release(x_940, 0); + lean_ctor_release(x_940, 1); + x_943 = x_940; +} else { + lean_dec_ref(x_940); + x_943 = lean_box(0); +} +if (lean_is_scalar(x_943)) { + x_944 = lean_alloc_ctor(1, 2, 0); +} else { + x_944 = x_943; +} +lean_ctor_set(x_944, 0, x_941); +lean_ctor_set(x_944, 1, x_942); +return x_944; +} } else { -lean_object* x_886; lean_object* x_887; -lean_dec(x_831); -x_886 = lean_ctor_get(x_877, 0); -lean_inc(x_886); -x_887 = lean_ctor_get(x_877, 1); -lean_inc(x_887); -if (lean_obj_tag(x_887) == 0) -{ -lean_dec(x_877); -if (lean_obj_tag(x_834) == 0) -{ -lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; uint8_t x_893; lean_object* x_894; -x_888 = lean_ctor_get(x_886, 0); -lean_inc(x_888); -x_889 = lean_ctor_get(x_886, 1); -lean_inc(x_889); -lean_dec(x_886); -x_890 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; -x_891 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; -x_892 = lean_box(0); -x_893 = lean_unbox(x_889); -lean_dec(x_889); -x_894 = l_Lean_Elab_Term_toParserDescrAux___lambda__1(x_893, x_890, x_891, x_888, x_1, x_892, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_876); -lean_dec(x_9); -lean_dec(x_666); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_894; -} -else -{ -lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; -lean_dec(x_886); -lean_dec(x_834); -x_895 = lean_unsigned_to_nat(3u); -x_896 = l_Lean_Syntax_getArg(x_1, x_895); -lean_dec(x_1); -x_897 = l_Lean_Elab_Term_toParserDescrAux___closed__40; -x_898 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_896, x_897, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_876); +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_dec(x_840); +lean_dec(x_839); +lean_dec(x_837); +lean_dec(x_668); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -8074,708 +8465,247 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_896); -x_899 = lean_ctor_get(x_898, 0); -lean_inc(x_899); -x_900 = lean_ctor_get(x_898, 1); -lean_inc(x_900); -if (lean_is_exclusive(x_898)) { - lean_ctor_release(x_898, 0); - lean_ctor_release(x_898, 1); - x_901 = x_898; +x_945 = lean_ctor_get(x_932, 0); +lean_inc(x_945); +x_946 = lean_ctor_get(x_932, 1); +lean_inc(x_946); +if (lean_is_exclusive(x_932)) { + lean_ctor_release(x_932, 0); + lean_ctor_release(x_932, 1); + x_947 = x_932; } else { - lean_dec_ref(x_898); - x_901 = lean_box(0); + lean_dec_ref(x_932); + x_947 = lean_box(0); } -if (lean_is_scalar(x_901)) { - x_902 = lean_alloc_ctor(1, 2, 0); +x_948 = lean_io_error_to_string(x_945); +x_949 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_949, 0, x_948); +x_950 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_950, 0, x_949); +x_951 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_951, 0, x_667); +lean_ctor_set(x_951, 1, x_950); +if (lean_is_scalar(x_947)) { + x_952 = lean_alloc_ctor(1, 2, 0); } else { - x_902 = x_901; + x_952 = x_947; } -lean_ctor_set(x_902, 0, x_899); -lean_ctor_set(x_902, 1, x_900); -return x_902; +lean_ctor_set(x_952, 0, x_951); +lean_ctor_set(x_952, 1, x_946); +return x_952; } } -else -{ -lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; -lean_dec(x_887); -lean_dec(x_886); -lean_dec(x_834); -x_903 = lean_unsigned_to_nat(3u); -x_904 = l_Lean_Syntax_getArg(x_1, x_903); -lean_dec(x_1); -x_905 = l_List_map___at_Lean_Elab_Term_toParserDescrAux___spec__8(x_877); -x_906 = l_Lean_MessageData_ofList(x_905); -lean_dec(x_905); -x_907 = l_Lean_Elab_Term_toParserDescrAux___closed__42; -x_908 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_908, 0, x_907); -lean_ctor_set(x_908, 1, x_906); -x_909 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; -x_910 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_910, 0, x_908); -lean_ctor_set(x_910, 1, x_909); -x_911 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_904, x_910, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_876); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_904); -return x_911; -} } } else { -lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; -lean_dec(x_843); -lean_dec(x_834); -lean_dec(x_831); -lean_dec(x_666); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_912 = lean_ctor_get(x_874, 0); -lean_inc(x_912); -x_913 = lean_ctor_get(x_874, 1); -lean_inc(x_913); -if (lean_is_exclusive(x_874)) { - lean_ctor_release(x_874, 0); - lean_ctor_release(x_874, 1); - x_914 = x_874; -} else { - lean_dec_ref(x_874); - x_914 = lean_box(0); -} -if (lean_is_scalar(x_914)) { - x_915 = lean_alloc_ctor(1, 2, 0); -} else { - x_915 = x_914; -} -lean_ctor_set(x_915, 0, x_912); -lean_ctor_set(x_915, 1, x_913); -return x_915; -} -} -else -{ -lean_dec(x_843); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -if (lean_obj_tag(x_834) == 0) -{ -x_844 = x_828; -goto block_872; -} -else -{ -lean_object* x_916; -x_916 = lean_ctor_get(x_834, 0); -lean_inc(x_916); -lean_dec(x_834); -x_844 = x_916; -goto block_872; -} -} -block_872: -{ -lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; -x_845 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_666, x_9, x_842); -lean_dec(x_666); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_846 = lean_ctor_get(x_845, 0); -lean_inc(x_846); -x_847 = lean_ctor_get(x_845, 1); -lean_inc(x_847); -lean_dec(x_845); -x_848 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_847); -lean_dec(x_9); -x_849 = lean_ctor_get(x_848, 0); -lean_inc(x_849); -x_850 = lean_ctor_get(x_848, 1); -lean_inc(x_850); -if (lean_is_exclusive(x_848)) { - lean_ctor_release(x_848, 0); - lean_ctor_release(x_848, 1); - x_851 = x_848; -} else { - lean_dec_ref(x_848); - x_851 = lean_box(0); -} -x_852 = l_Lean_Elab_Term_toParserDescrAux___closed__30; -x_853 = l_Lean_addMacroScope(x_849, x_852, x_846); -x_854 = l_Lean_Init_Prelude___instance__72___closed__1; -x_855 = l_Lean_Elab_Term_toParserDescrAux___closed__29; -x_856 = l_Lean_Elab_Term_toParserDescrAux___closed__33; -x_857 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_857, 0, x_854); -lean_ctor_set(x_857, 1, x_855); -lean_ctor_set(x_857, 2, x_853); -lean_ctor_set(x_857, 3, x_856); -x_858 = l_Array_empty___closed__1; -x_859 = lean_array_push(x_858, x_857); -x_860 = l___private_Init_Meta_0__Lean_quoteName(x_831); -x_861 = lean_array_push(x_858, x_860); -x_862 = l_Nat_repr(x_844); -x_863 = l_Lean_numLitKind; -x_864 = l_Lean_Syntax_mkLit(x_863, x_862, x_854); -x_865 = lean_array_push(x_861, x_864); -x_866 = l_Lean_nullKind___closed__2; -x_867 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_867, 0, x_866); -lean_ctor_set(x_867, 1, x_865); -x_868 = lean_array_push(x_859, x_867); -x_869 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_870 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_870, 0, x_869); -lean_ctor_set(x_870, 1, x_868); -if (lean_is_scalar(x_851)) { - x_871 = lean_alloc_ctor(0, 2, 0); -} else { - x_871 = x_851; -} -lean_ctor_set(x_871, 0, x_870); -lean_ctor_set(x_871, 1, x_850); -return x_871; -} -} -} -else -{ -lean_object* x_925; lean_object* x_926; -lean_dec(x_1); -x_925 = lean_ctor_get(x_835, 1); -lean_inc(x_925); -lean_dec(x_835); -lean_inc(x_831); -x_926 = l_Lean_Parser_ensureConstantParserAlias(x_831, x_925); -if (lean_obj_tag(x_926) == 0) -{ +lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_dec(x_665); -if (lean_obj_tag(x_834) == 0) -{ -lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; -lean_dec(x_833); -x_927 = lean_ctor_get(x_926, 1); -lean_inc(x_927); -lean_dec(x_926); -x_928 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; -x_929 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; -x_930 = lean_box(0); -x_931 = l_Lean_Elab_Term_toParserDescrAux___lambda__2(x_928, x_929, x_831, x_930, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_927); -lean_dec(x_9); -lean_dec(x_666); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_931; -} -else -{ -lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; -lean_dec(x_834); -lean_dec(x_831); -x_932 = lean_ctor_get(x_926, 1); -lean_inc(x_932); -lean_dec(x_926); -x_933 = l_Lean_Elab_Term_toParserDescrAux___closed__47; -x_934 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_833, x_933, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_932); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_833); -x_935 = lean_ctor_get(x_934, 0); -lean_inc(x_935); -x_936 = lean_ctor_get(x_934, 1); -lean_inc(x_936); -if (lean_is_exclusive(x_934)) { - lean_ctor_release(x_934, 0); - lean_ctor_release(x_934, 1); - x_937 = x_934; -} else { - lean_dec_ref(x_934); - x_937 = lean_box(0); -} -if (lean_is_scalar(x_937)) { - x_938 = lean_alloc_ctor(1, 2, 0); -} else { - x_938 = x_937; -} -lean_ctor_set(x_938, 0, x_935); -lean_ctor_set(x_938, 1, x_936); -return x_938; -} -} -else -{ -lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; -lean_dec(x_834); -lean_dec(x_833); -lean_dec(x_831); -lean_dec(x_666); -lean_dec(x_9); -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_939 = lean_ctor_get(x_926, 0); -lean_inc(x_939); -x_940 = lean_ctor_get(x_926, 1); -lean_inc(x_940); -if (lean_is_exclusive(x_926)) { - lean_ctor_release(x_926, 0); - lean_ctor_release(x_926, 1); - x_941 = x_926; -} else { - lean_dec_ref(x_926); - x_941 = lean_box(0); -} -x_942 = lean_io_error_to_string(x_939); -x_943 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_943, 0, x_942); -x_944 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_944, 0, x_943); -x_945 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_945, 0, x_665); -lean_ctor_set(x_945, 1, x_944); -if (lean_is_scalar(x_941)) { - x_946 = lean_alloc_ctor(1, 2, 0); -} else { - x_946 = x_941; -} -lean_ctor_set(x_946, 0, x_945); -lean_ctor_set(x_946, 1, x_940); -return x_946; -} -} -} -} -else -{ -lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; -lean_dec(x_663); -lean_dec(x_662); +lean_dec(x_664); lean_dec(x_11); -x_947 = lean_unsigned_to_nat(0u); -x_948 = l_Lean_Syntax_getArg(x_1, x_947); -x_949 = l_Lean_Syntax_getId(x_948); -lean_dec(x_948); -x_950 = lean_erase_macro_scopes(x_949); -lean_inc(x_950); -x_951 = l_Lean_Parser_ensureBinaryParserAlias(x_950, x_10); -if (lean_obj_tag(x_951) == 0) -{ -lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; uint8_t x_956; uint8_t x_957; lean_object* x_958; uint8_t x_959; lean_object* x_960; lean_object* x_961; -lean_dec(x_665); -x_952 = lean_ctor_get(x_951, 1); -lean_inc(x_952); -lean_dec(x_951); -x_953 = lean_unsigned_to_nat(2u); +x_953 = lean_unsigned_to_nat(0u); x_954 = l_Lean_Syntax_getArg(x_1, x_953); -x_955 = lean_ctor_get(x_2, 0); -lean_inc(x_955); -x_956 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -x_957 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +x_955 = l_Lean_Syntax_getId(x_954); +lean_dec(x_954); +x_956 = lean_erase_macro_scopes(x_955); +lean_inc(x_956); +x_957 = l_Lean_Parser_ensureBinaryParserAlias(x_956, x_10); +if (lean_obj_tag(x_957) == 0) +{ +lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; uint8_t x_962; lean_object* x_963; uint8_t x_964; lean_object* x_965; lean_object* x_966; +lean_dec(x_667); +x_958 = lean_ctor_get(x_957, 1); +lean_inc(x_958); +lean_dec(x_957); +x_959 = lean_unsigned_to_nat(2u); +x_960 = l_Lean_Syntax_getArg(x_1, x_959); +x_961 = lean_ctor_get(x_2, 0); +lean_inc(x_961); +x_962 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); if (lean_is_exclusive(x_2)) { lean_ctor_release(x_2, 0); - x_958 = x_2; + x_963 = x_2; } else { lean_dec_ref(x_2); - x_958 = lean_box(0); + x_963 = lean_box(0); } -x_959 = 0; -if (lean_is_scalar(x_958)) { - x_960 = lean_alloc_ctor(0, 1, 3); +x_964 = 0; +if (lean_is_scalar(x_963)) { + x_965 = lean_alloc_ctor(0, 1, 3); } else { - x_960 = x_958; + x_965 = x_963; } -lean_ctor_set(x_960, 0, x_955); -lean_ctor_set_uint8(x_960, sizeof(void*)*1, x_956); -lean_ctor_set_uint8(x_960, sizeof(void*)*1 + 1, x_959); -lean_ctor_set_uint8(x_960, sizeof(void*)*1 + 2, x_957); +lean_ctor_set(x_965, 0, x_961); +lean_ctor_set_uint8(x_965, sizeof(void*)*1, x_964); +lean_ctor_set_uint8(x_965, sizeof(void*)*1 + 1, x_964); +lean_ctor_set_uint8(x_965, sizeof(void*)*1 + 2, x_962); lean_inc(x_9); -lean_inc(x_666); +lean_inc(x_668); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_960); -x_961 = l_Lean_Elab_Term_toParserDescrAux(x_954, x_960, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_952); -if (lean_obj_tag(x_961) == 0) -{ -lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; -x_962 = lean_ctor_get(x_961, 0); -lean_inc(x_962); -x_963 = lean_ctor_get(x_961, 1); -lean_inc(x_963); -lean_dec(x_961); -x_964 = lean_unsigned_to_nat(4u); -x_965 = l_Lean_Syntax_getArg(x_1, x_964); -lean_dec(x_1); -lean_inc(x_9); -lean_inc(x_666); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_966 = l_Lean_Elab_Term_toParserDescrAux(x_965, x_960, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_963); +lean_inc(x_965); +x_966 = l_Lean_Elab_Term_toParserDescrAux(x_960, x_965, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_958); if (lean_obj_tag(x_966) == 0) { -lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; +lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; x_967 = lean_ctor_get(x_966, 0); lean_inc(x_967); x_968 = lean_ctor_get(x_966, 1); lean_inc(x_968); lean_dec(x_966); -x_969 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_666, x_9, x_968); -lean_dec(x_666); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_970 = lean_ctor_get(x_969, 0); -lean_inc(x_970); -x_971 = lean_ctor_get(x_969, 1); -lean_inc(x_971); -lean_dec(x_969); -x_972 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_971); -lean_dec(x_9); -x_973 = lean_ctor_get(x_972, 0); -lean_inc(x_973); -x_974 = lean_ctor_get(x_972, 1); -lean_inc(x_974); -if (lean_is_exclusive(x_972)) { - lean_ctor_release(x_972, 0); - lean_ctor_release(x_972, 1); - x_975 = x_972; -} else { - lean_dec_ref(x_972); - x_975 = lean_box(0); -} -x_976 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; -x_977 = l_Lean_addMacroScope(x_973, x_976, x_970); -x_978 = l_Lean_Init_Prelude___instance__72___closed__1; -x_979 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; -x_980 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; -x_981 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_981, 0, x_978); -lean_ctor_set(x_981, 1, x_979); -lean_ctor_set(x_981, 2, x_977); -lean_ctor_set(x_981, 3, x_980); -x_982 = l_Array_empty___closed__1; -x_983 = lean_array_push(x_982, x_981); -x_984 = l___private_Init_Meta_0__Lean_quoteName(x_950); -x_985 = lean_array_push(x_982, x_984); -x_986 = lean_array_push(x_985, x_962); -x_987 = lean_array_push(x_986, x_967); -x_988 = l_Lean_nullKind___closed__2; -x_989 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_989, 0, x_988); -lean_ctor_set(x_989, 1, x_987); -x_990 = lean_array_push(x_983, x_989); -x_991 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_992 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_992, 0, x_991); -lean_ctor_set(x_992, 1, x_990); -if (lean_is_scalar(x_975)) { - x_993 = lean_alloc_ctor(0, 2, 0); -} else { - x_993 = x_975; -} -lean_ctor_set(x_993, 0, x_992); -lean_ctor_set(x_993, 1, x_974); -return x_993; -} -else -{ -lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; -lean_dec(x_962); -lean_dec(x_950); -lean_dec(x_666); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_994 = lean_ctor_get(x_966, 0); -lean_inc(x_994); -x_995 = lean_ctor_get(x_966, 1); -lean_inc(x_995); -if (lean_is_exclusive(x_966)) { - lean_ctor_release(x_966, 0); - lean_ctor_release(x_966, 1); - x_996 = x_966; -} else { - lean_dec_ref(x_966); - x_996 = lean_box(0); -} -if (lean_is_scalar(x_996)) { - x_997 = lean_alloc_ctor(1, 2, 0); -} else { - x_997 = x_996; -} -lean_ctor_set(x_997, 0, x_994); -lean_ctor_set(x_997, 1, x_995); -return x_997; -} -} -else -{ -lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; -lean_dec(x_960); -lean_dec(x_950); -lean_dec(x_666); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +x_969 = lean_unsigned_to_nat(4u); +x_970 = l_Lean_Syntax_getArg(x_1, x_969); lean_dec(x_1); -x_998 = lean_ctor_get(x_961, 0); -lean_inc(x_998); -x_999 = lean_ctor_get(x_961, 1); -lean_inc(x_999); -if (lean_is_exclusive(x_961)) { - lean_ctor_release(x_961, 0); - lean_ctor_release(x_961, 1); - x_1000 = x_961; -} else { - lean_dec_ref(x_961); - x_1000 = lean_box(0); -} -if (lean_is_scalar(x_1000)) { - x_1001 = lean_alloc_ctor(1, 2, 0); -} else { - x_1001 = x_1000; -} -lean_ctor_set(x_1001, 0, x_998); -lean_ctor_set(x_1001, 1, x_999); -return x_1001; -} -} -else -{ -lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; -lean_dec(x_950); -lean_dec(x_666); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_1002 = lean_ctor_get(x_951, 0); -lean_inc(x_1002); -x_1003 = lean_ctor_get(x_951, 1); -lean_inc(x_1003); -if (lean_is_exclusive(x_951)) { - lean_ctor_release(x_951, 0); - lean_ctor_release(x_951, 1); - x_1004 = x_951; -} else { - lean_dec_ref(x_951); - x_1004 = lean_box(0); -} -x_1005 = lean_io_error_to_string(x_1002); -x_1006 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1006, 0, x_1005); -x_1007 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1007, 0, x_1006); -x_1008 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1008, 0, x_665); -lean_ctor_set(x_1008, 1, x_1007); -if (lean_is_scalar(x_1004)) { - x_1009 = lean_alloc_ctor(1, 2, 0); -} else { - x_1009 = x_1004; -} -lean_ctor_set(x_1009, 0, x_1008); -lean_ctor_set(x_1009, 1, x_1003); -return x_1009; -} -} -} -else -{ -lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; -lean_dec(x_663); -lean_dec(x_662); -lean_dec(x_11); -x_1010 = lean_unsigned_to_nat(0u); -x_1011 = l_Lean_Syntax_getArg(x_1, x_1010); -x_1012 = l_Lean_Syntax_getId(x_1011); -lean_dec(x_1011); -x_1013 = lean_erase_macro_scopes(x_1012); -lean_inc(x_1013); -x_1014 = l_Lean_Parser_ensureUnaryParserAlias(x_1013, x_10); -if (lean_obj_tag(x_1014) == 0) -{ -lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; uint8_t x_1019; uint8_t x_1020; lean_object* x_1021; uint8_t x_1022; lean_object* x_1023; lean_object* x_1024; -lean_dec(x_665); -x_1015 = lean_ctor_get(x_1014, 1); -lean_inc(x_1015); -lean_dec(x_1014); -x_1016 = lean_unsigned_to_nat(2u); -x_1017 = l_Lean_Syntax_getArg(x_1, x_1016); -lean_dec(x_1); -x_1018 = lean_ctor_get(x_2, 0); -lean_inc(x_1018); -x_1019 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -x_1020 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - x_1021 = x_2; -} else { - lean_dec_ref(x_2); - x_1021 = lean_box(0); -} -x_1022 = 0; -if (lean_is_scalar(x_1021)) { - x_1023 = lean_alloc_ctor(0, 1, 3); -} else { - x_1023 = x_1021; -} -lean_ctor_set(x_1023, 0, x_1018); -lean_ctor_set_uint8(x_1023, sizeof(void*)*1, x_1019); -lean_ctor_set_uint8(x_1023, sizeof(void*)*1 + 1, x_1022); -lean_ctor_set_uint8(x_1023, sizeof(void*)*1 + 2, x_1020); lean_inc(x_9); -lean_inc(x_666); +lean_inc(x_668); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_1024 = l_Lean_Elab_Term_toParserDescrAux(x_1017, x_1023, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_1015); -if (lean_obj_tag(x_1024) == 0) +x_971 = l_Lean_Elab_Term_toParserDescrAux(x_970, x_965, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_968); +if (lean_obj_tag(x_971) == 0) { -lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; -x_1025 = lean_ctor_get(x_1024, 0); -lean_inc(x_1025); -x_1026 = lean_ctor_get(x_1024, 1); -lean_inc(x_1026); -lean_dec(x_1024); -x_1027 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_666, x_9, x_1026); -lean_dec(x_666); +lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; +x_972 = lean_ctor_get(x_971, 0); +lean_inc(x_972); +x_973 = lean_ctor_get(x_971, 1); +lean_inc(x_973); +lean_dec(x_971); +x_974 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_668, x_9, x_973); +lean_dec(x_668); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_1028 = lean_ctor_get(x_1027, 0); -lean_inc(x_1028); -x_1029 = lean_ctor_get(x_1027, 1); -lean_inc(x_1029); -lean_dec(x_1027); -x_1030 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_1029); +x_975 = lean_ctor_get(x_974, 0); +lean_inc(x_975); +x_976 = lean_ctor_get(x_974, 1); +lean_inc(x_976); +lean_dec(x_974); +x_977 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_976); lean_dec(x_9); -x_1031 = lean_ctor_get(x_1030, 0); -lean_inc(x_1031); -x_1032 = lean_ctor_get(x_1030, 1); -lean_inc(x_1032); -if (lean_is_exclusive(x_1030)) { - lean_ctor_release(x_1030, 0); - lean_ctor_release(x_1030, 1); - x_1033 = x_1030; +x_978 = lean_ctor_get(x_977, 0); +lean_inc(x_978); +x_979 = lean_ctor_get(x_977, 1); +lean_inc(x_979); +if (lean_is_exclusive(x_977)) { + lean_ctor_release(x_977, 0); + lean_ctor_release(x_977, 1); + x_980 = x_977; } else { - lean_dec_ref(x_1030); - x_1033 = lean_box(0); + lean_dec_ref(x_977); + x_980 = lean_box(0); } -x_1034 = l_Lean_Elab_Term_toParserDescrAux___closed__51; -x_1035 = l_Lean_addMacroScope(x_1031, x_1034, x_1028); -x_1036 = l_Lean_Init_Prelude___instance__72___closed__1; -x_1037 = l_Lean_Elab_Term_toParserDescrAux___closed__50; -x_1038 = l_Lean_Elab_Term_toParserDescrAux___closed__54; -x_1039 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1039, 0, x_1036); -lean_ctor_set(x_1039, 1, x_1037); -lean_ctor_set(x_1039, 2, x_1035); -lean_ctor_set(x_1039, 3, x_1038); -x_1040 = l_Array_empty___closed__1; -x_1041 = lean_array_push(x_1040, x_1039); -x_1042 = l___private_Init_Meta_0__Lean_quoteName(x_1013); -x_1043 = lean_array_push(x_1040, x_1042); -x_1044 = lean_array_push(x_1043, x_1025); -x_1045 = l_Lean_nullKind___closed__2; -x_1046 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1046, 0, x_1045); -lean_ctor_set(x_1046, 1, x_1044); -x_1047 = lean_array_push(x_1041, x_1046); -x_1048 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1049 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1049, 0, x_1048); -lean_ctor_set(x_1049, 1, x_1047); -if (lean_is_scalar(x_1033)) { - x_1050 = lean_alloc_ctor(0, 2, 0); +x_981 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; +x_982 = l_Lean_addMacroScope(x_978, x_981, x_975); +x_983 = l_Lean_Init_Prelude___instance__72___closed__1; +x_984 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; +x_985 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; +x_986 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_986, 0, x_983); +lean_ctor_set(x_986, 1, x_984); +lean_ctor_set(x_986, 2, x_982); +lean_ctor_set(x_986, 3, x_985); +x_987 = l_Array_empty___closed__1; +x_988 = lean_array_push(x_987, x_986); +x_989 = l___private_Init_Meta_0__Lean_quoteName(x_956); +x_990 = lean_array_push(x_987, x_989); +x_991 = lean_array_push(x_990, x_967); +x_992 = lean_array_push(x_991, x_972); +x_993 = l_Lean_nullKind___closed__2; +x_994 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_994, 0, x_993); +lean_ctor_set(x_994, 1, x_992); +x_995 = lean_array_push(x_988, x_994); +x_996 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_997 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_997, 0, x_996); +lean_ctor_set(x_997, 1, x_995); +if (lean_is_scalar(x_980)) { + x_998 = lean_alloc_ctor(0, 2, 0); } else { - x_1050 = x_1033; + x_998 = x_980; } -lean_ctor_set(x_1050, 0, x_1049); -lean_ctor_set(x_1050, 1, x_1032); -return x_1050; +lean_ctor_set(x_998, 0, x_997); +lean_ctor_set(x_998, 1, x_979); +return x_998; } else { -lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; -lean_dec(x_1013); -lean_dec(x_666); +lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; +lean_dec(x_967); +lean_dec(x_956); +lean_dec(x_668); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_1051 = lean_ctor_get(x_1024, 0); -lean_inc(x_1051); -x_1052 = lean_ctor_get(x_1024, 1); -lean_inc(x_1052); -if (lean_is_exclusive(x_1024)) { - lean_ctor_release(x_1024, 0); - lean_ctor_release(x_1024, 1); - x_1053 = x_1024; +x_999 = lean_ctor_get(x_971, 0); +lean_inc(x_999); +x_1000 = lean_ctor_get(x_971, 1); +lean_inc(x_1000); +if (lean_is_exclusive(x_971)) { + lean_ctor_release(x_971, 0); + lean_ctor_release(x_971, 1); + x_1001 = x_971; } else { - lean_dec_ref(x_1024); - x_1053 = lean_box(0); + lean_dec_ref(x_971); + x_1001 = lean_box(0); } -if (lean_is_scalar(x_1053)) { - x_1054 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1001)) { + x_1002 = lean_alloc_ctor(1, 2, 0); } else { - x_1054 = x_1053; + x_1002 = x_1001; } -lean_ctor_set(x_1054, 0, x_1051); -lean_ctor_set(x_1054, 1, x_1052); -return x_1054; +lean_ctor_set(x_1002, 0, x_999); +lean_ctor_set(x_1002, 1, x_1000); +return x_1002; } } else { -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_1013); -lean_dec(x_666); +lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; +lean_dec(x_965); +lean_dec(x_956); +lean_dec(x_668); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_1003 = lean_ctor_get(x_966, 0); +lean_inc(x_1003); +x_1004 = lean_ctor_get(x_966, 1); +lean_inc(x_1004); +if (lean_is_exclusive(x_966)) { + lean_ctor_release(x_966, 0); + lean_ctor_release(x_966, 1); + x_1005 = x_966; +} else { + lean_dec_ref(x_966); + x_1005 = lean_box(0); +} +if (lean_is_scalar(x_1005)) { + x_1006 = lean_alloc_ctor(1, 2, 0); +} else { + x_1006 = x_1005; +} +lean_ctor_set(x_1006, 0, x_1003); +lean_ctor_set(x_1006, 1, x_1004); +return x_1006; +} +} +else +{ +lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; +lean_dec(x_956); +lean_dec(x_668); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -8784,184 +8714,375 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_1055 = lean_ctor_get(x_1014, 0); -lean_inc(x_1055); -x_1056 = lean_ctor_get(x_1014, 1); -lean_inc(x_1056); -if (lean_is_exclusive(x_1014)) { - lean_ctor_release(x_1014, 0); - lean_ctor_release(x_1014, 1); - x_1057 = x_1014; +x_1007 = lean_ctor_get(x_957, 0); +lean_inc(x_1007); +x_1008 = lean_ctor_get(x_957, 1); +lean_inc(x_1008); +if (lean_is_exclusive(x_957)) { + lean_ctor_release(x_957, 0); + lean_ctor_release(x_957, 1); + x_1009 = x_957; } else { - lean_dec_ref(x_1014); + lean_dec_ref(x_957); + x_1009 = lean_box(0); +} +x_1010 = lean_io_error_to_string(x_1007); +x_1011 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1011, 0, x_1010); +x_1012 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1012, 0, x_1011); +x_1013 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1013, 0, x_667); +lean_ctor_set(x_1013, 1, x_1012); +if (lean_is_scalar(x_1009)) { + x_1014 = lean_alloc_ctor(1, 2, 0); +} else { + x_1014 = x_1009; +} +lean_ctor_set(x_1014, 0, x_1013); +lean_ctor_set(x_1014, 1, x_1008); +return x_1014; +} +} +} +else +{ +lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; +lean_dec(x_665); +lean_dec(x_664); +lean_dec(x_11); +x_1015 = lean_unsigned_to_nat(0u); +x_1016 = l_Lean_Syntax_getArg(x_1, x_1015); +x_1017 = l_Lean_Syntax_getId(x_1016); +lean_dec(x_1016); +x_1018 = lean_erase_macro_scopes(x_1017); +lean_inc(x_1018); +x_1019 = l_Lean_Parser_ensureUnaryParserAlias(x_1018, x_10); +if (lean_obj_tag(x_1019) == 0) +{ +lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; uint8_t x_1024; lean_object* x_1025; uint8_t x_1026; lean_object* x_1027; lean_object* x_1028; +lean_dec(x_667); +x_1020 = lean_ctor_get(x_1019, 1); +lean_inc(x_1020); +lean_dec(x_1019); +x_1021 = lean_unsigned_to_nat(2u); +x_1022 = l_Lean_Syntax_getArg(x_1, x_1021); +lean_dec(x_1); +x_1023 = lean_ctor_get(x_2, 0); +lean_inc(x_1023); +x_1024 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + x_1025 = x_2; +} else { + lean_dec_ref(x_2); + x_1025 = lean_box(0); +} +x_1026 = 0; +if (lean_is_scalar(x_1025)) { + x_1027 = lean_alloc_ctor(0, 1, 3); +} else { + x_1027 = x_1025; +} +lean_ctor_set(x_1027, 0, x_1023); +lean_ctor_set_uint8(x_1027, sizeof(void*)*1, x_1026); +lean_ctor_set_uint8(x_1027, sizeof(void*)*1 + 1, x_1026); +lean_ctor_set_uint8(x_1027, sizeof(void*)*1 + 2, x_1024); +lean_inc(x_9); +lean_inc(x_668); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_1028 = l_Lean_Elab_Term_toParserDescrAux(x_1022, x_1027, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_1020); +if (lean_obj_tag(x_1028) == 0) +{ +lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; +x_1029 = lean_ctor_get(x_1028, 0); +lean_inc(x_1029); +x_1030 = lean_ctor_get(x_1028, 1); +lean_inc(x_1030); +lean_dec(x_1028); +x_1031 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5, x_6, x_7, x_668, x_9, x_1030); +lean_dec(x_668); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1032 = lean_ctor_get(x_1031, 0); +lean_inc(x_1032); +x_1033 = lean_ctor_get(x_1031, 1); +lean_inc(x_1033); +lean_dec(x_1031); +x_1034 = l_Lean_Elab_Term_getMainModule___rarg(x_9, x_1033); +lean_dec(x_9); +x_1035 = lean_ctor_get(x_1034, 0); +lean_inc(x_1035); +x_1036 = lean_ctor_get(x_1034, 1); +lean_inc(x_1036); +if (lean_is_exclusive(x_1034)) { + lean_ctor_release(x_1034, 0); + lean_ctor_release(x_1034, 1); + x_1037 = x_1034; +} else { + lean_dec_ref(x_1034); + x_1037 = lean_box(0); +} +x_1038 = l_Lean_Elab_Term_toParserDescrAux___closed__51; +x_1039 = l_Lean_addMacroScope(x_1035, x_1038, x_1032); +x_1040 = l_Lean_Init_Prelude___instance__72___closed__1; +x_1041 = l_Lean_Elab_Term_toParserDescrAux___closed__50; +x_1042 = l_Lean_Elab_Term_toParserDescrAux___closed__54; +x_1043 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1043, 0, x_1040); +lean_ctor_set(x_1043, 1, x_1041); +lean_ctor_set(x_1043, 2, x_1039); +lean_ctor_set(x_1043, 3, x_1042); +x_1044 = l_Array_empty___closed__1; +x_1045 = lean_array_push(x_1044, x_1043); +x_1046 = l___private_Init_Meta_0__Lean_quoteName(x_1018); +x_1047 = lean_array_push(x_1044, x_1046); +x_1048 = lean_array_push(x_1047, x_1029); +x_1049 = l_Lean_nullKind___closed__2; +x_1050 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1050, 0, x_1049); +lean_ctor_set(x_1050, 1, x_1048); +x_1051 = lean_array_push(x_1045, x_1050); +x_1052 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1053 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1053, 0, x_1052); +lean_ctor_set(x_1053, 1, x_1051); +if (lean_is_scalar(x_1037)) { + x_1054 = lean_alloc_ctor(0, 2, 0); +} else { + x_1054 = x_1037; +} +lean_ctor_set(x_1054, 0, x_1053); +lean_ctor_set(x_1054, 1, x_1036); +return x_1054; +} +else +{ +lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; +lean_dec(x_1018); +lean_dec(x_668); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1055 = lean_ctor_get(x_1028, 0); +lean_inc(x_1055); +x_1056 = lean_ctor_get(x_1028, 1); +lean_inc(x_1056); +if (lean_is_exclusive(x_1028)) { + lean_ctor_release(x_1028, 0); + lean_ctor_release(x_1028, 1); + x_1057 = x_1028; +} else { + lean_dec_ref(x_1028); x_1057 = lean_box(0); } -x_1058 = lean_io_error_to_string(x_1055); -x_1059 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1059, 0, x_1058); -x_1060 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1060, 0, x_1059); -x_1061 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1061, 0, x_665); -lean_ctor_set(x_1061, 1, x_1060); if (lean_is_scalar(x_1057)) { - x_1062 = lean_alloc_ctor(1, 2, 0); + x_1058 = lean_alloc_ctor(1, 2, 0); } else { - x_1062 = x_1057; + x_1058 = x_1057; } -lean_ctor_set(x_1062, 0, x_1061); -lean_ctor_set(x_1062, 1, x_1056); -return x_1062; +lean_ctor_set(x_1058, 0, x_1055); +lean_ctor_set(x_1058, 1, x_1056); +return x_1058; +} +} +else +{ +lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; +lean_dec(x_1018); +lean_dec(x_668); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_1059 = lean_ctor_get(x_1019, 0); +lean_inc(x_1059); +x_1060 = lean_ctor_get(x_1019, 1); +lean_inc(x_1060); +if (lean_is_exclusive(x_1019)) { + lean_ctor_release(x_1019, 0); + lean_ctor_release(x_1019, 1); + x_1061 = x_1019; +} else { + lean_dec_ref(x_1019); + x_1061 = lean_box(0); +} +x_1062 = lean_io_error_to_string(x_1059); +x_1063 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1063, 0, x_1062); +x_1064 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1064, 0, x_1063); +x_1065 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1065, 0, x_667); +lean_ctor_set(x_1065, 1, x_1064); +if (lean_is_scalar(x_1061)) { + x_1066 = lean_alloc_ctor(1, 2, 0); +} else { + x_1066 = x_1061; +} +lean_ctor_set(x_1066, 0, x_1065); +lean_ctor_set(x_1066, 1, x_1060); +return x_1066; } } } else { -lean_object* x_1063; lean_object* x_1064; +lean_object* x_1067; lean_object* x_1068; +lean_dec(x_667); lean_dec(x_665); -lean_dec(x_663); -lean_dec(x_662); +lean_dec(x_664); lean_dec(x_11); -x_1063 = lean_unsigned_to_nat(1u); -x_1064 = l_Lean_Syntax_getArg(x_1, x_1063); +x_1067 = lean_unsigned_to_nat(1u); +x_1068 = l_Lean_Syntax_getArg(x_1, x_1067); lean_dec(x_1); -x_1 = x_1064; -x_8 = x_666; +x_1 = x_1068; +x_8 = x_668; goto _start; } } else { -lean_object* x_1066; lean_object* x_1067; +lean_object* x_1070; lean_object* x_1071; +lean_dec(x_667); lean_dec(x_665); -lean_dec(x_663); -lean_dec(x_662); +lean_dec(x_664); lean_dec(x_11); -x_1066 = lean_unsigned_to_nat(0u); -x_1067 = l_Lean_Syntax_getArg(x_1, x_1066); -lean_dec(x_1); -x_1 = x_1067; -x_8 = x_666; -goto _start; -} -} -else -{ -lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; -lean_dec(x_665); -lean_dec(x_663); -lean_dec(x_662); -lean_dec(x_11); -x_1069 = l_Lean_Syntax_getArgs(x_1); x_1070 = lean_unsigned_to_nat(0u); x_1071 = l_Lean_Syntax_getArg(x_1, x_1070); +lean_dec(x_1); +x_1 = x_1071; +x_8 = x_668; +goto _start; +} +} +else +{ +lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; +lean_dec(x_667); +lean_dec(x_665); +lean_dec(x_664); +lean_dec(x_11); +x_1073 = l_Lean_Syntax_getArgs(x_1); +x_1074 = lean_unsigned_to_nat(0u); +x_1075 = l_Lean_Syntax_getArg(x_1, x_1074); lean_inc(x_9); -lean_inc(x_666); +lean_inc(x_668); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_1072 = l_Lean_Elab_Term_checkLeftRec(x_1071, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_10); -if (lean_obj_tag(x_1072) == 0) +x_1076 = l_Lean_Elab_Term_checkLeftRec(x_1075, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_10); +if (lean_obj_tag(x_1076) == 0) { -lean_object* x_1073; uint8_t x_1074; -x_1073 = lean_ctor_get(x_1072, 0); -lean_inc(x_1073); -x_1074 = lean_unbox(x_1073); -lean_dec(x_1073); -if (x_1074 == 0) +lean_object* x_1077; uint8_t x_1078; +x_1077 = lean_ctor_get(x_1076, 0); +lean_inc(x_1077); +x_1078 = lean_unbox(x_1077); +lean_dec(x_1077); +if (x_1078 == 0) { -lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; -x_1075 = lean_ctor_get(x_1072, 1); -lean_inc(x_1075); -lean_dec(x_1072); -x_1076 = lean_array_get_size(x_1069); -x_1077 = lean_mk_empty_array_with_capacity(x_1076); +lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; +x_1079 = lean_ctor_get(x_1076, 1); +lean_inc(x_1079); +lean_dec(x_1076); +x_1080 = lean_array_get_size(x_1073); +x_1081 = lean_mk_empty_array_with_capacity(x_1080); lean_inc(x_9); -lean_inc(x_666); +lean_inc(x_668); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_1078 = l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__9(x_1, x_1069, x_1076, x_1070, lean_box(0), x_1077, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_1075); +x_1082 = l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__9(x_1, x_1073, x_1080, x_1074, lean_box(0), x_1081, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_1079); lean_dec(x_2); -lean_dec(x_1069); +lean_dec(x_1073); lean_dec(x_1); -if (lean_obj_tag(x_1078) == 0) +if (lean_obj_tag(x_1082) == 0) { -lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; -x_1079 = lean_ctor_get(x_1078, 0); -lean_inc(x_1079); -x_1080 = lean_ctor_get(x_1078, 1); -lean_inc(x_1080); -lean_dec(x_1078); -x_1081 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq(x_1079, x_4, x_5, x_6, x_7, x_666, x_9, x_1080); -lean_dec(x_9); -lean_dec(x_666); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_1081; -} -else -{ -lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; -lean_dec(x_666); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_1082 = lean_ctor_get(x_1078, 0); -lean_inc(x_1082); -x_1083 = lean_ctor_get(x_1078, 1); +lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; +x_1083 = lean_ctor_get(x_1082, 0); lean_inc(x_1083); -if (lean_is_exclusive(x_1078)) { - lean_ctor_release(x_1078, 0); - lean_ctor_release(x_1078, 1); - x_1084 = x_1078; -} else { - lean_dec_ref(x_1078); - x_1084 = lean_box(0); -} -if (lean_is_scalar(x_1084)) { - x_1085 = lean_alloc_ctor(1, 2, 0); -} else { - x_1085 = x_1084; -} -lean_ctor_set(x_1085, 0, x_1082); -lean_ctor_set(x_1085, 1, x_1083); +x_1084 = lean_ctor_get(x_1082, 1); +lean_inc(x_1084); +lean_dec(x_1082); +x_1085 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq(x_1083, x_4, x_5, x_6, x_7, x_668, x_9, x_1084); +lean_dec(x_9); +lean_dec(x_668); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); return x_1085; } -} else { -lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; uint8_t x_1089; -x_1086 = lean_ctor_get(x_1072, 1); +lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; +lean_dec(x_668); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1086 = lean_ctor_get(x_1082, 0); lean_inc(x_1086); -lean_dec(x_1072); -x_1087 = lean_array_get_size(x_1069); -x_1088 = lean_unsigned_to_nat(1u); -x_1089 = lean_nat_dec_eq(x_1087, x_1088); -lean_dec(x_1087); -if (x_1089 == 0) -{ -lean_object* x_1090; lean_object* x_1091; -x_1090 = lean_box(0); -x_1091 = l_Lean_Elab_Term_toParserDescrAux___lambda__3(x_1069, x_1, x_1090, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_1086); -lean_dec(x_2); -lean_dec(x_1); -return x_1091; +x_1087 = lean_ctor_get(x_1082, 1); +lean_inc(x_1087); +if (lean_is_exclusive(x_1082)) { + lean_ctor_release(x_1082, 0); + lean_ctor_release(x_1082, 1); + x_1088 = x_1082; +} else { + lean_dec_ref(x_1082); + x_1088 = lean_box(0); +} +if (lean_is_scalar(x_1088)) { + x_1089 = lean_alloc_ctor(1, 2, 0); +} else { + x_1089 = x_1088; +} +lean_ctor_set(x_1089, 0, x_1086); +lean_ctor_set(x_1089, 1, x_1087); +return x_1089; +} } else { -lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; -lean_dec(x_1069); -x_1092 = l_Lean_Elab_Term_toParserDescrAux___closed__45; -x_1093 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_1092, x_2, x_3, x_4, x_5, x_6, x_7, x_666, x_9, x_1086); +lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; uint8_t x_1093; +x_1090 = lean_ctor_get(x_1076, 1); +lean_inc(x_1090); +lean_dec(x_1076); +x_1091 = lean_array_get_size(x_1073); +x_1092 = lean_unsigned_to_nat(1u); +x_1093 = lean_nat_dec_eq(x_1091, x_1092); +lean_dec(x_1091); +if (x_1093 == 0) +{ +lean_object* x_1094; lean_object* x_1095; +lean_dec(x_1); +x_1094 = lean_box(0); +x_1095 = l_Lean_Elab_Term_toParserDescrAux___lambda__3(x_1073, x_1094, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_1090); +return x_1095; +} +else +{ +lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; +lean_dec(x_1073); +x_1096 = l_Lean_Elab_Term_toParserDescrAux___closed__45; +x_1097 = l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg(x_1, x_1096, x_2, x_3, x_4, x_5, x_6, x_7, x_668, x_9, x_1090); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); @@ -8970,52 +9091,16 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_1094 = lean_ctor_get(x_1093, 0); -lean_inc(x_1094); -x_1095 = lean_ctor_get(x_1093, 1); -lean_inc(x_1095); -if (lean_is_exclusive(x_1093)) { - lean_ctor_release(x_1093, 0); - lean_ctor_release(x_1093, 1); - x_1096 = x_1093; -} else { - lean_dec_ref(x_1093); - x_1096 = lean_box(0); -} -if (lean_is_scalar(x_1096)) { - x_1097 = lean_alloc_ctor(1, 2, 0); -} else { - x_1097 = x_1096; -} -lean_ctor_set(x_1097, 0, x_1094); -lean_ctor_set(x_1097, 1, x_1095); -return x_1097; -} -} -} -else -{ -lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; -lean_dec(x_1069); -lean_dec(x_666); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_1098 = lean_ctor_get(x_1072, 0); +x_1098 = lean_ctor_get(x_1097, 0); lean_inc(x_1098); -x_1099 = lean_ctor_get(x_1072, 1); +x_1099 = lean_ctor_get(x_1097, 1); lean_inc(x_1099); -if (lean_is_exclusive(x_1072)) { - lean_ctor_release(x_1072, 0); - lean_ctor_release(x_1072, 1); - x_1100 = x_1072; +if (lean_is_exclusive(x_1097)) { + lean_ctor_release(x_1097, 0); + lean_ctor_release(x_1097, 1); + x_1100 = x_1097; } else { - lean_dec_ref(x_1072); + lean_dec_ref(x_1097); x_1100 = lean_box(0); } if (lean_is_scalar(x_1100)) { @@ -9029,6 +9114,42 @@ return x_1101; } } } +else +{ +lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; +lean_dec(x_1073); +lean_dec(x_668); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_1102 = lean_ctor_get(x_1076, 0); +lean_inc(x_1102); +x_1103 = lean_ctor_get(x_1076, 1); +lean_inc(x_1103); +if (lean_is_exclusive(x_1076)) { + lean_ctor_release(x_1076, 0); + lean_ctor_release(x_1076, 1); + x_1104 = x_1076; +} else { + lean_dec_ref(x_1076); + x_1104 = lean_box(0); +} +if (lean_is_scalar(x_1104)) { + x_1105 = lean_alloc_ctor(1, 2, 0); +} else { + x_1105 = x_1104; +} +lean_ctor_set(x_1105, 0, x_1102); +lean_ctor_set(x_1105, 1, x_1103); +return x_1105; +} +} +} } } lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___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) { @@ -9135,15 +9256,17 @@ lean_dec(x_1); return x_16; } } -lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescrAux___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_16; -x_16 = l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_7); -lean_dec(x_2); +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_1); lean_dec(x_1); -return x_16; +x_14 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescrAux___spec__10(x_13, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +return x_15; } } lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -9183,15 +9306,13 @@ lean_dec(x_4); return x_14; } } -lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_13; -x_13 = l_Lean_Elab_Term_toParserDescrAux___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_4); -lean_dec(x_3); +lean_object* x_12; +x_12 = l_Lean_Elab_Term_toParserDescrAux___lambda__3(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); -return x_13; +return x_12; } } lean_object* l_Lean_Elab_Term_toParserDescr(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) { @@ -9344,7 +9465,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix___closed__1; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix___closed__2; -x_3 = lean_unsigned_to_nat(169u); +x_3 = lean_unsigned_to_nat(171u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -20078,7 +20199,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -20088,11 +20209,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -23628,6 +23749,8 @@ l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__3 = _init_l_Lean_Elab_Te lean_mark_persistent(l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__3); l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__4 = _init_l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__4(); lean_mark_persistent(l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__4); +l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed__const__1 = _init_l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed__const__1(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescrAux___lambda__3___boxed__const__1); l_Lean_Elab_Term_toParserDescrAux___closed__1 = _init_l_Lean_Elab_Term_toParserDescrAux___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_toParserDescrAux___closed__1); l_Lean_Elab_Term_toParserDescrAux___closed__2 = _init_l_Lean_Elab_Term_toParserDescrAux___closed__2(); @@ -24187,9 +24310,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabMacro___closed__2); res = l___regBuiltin_Lean_Elab_Command_elabMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8915_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8942_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_withExpectedType___closed__1 = _init_l_Lean_Elab_Command_withExpectedType___closed__1(); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 602c29c7fe..0dfefa224d 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -58,6 +58,7 @@ lean_object* l_Lean_Parser_Command_structure_formatter(lean_object*, lean_object lean_object* l_Lean_Parser_Command_open___closed__3; lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_structCtor___closed__8; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__5; @@ -119,7 +120,6 @@ lean_object* l_Lean_Parser_Command_open___closed__5; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_docComment___closed__3; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mutual_formatter___closed__2; lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__7; @@ -1662,6 +1662,7 @@ lean_object* l_Lean_Parser_Command_attribute___closed__1; lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__12; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__11; @@ -1863,7 +1864,6 @@ lean_object* l_Lean_Parser_Command_open___closed__6; 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_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; extern lean_object* l_Lean_Parser_Term_letIdLhs___closed__4; lean_object* l_Lean_Parser_Command_structureTk___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_open___elambda__1(lean_object*, lean_object*); @@ -10968,7 +10968,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_docComment_formatter___closed__3; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -11437,7 +11437,7 @@ static lean_object* _init_l_Lean_Parser_Command_declModifiers_formatter___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -13521,7 +13521,7 @@ static lean_object* _init_l_Lean_Parser_Command_structFields_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = l_Lean_Parser_Command_structFields_formatter___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -14073,7 +14073,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_docComment_parenthesizer___closed__2; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -14480,7 +14480,7 @@ static lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -16216,7 +16216,7 @@ static lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = l_Lean_Parser_Command_structFields_parenthesizer___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/Parser/Extra.c b/stage0/stdlib/Lean/Parser/Extra.c index b2e6b9443a..2bd0dfea30 100644 --- a/stage0/stdlib/Lean/Parser/Extra.c +++ b/stage0/stdlib/Lean/Parser/Extra.c @@ -13,15 +13,15 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__15; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_indent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_many1Indent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__22; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__15; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__27; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___rarg(lean_object*); @@ -30,14 +30,16 @@ lean_object* l_Lean_Parser_mkAntiquot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; lean_object* l_Lean_Parser_ppSpace_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ppHardSpace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__49; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__7; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__13; lean_object* l_Lean_Parser_notFollowedByFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__47; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__49; extern lean_object* l_Lean_identKind___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__47; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__26; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__2; lean_object* l_Lean_Parser_ppSpace_parenthesizer___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_many_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__8; @@ -48,39 +50,40 @@ extern lean_object* l_Lean_Parser_numLit___elambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_indent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident_formatter___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__48; lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___kind_term____x40_Init_Notation___hyg_3____closed__13; lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__21; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__48; extern lean_object* l_Int_Init_Data_Int_Basic___instance__2___closed__1; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__2; lean_object* l_Lean_ppSpace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_group(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__29; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__28; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__3; extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3891____closed__4; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__29; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14; lean_object* l_Lean_Parser_many1Indent___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__28; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__30; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__5; extern lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__7; lean_object* l_Lean_PrettyPrinter_Formatter_pushLine(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__22; lean_object* l_Lean_Parser_strLit_formatter___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__25; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__30; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__5; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__8; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__25; lean_object* l_Lean_Parser_ppIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_charLitKind___closed__1; extern lean_object* l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__1; @@ -90,7 +93,6 @@ lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__9; lean_object* l_Lean_PrettyPrinter_Parenthesizer_toggleInsideQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__23; extern lean_object* l_Lean_Parser_charLit___elambda__1___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__7; extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__17; extern lean_object* l___kind_term____x40_Init_Notation___hyg_3____closed__1; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__34; @@ -114,35 +116,35 @@ lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed_ lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__6; lean_object* l_Lean_Parser_leadingNode_formatter___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__23; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__11; extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__32; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__13; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__31; extern lean_object* l_Lean_Parser_mkAntiquot___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__34; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__41; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__6; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_optional_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__23; lean_object* l_Lean_Parser_registerAliasCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__34; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__46; lean_object* l_Lean_ppIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_setExpected_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_termParser_formatter___boxed(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__46; lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__19; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__31; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__10; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__35; lean_object* l_Lean_Parser_ppSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); extern lean_object* l___private_Lean_Data_Format_0__Lean_Format_pushNewline___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_7455____closed__9; lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__31; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__3; extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__35; lean_object* l_Lean_PrettyPrinter_Formatter_setExpected_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); @@ -150,37 +152,36 @@ lean_object* l_Lean_Parser_symbolFn___boxed(lean_object*, lean_object*, lean_obj lean_object* l_Lean_Parser_strLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_charLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__36; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__41; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__13; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22; lean_object* l_Lean_Parser_strLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__13; lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__36; lean_object* l_Lean_Parser_nodeWithAntiquot_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_skip___closed__1; lean_object* l_Lean_Parser_manyIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit_formatter___closed__1; lean_object* l_Lean_Parser_notSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__17; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__16; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__44; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__8; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__4; lean_object* l_Lean_Parser_ppHardSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__44; extern lean_object* l_Lean_numLitKind___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__8; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20; extern lean_object* l_Lean_strLitKind___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_toggleInsideQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__38; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__21; lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__21; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__38; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__20; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__2; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16; lean_object* l_Lean_Parser_manyIndent(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__50; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__6; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__7; lean_object* l_Lean_Parser_ppSpace; lean_object* l_Lean_Parser_ppHardSpace; @@ -188,6 +189,7 @@ lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg(lean_object*, uint8_t extern lean_object* l_Lean_Parser_parserAliasesRef; lean_object* l_Lean_Parser_termParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ppIndent(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__50; lean_object* l_Lean_Parser_commandParser_formatter___boxed(lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Parser_manyIndent___lambda__1(lean_object*, lean_object*, lean_object*); @@ -200,25 +202,25 @@ extern lean_object* l_Lean_Parser_strLit___elambda__1___closed__1; lean_object* l_Lean_Parser_many1Indent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__12; lean_object* l_Lean_Parser_nodeWithAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__17; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__51; lean_object* l_Lean_Parser_ppLine_parenthesizer___rarg(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__40; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__19; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__10; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__39; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__45; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__9; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; lean_object* l_Lean_Parser_antiquotExpr_parenthesizer___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__8; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__51; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__22; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24; lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__45; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__15; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__9; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__39; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__40; lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___boxed(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__27; lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__27; lean_object* l_Lean_Parser_ppIndent___boxed(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; @@ -227,13 +229,12 @@ lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__11; lean_object* l_Lean_Parser_commandParser_formatter(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; lean_object* l_Lean_Parser_manyAux(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__10; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__32; lean_object* l_Lean_Parser_numLit_parenthesizer___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__43; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__43; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__6; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__29; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__10; lean_object* l_Lean_Parser_mkAntiquot_formatter(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l_Lean_ppHardSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -251,7 +252,6 @@ lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_ident___elambda__1___closed__1; lean_object* l_Lean_Parser_checkColGeFn(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__19; lean_object* l_Lean_ppGroup_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_commandParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -262,13 +262,14 @@ lean_object* l_Lean_Parser_charLit_formatter___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__21; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__12; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__7; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; lean_object* l_Lean_Parser_ppDedent___boxed(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11; lean_object* l_Lean_PrettyPrinter_Formatter_push(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571_(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567_(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__11; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__20; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__11; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Parser_ppGroup_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_commandParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -284,15 +285,14 @@ lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed_ lean_object* l_Lean_Parser_many1Indent___lambda__1___closed__1; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__24; lean_object* l_Lean_Parser_notSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__1; lean_object* l_Lean_Format_getIndent(lean_object*); lean_object* l_Lean_ppLine_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___kind_stx____x40_Init_Notation___hyg_6606____closed__2; lean_object* l_Lean_Parser_many1Indent(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___boxed(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__1; extern lean_object* l_Lean_Name_hasMacroScopes___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__1; lean_object* l_Lean_Parser_notSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -313,32 +313,31 @@ extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__7; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__12; lean_object* l_Lean_ppSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12; lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__22; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__42; extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__3; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__8; lean_object* l_Lean_ppLine_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_int_sub(lean_object*, lean_object*); lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__33; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__1; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__5; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__28; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__42; lean_object* l_Lean_ppLine_formatter___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__37; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__37; lean_object* l_Lean_Parser_ppGroup(lean_object*); lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__4; lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__4; extern lean_object* l___kind_term____x40_Init_Notation___hyg_5672____closed__4; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__15; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__33; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__18; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__4; @@ -356,8 +355,9 @@ lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2; lean_object* l_Lean_Parser_notSymbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__32; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__33; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____closed__8; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9; lean_object* l_Lean_Parser_ident_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -378,6 +378,7 @@ lean_object* l_Lean_Parser___kind_term____x40_Lean_Parser_Extra___hyg_145____clo lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__25; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8; lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__16; lean_object* l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; lean_object* l_Lean_Parser_ppDedent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -389,7 +390,6 @@ lean_object* l_Lean_Parser_termParser_parenthesizer(lean_object*, lean_object*, lean_object* l_Lean_ppDedent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind___closed__1; lean_object* l_Lean_Parser_manyIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__16; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ppLine_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3236,7 +3236,7 @@ return x_90; } } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__1() { _start: { lean_object* x_1; @@ -3244,17 +3244,17 @@ x_1 = lean_mk_string("group"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__3() { _start: { lean_object* x_1; @@ -3262,17 +3262,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__3; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__3; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__5() { _start: { lean_object* x_1; @@ -3280,17 +3280,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__5; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__5; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__7() { _start: { lean_object* x_1; @@ -3298,17 +3298,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__7; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__7; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__9() { _start: { lean_object* x_1; @@ -3316,17 +3316,17 @@ x_1 = lean_mk_string("ppHardSpace"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__9; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -3336,7 +3336,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12() { _start: { lean_object* x_1; @@ -3344,17 +3344,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppHardSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14() { _start: { lean_object* x_1; @@ -3362,17 +3362,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppHardSpace_parenthesizer___boxed return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__16() { _start: { lean_object* x_1; @@ -3380,17 +3380,17 @@ x_1 = lean_mk_string("ppSpace"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__16; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18() { _start: { lean_object* x_1; @@ -3398,17 +3398,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20() { _start: { lean_object* x_1; @@ -3416,17 +3416,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppSpace_parenthesizer___boxed), 4 return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__22() { _start: { lean_object* x_1; @@ -3434,17 +3434,17 @@ x_1 = lean_mk_string("ppLine"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__22; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24() { _start: { lean_object* x_1; @@ -3452,17 +3452,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppLine_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__25() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26() { _start: { lean_object* x_1; @@ -3470,17 +3470,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppLine_parenthesizer___boxed), 4, return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__27() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__28() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__28() { _start: { lean_object* x_1; @@ -3488,17 +3488,17 @@ x_1 = lean_mk_string("ppGroup"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__29() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__28; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__28; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__30() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__30() { _start: { lean_object* x_1; @@ -3506,17 +3506,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__31() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__30; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__30; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__32() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__32() { _start: { lean_object* x_1; @@ -3524,17 +3524,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppGroup_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__33() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__33() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__32; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__32; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__34() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__34() { _start: { lean_object* x_1; @@ -3542,17 +3542,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__35() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__35() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__34; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__34; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__36() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__36() { _start: { lean_object* x_1; @@ -3560,17 +3560,17 @@ x_1 = lean_mk_string("ppIndent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__37() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__36; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__36; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__38() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__38() { _start: { lean_object* x_1; @@ -3578,17 +3578,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__39() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__39() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__38; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__38; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__40() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__40() { _start: { lean_object* x_1; @@ -3596,17 +3596,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppIndent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__41() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__40; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__40; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__42() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__42() { _start: { lean_object* x_1; @@ -3614,17 +3614,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__43() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__43() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__42; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__42; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__44() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__44() { _start: { lean_object* x_1; @@ -3632,17 +3632,17 @@ x_1 = lean_mk_string("ppDedent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__45() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__44; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__44; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__46() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__46() { _start: { lean_object* x_1; @@ -3650,17 +3650,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__47() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__47() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__46; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__46; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__48() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__48() { _start: { lean_object* x_1; @@ -3668,17 +3668,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__49() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__49() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__48; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__48; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__50() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__50() { _start: { lean_object* x_1; @@ -3686,23 +3686,23 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__51() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__51() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__50; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__50; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571_(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Parser_parserAliasesRef; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__2; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__4; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__2; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__4; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -3711,7 +3711,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__6; +x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__6; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -3720,7 +3720,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__8; +x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__8; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -3728,8 +3728,8 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__10; -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__11; +x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__10; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__11; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -3737,7 +3737,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__13; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__13; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -3745,7 +3745,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__15; +x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__15; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -3753,7 +3753,7 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); -x_25 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__17; +x_25 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__17; x_26 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_16, x_24); if (lean_obj_tag(x_26) == 0) { @@ -3761,7 +3761,7 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); -x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__19; +x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__19; x_29 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_28, x_27); if (lean_obj_tag(x_29) == 0) { @@ -3769,7 +3769,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_29, 1); lean_inc(x_30); lean_dec(x_29); -x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__21; +x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__21; x_32 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_31, x_30); if (lean_obj_tag(x_32) == 0) { @@ -3777,7 +3777,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__23; +x_34 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__23; x_35 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_34, x_16, x_33); if (lean_obj_tag(x_35) == 0) { @@ -3785,7 +3785,7 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__25; +x_37 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__25; x_38 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_34, x_37, x_36); if (lean_obj_tag(x_38) == 0) { @@ -3793,7 +3793,7 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; x_39 = lean_ctor_get(x_38, 1); lean_inc(x_39); lean_dec(x_38); -x_40 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__27; +x_40 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__27; x_41 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_34, x_40, x_39); if (lean_obj_tag(x_41) == 0) { @@ -3801,8 +3801,8 @@ lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_42 = lean_ctor_get(x_41, 1); lean_inc(x_42); lean_dec(x_41); -x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__29; -x_44 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__31; +x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__29; +x_44 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__31; x_45 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_43, x_44, x_42); if (lean_obj_tag(x_45) == 0) { @@ -3810,7 +3810,7 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; x_46 = lean_ctor_get(x_45, 1); lean_inc(x_46); lean_dec(x_45); -x_47 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__33; +x_47 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__33; x_48 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_43, x_47, x_46); if (lean_obj_tag(x_48) == 0) { @@ -3818,7 +3818,7 @@ lean_object* x_49; lean_object* x_50; lean_object* x_51; x_49 = lean_ctor_get(x_48, 1); lean_inc(x_49); lean_dec(x_48); -x_50 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__35; +x_50 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__35; x_51 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_43, x_50, x_49); if (lean_obj_tag(x_51) == 0) { @@ -3826,8 +3826,8 @@ lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_52 = lean_ctor_get(x_51, 1); lean_inc(x_52); lean_dec(x_51); -x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__37; -x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__39; +x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__37; +x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__39; x_55 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_53, x_54, x_52); if (lean_obj_tag(x_55) == 0) { @@ -3835,7 +3835,7 @@ lean_object* x_56; lean_object* x_57; lean_object* x_58; x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); lean_dec(x_55); -x_57 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__41; +x_57 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__41; x_58 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_53, x_57, x_56); if (lean_obj_tag(x_58) == 0) { @@ -3843,7 +3843,7 @@ lean_object* x_59; lean_object* x_60; lean_object* x_61; x_59 = lean_ctor_get(x_58, 1); lean_inc(x_59); lean_dec(x_58); -x_60 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__43; +x_60 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__43; x_61 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_53, x_60, x_59); if (lean_obj_tag(x_61) == 0) { @@ -3851,8 +3851,8 @@ lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_62 = lean_ctor_get(x_61, 1); lean_inc(x_62); lean_dec(x_61); -x_63 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__45; -x_64 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__47; +x_63 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__45; +x_64 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__47; x_65 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_63, x_64, x_62); if (lean_obj_tag(x_65) == 0) { @@ -3860,7 +3860,7 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; x_66 = lean_ctor_get(x_65, 1); lean_inc(x_66); lean_dec(x_65); -x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__49; +x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__49; x_68 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_63, x_67, x_66); if (lean_obj_tag(x_68) == 0) { @@ -3868,7 +3868,7 @@ lean_object* x_69; lean_object* x_70; lean_object* x_71; x_69 = lean_ctor_get(x_68, 1); lean_inc(x_69); lean_dec(x_68); -x_70 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__51; +x_70 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__51; x_71 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_63, x_70, x_69); return x_71; } @@ -4590,109 +4590,109 @@ l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__33 = _init_l lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__33); l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__34 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__34(); lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_195____closed__34); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__25(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__25); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__27(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__27); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__28(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__28); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__29(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__29); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__30(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__30); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__31(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__31); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__32(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__32); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__33(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__33); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__34(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__34); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__35(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__35); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__36(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__36); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__37(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__37); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__38(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__38); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__39(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__39); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__40(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__40); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__41(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__41); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__42(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__42); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__43(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__43); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__44(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__44); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__45(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__45); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__46(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__46); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__47(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__47); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__48(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__48); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__49(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__49); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__50 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__50(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__50); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__51 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__51(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__51); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__25(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__25); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__27(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__27); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__28(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__28); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__29(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__29); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__30(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__30); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__31(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__31); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__32(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__32); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__33(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__33); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__34(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__34); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__35(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__35); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__36(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__36); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__37(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__37); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__38(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__38); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__39(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__39); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__40(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__40); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__41(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__41); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__42(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__42); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__43(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__43); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__44(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__44); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__45(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__45); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__46(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__46); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__47(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__47); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__48(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__48); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__49(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__49); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__50 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__50(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__50); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__51 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__51(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__51); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Parser/Module.c b/stage0/stdlib/Lean/Parser/Module.c index a48f7172d9..7143818634 100644 --- a/stage0/stdlib/Lean/Parser/Module.c +++ b/stage0/stdlib/Lean/Parser/Module.c @@ -15,6 +15,7 @@ extern "C" { #endif lean_object* lean_string_push(lean_object*, uint32_t); lean_object* l_Lean_Parser_Module_import___elambda__1___closed__5; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; lean_object* l_Lean_Parser_Module_header_parenthesizer___closed__10; lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__6; lean_object* l_Lean_Parser_Module_module_formatter___closed__2; @@ -27,7 +28,6 @@ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Parser_Module_0__Lean lean_object* l_Lean_Parser_Module_updateTokens___closed__2; lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_testModuleParserAux_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__7; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserContext(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_prelude_parenthesizer___closed__2; @@ -235,6 +235,7 @@ extern lean_object* l_Lean_Parser_Level_ident_formatter___closed__1; lean_object* l_Lean_Parser_parseCommand_parse(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_header___elambda__1___closed__7; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; lean_object* l_Lean_Parser_Module_module___closed__9; lean_object* l_Lean_Parser_Error_toString(lean_object*); lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput_match__1(lean_object*); @@ -263,7 +264,6 @@ lean_object* l_Lean_Parser_symbolInfo(lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__6; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__4; lean_object* l_Lean_Parser_Module_prelude___closed__2; lean_object* l_Lean_Parser_topLevelCommandParserFn___closed__1; @@ -1237,7 +1237,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_formatter___closed__2; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1267,7 +1267,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_formatter___closed__5; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1289,7 +1289,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_formatter___closed__7; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1379,7 +1379,7 @@ static lean_object* _init_l_Lean_Parser_Module_module_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_2, 0, x_1); lean_closure_set(x_2, 1, x_1); @@ -1576,7 +1576,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_parenthesizer___closed__2; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1606,7 +1606,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_parenthesizer___closed__5; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1628,7 +1628,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_parenthesizer___closed__7; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1688,7 +1688,7 @@ static lean_object* _init_l_Lean_Parser_Module_module_parenthesizer___closed__2( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_2, 0, x_1); lean_closure_set(x_2, 1, x_1); diff --git a/stage0/stdlib/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index 97965beb7f..b6c7944bb4 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -227,7 +227,6 @@ lean_object* l_Lean_Parser_Command_macroArgSimple___closed__4; lean_object* l_Lean_Parser_Command_elab_formatter___closed__8; extern lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_macroTailCommand___closed__5; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__10; @@ -236,6 +235,7 @@ lean_object* l_Lean_Parser_Command_parserKindPrio___elambda__1(lean_object*, lea lean_object* l_Lean_Parser_Command_elabTail_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_elab__rules_formatter___closed__6; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; lean_object* l___regBuiltinParser_Lean_Parser_Term_stx_quot(lean_object*); lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__7; @@ -288,7 +288,6 @@ lean_object* l_Lean_Parser_maxSymbol___closed__6; lean_object* l_Lean_Parser_Command_optPrio___closed__2; lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__1; lean_object* l_Lean_Parser_atomicFn(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_elab___closed__3; lean_object* l___regBuiltin_Lean_Parser_Syntax_nonReserved_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_syntax_formatter___closed__1; @@ -668,6 +667,7 @@ lean_object* l_Lean_Parser_Command_parserKind_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_notationItem___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stx_quot___closed__1; lean_object* l_Lean_Parser_Command_parserKindPrio___closed__1; +extern lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_syntaxCat_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_nonReserved_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_nonReserved___closed__7; @@ -741,7 +741,6 @@ lean_object* l_Lean_Parser_precedence_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__12; -extern lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_paren_formatter___closed__2; lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_optKindPrio_parenthesizer___closed__1; @@ -894,7 +893,6 @@ lean_object* l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer(lean_object*) lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_optKind___elambda__1___closed__1; lean_object* l_Lean_Parser_toggleInsideQuotFn(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__9; @@ -940,6 +938,7 @@ lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer(lean_object*, lean_o lean_object* l_Lean_Parser_Command_infixl___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_atom_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_postfix___closed__4; +extern lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__12; lean_object* l_Lean_Parser_Command_notation___closed__2; lean_object* l_Lean_Parser_precedenceLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1238,6 +1237,7 @@ lean_object* l_Lean_Parser_Command_elab__rules_formatter___closed__1; lean_object* l_Lean_Parser_Command_prefix_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_atom___closed__2; lean_object* l_Lean_Parser_precedence___closed__2; +extern lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_parserKind___closed__2; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_optKind___closed__3; @@ -1274,10 +1274,10 @@ lean_object* l_Lean_PrettyPrinter_Formatter_suppressInsideQuot_formatter(lean_ob lean_object* l_Lean_Parser_Command_syntax___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_atom(lean_object*); lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; lean_object* l_Lean_Parser_maxSymbol___closed__4; lean_object* l_Lean_Parser_Command_elabTail___closed__5; lean_object* l___regBuiltin_Lean_Parser_Syntax_cat_formatter___closed__1; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; lean_object* l_Lean_Parser_Command_mixfixKind___closed__5; lean_object* l_Lean_Parser_Command_infix_formatter___closed__2; lean_object* l_Lean_Parser_Syntax_atom___closed__5; @@ -6390,7 +6390,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; x_2 = l_Lean_Parser_Command_mixfix_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -6773,7 +6773,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; x_2 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -7597,7 +7597,7 @@ lean_object* l_Lean_Parser_Command_notationItem_formatter(lean_object* x_1, lean _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; +x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; x_7 = l_Lean_Parser_Command_notationItem_formatter___closed__4; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -7811,7 +7811,7 @@ lean_object* l_Lean_Parser_Command_notationItem_parenthesizer(lean_object* x_1, _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; +x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; x_7 = l_Lean_Parser_Command_notationItem_parenthesizer___closed__4; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -8302,7 +8302,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -9696,7 +9696,7 @@ static lean_object* _init_l_Lean_Parser_Command_parserKindPrio_parenthesizer___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3; +x_1 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__3; x_2 = l_Lean_Parser_Level_num_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -9901,7 +9901,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_namespace_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -10708,7 +10708,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; +x_3 = l_Lean_Parser_Command_namespace_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -13008,7 +13008,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; +x_1 = l_Lean_Parser_Command_namespace_parenthesizer___closed__2; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -13719,7 +13719,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab__rules_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; +x_1 = l_Lean_Parser_Command_namespace_parenthesizer___closed__2; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/Parser/Tactic.c b/stage0/stdlib/Lean/Parser/Tactic.c index 6c7a5fe523..57ead6c5a5 100644 --- a/stage0/stdlib/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Lean/Parser/Tactic.c @@ -13,1859 +13,99 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_orelse___closed__4; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__7; -extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intro(lean_object*); -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_let_x21___closed__4; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2; -extern lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer(lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_failIfSuccess(lean_object*); -lean_object* l_Lean_Parser_Tactic_apply_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic___closed__2; -lean_object* l_Lean_Parser_Tactic_exact___closed__6; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_orelse___closed__2; lean_object* l___regBuiltin_Lean_Parser_Tactic_unknown_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_intros___closed__7; -lean_object* l_Lean_Parser_Tactic_let_x21; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__10; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_induction___closed__1; -lean_object* l_Lean_Parser_Tactic_skip_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_intros_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___closed__8; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_cases___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__2; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -lean_object* l_Lean_Parser_Tactic_show_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_match___closed__7; -lean_object* l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_locationTarget_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_match_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__2; -lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_location___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_subst_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_withIds___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_revert___closed__2; lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_let___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__6; -lean_object* l_Lean_Parser_Tactic_generalize___closed__1; -lean_object* l_Lean_Parser_Tactic_intro___closed__8; -lean_object* l_Lean_Parser_Tactic_match; -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__13; -lean_object* l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_case___closed__6; -lean_object* l_Lean_Parser_Tactic_altRHS___closed__4; lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___closed__2; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_apply___closed__2; -extern lean_object* l_Lean_Parser_Term_optType___closed__2; lean_object* l_Lean_Parser_Tactic_unknown___closed__4; -lean_object* l_Lean_Parser_Tactic_let_x21_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_letrec_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__3; -lean_object* l_Lean_Parser_Tactic_change_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__13; -extern lean_object* l_Lean_Parser_Term_letrec_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__10; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__5; -extern lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__5; -extern lean_object* l_Lean_Parser_Term_explicit___closed__2; -lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__3; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_have(lean_object*); -extern lean_object* l_Lean_Parser_Term_matchAlt___closed__3; lean_object* l_Lean_Parser_Tactic_nestedTactic; -extern lean_object* l_Lean_Parser_Term_structInst___closed__1; -lean_object* l_Lean_Parser_Tactic_let_x21___closed__1; -lean_object* l_Lean_Parser_Tactic_skip___closed__6; -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__9; -lean_object* l_Lean_Parser_Tactic_have___closed__4; -lean_object* l_Lean_Parser_Tactic_generalize___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlt___closed__6; -lean_object* l_Lean_Parser_Tactic_altRHS___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_intro___closed__9; -lean_object* l_Lean_Parser_Tactic_casesTarget___closed__6; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__12; -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_orelse___closed__1; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Term_suffices___closed__2; -extern lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_location___closed__7; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize___closed__6; -lean_object* l_Lean_Parser_Tactic_location_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__7; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__7; -lean_object* l_Lean_Parser_Tactic_have___closed__1; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__8; -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__4; -extern lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_match___closed__10; -lean_object* l_Lean_Parser_Tactic_clear_parenthesizer___closed__2; -lean_object* l_Lean_PrettyPrinter_Formatter_many_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_injection___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRule___closed__4; -lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_have_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_changeWith; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__8; -lean_object* l_Lean_Parser_Tactic_skip___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__5; -extern lean_object* l_Lean_Parser_Term_have___closed__2; -lean_object* l_Lean_Parser_Tactic_induction___closed__2; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__5; -extern lean_object* l_Lean_Parser_Term_show___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_case_formatter___closed__4; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___closed__4; -lean_object* l_Lean_Parser_Tactic_revert___closed__8; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__1; -extern lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__5; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__2; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_introMatch_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationTarget___closed__4; -lean_object* l_Lean_Parser_Tactic_intro___closed__4; -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_letrec___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__7; -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer(lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_introMatch(lean_object*); -lean_object* l_Lean_Parser_Tactic_clear_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__2; -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_refine_x21___closed__7; -lean_object* l_Lean_Parser_Tactic_refine_x21_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__8; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_apply_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_generalizingVars_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationHyp_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite___closed__6; -lean_object* l_Lean_Parser_Tactic_location___closed__3; -extern lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_subst_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed; -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_clear___closed__6; -lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__8; -extern lean_object* l_Lean_Parser_Level_hole_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlt___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__11; -lean_object* l_Lean_Parser_Tactic_inductionAlts; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_revert_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_let___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_show___elambda__1___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic___closed__1; extern lean_object* l_Lean_Parser_ident; -lean_object* l_Lean_Parser_Tactic_rwRule_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_apply_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_change___closed__4; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__2; -lean_object* l_Lean_Parser_Tactic_refine_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_usingRec___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__8; -lean_object* l_Lean_Parser_Tactic_skip___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_have_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_change_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_injection___closed__8; -lean_object* l_Lean_Parser_Tactic_changeWith___closed__5; -lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__14; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__1; -lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_apply___closed__4; -lean_object* l_Lean_Parser_Tactic_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_letrec_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6; -extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_casesTarget___closed__4; -lean_object* l_Lean_Parser_Tactic_done_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_unknown(lean_object*); -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__10; -lean_object* l_Lean_Parser_Tactic_change___closed__1; -extern lean_object* l_Lean_Parser_darrow; -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__5; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -lean_object* l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__2; -extern lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_introMatch___closed__3; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_Term_matchAlts___closed__6; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__4; -lean_object* l_Lean_Parser_Tactic_inductionAlt; -lean_object* l_Lean_Parser_Tactic_assumption_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_skip_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__4; -lean_object* l_Lean_Parser_Tactic_injection_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_usingRec___closed__1; -lean_object* l_Lean_Parser_Tactic_orelse___closed__7; -lean_object* l_Lean_Parser_Tactic_have___closed__2; -lean_object* l_Lean_Parser_Tactic_done_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_rwRule___closed__8; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__16; -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__5; -lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_injection___closed__4; -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_change_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_paren___elambda__1(lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__10; -lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___closed__5; -lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_refine___closed__5; -lean_object* l_Lean_Parser_Tactic_rwRule_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_exact___closed__1; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__5; lean_object* l_Lean_Parser_Tactic_unknown___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_change_formatter___closed__1; -lean_object* lean_array_get_size(lean_object*); -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_location___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_unknown; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_errorAtSavedPos_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__1; -extern lean_object* l_Lean_Parser_Term_syntheticHole___closed__7; -lean_object* l_Lean_Parser_Tactic_refine_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_formatter(lean_object*); -lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_focus_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_withIds___closed__2; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_show___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__13; -lean_object* l_Lean_Parser_Tactic_change___closed__9; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__14; -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_subst___closed__4; -lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_altRHS___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer(lean_object*); -extern lean_object* l___kind_term____x40_Init_Notation___hyg_4497____closed__2; -lean_object* l_Lean_Parser_Tactic_intros___closed__5; -lean_object* l_Lean_Parser_Tactic_injection_formatter___closed__5; -lean_object* l_Lean_Parser_atomicFn(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3; -extern lean_object* l___kind_term____x40_Init_Notation___hyg_2514____closed__2; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__15; -lean_object* l_Lean_Parser_Tactic_matchAlt___closed__4; -lean_object* l_Lean_Parser_Tactic_done_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_1305____closed__1; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__18; -lean_object* l_Lean_Parser_Tactic_cases___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_clear_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_change_parenthesizer___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_usingRec; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_orelse___closed__3; -lean_object* l_Lean_Parser_Tactic_clear___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_letrec_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_revert___closed__1; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_skip___closed__1; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_rwRule_formatter___closed__3; -extern lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_unknown___closed__1; -lean_object* l_Lean_Parser_Tactic_have; lean_object* l_Lean_Parser_mkAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; lean_object* l_Lean_Parser_leadingNode_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___closed__3; -extern lean_object* l_Lean_Parser_Term_let_x21_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_orelse___closed__5; -lean_object* l_Lean_Parser_Tactic_withIds; -lean_object* l_Lean_Parser_Tactic_suffices___closed__4; -lean_object* l_Lean_Parser_Tactic_usingRec_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__8; -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_revert___closed__4; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_ident_x27___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRule___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_formatter(lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTactic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_location___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_refine_x21_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_injection___closed__1; -lean_object* l_Lean_Parser_Tactic_locationHyp_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_done___closed__3; -lean_object* l_Lean_Parser_Tactic_cases___closed__1; -lean_object* l_Lean_Parser_Tactic_subst_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_usingRec_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__9; -lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_usingRec___closed__4; -lean_object* l_Lean_Parser_Tactic_withIds___closed__1; -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_intros___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRule___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__7; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_case_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_apply___closed__5; -lean_object* l_Lean_Parser_Tactic_done_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_focus___closed__2; -lean_object* l_Lean_Parser_Tactic_changeWith_formatter___closed__3; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_1305____closed__11; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_assumption___closed__4; -lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intros___closed__6; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__32; -lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_show___elambda__1___closed__3; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__13; -lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5____closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_refine_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_clear___closed__1; -lean_object* l_Lean_Parser_Tactic_exact_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_exact___closed__7; -lean_object* l_Lean_Parser_Tactic_clear___closed__2; -lean_object* l_Lean_Parser_many1Fn(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_have___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_altRHS_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_clear; -lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_case___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_traceState_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRule_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_change_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__12; -lean_object* l___regBuiltin_Lean_Parser_Tactic_change_formatter___closed__1; -lean_object* l_Lean_PrettyPrinter_Formatter_optional_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_have___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_letrec___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_subst___closed__1; -lean_object* l_Lean_Parser_Tactic_withIds_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__5; -lean_object* l_Lean_Parser_Tactic_skip_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_refine___closed__7; -lean_object* l_Lean_Parser_Tactic_induction; -lean_object* l_Lean_Parser_Tactic_refine_x21_formatter___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_done(lean_object*); -lean_object* l_Lean_Parser_Tactic_letrec___closed__4; -extern lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRule_formatter___closed__2; lean_object* l_Lean_Parser_registerAliasCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_have___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_introMatch_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__4; -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_usingRec___closed__5; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -lean_object* l_Lean_Parser_Tactic_refine_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_allGoals_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_726____closed__11; -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_skip_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_refine_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__12; -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__2; -lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_suffices_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__5; -extern lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__7; -extern lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_cases___closed__4; extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; -lean_object* l___regBuiltin_Lean_Parser_Tactic_case_formatter___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_assumption; -lean_object* l_Lean_Parser_Tactic_skip_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intros___elambda__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_let___closed__2; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_subst___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__7; -lean_object* l_Lean_Parser_Tactic_rewrite; -lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_refine_x21_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_focus___closed__4; -extern lean_object* l_Lean_Parser_Term_hole___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_formatter___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_focus(lean_object*); lean_object* l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5____closed__1; -lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_change___closed__2; -lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_unknown_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__7; -lean_object* l_Lean_Parser_Tactic_withIds_formatter___closed__2; -extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_failIfSuccess_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___closed__9; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_induction___closed__11; -lean_object* l_Lean_Parser_Tactic_traceState___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_changeWith_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_refine_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__8; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_location___closed__6; -lean_object* l_Lean_Parser_Tactic_clear___closed__3; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__6; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_generalize(lean_object*); -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_intros___closed__8; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_paren_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_errorAtSavedPos_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__12; -extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_letrec___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_refine_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_locationTarget___closed__6; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_case___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationHyp___closed__3; -extern lean_object* l_Lean_Parser_Term_structInst_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_case; -lean_object* l_Lean_Parser_Tactic_change_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_have___closed__5; -lean_object* l_Lean_Parser_Tactic_traceState___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___closed__9; -lean_object* l_Lean_Parser_Tactic_case_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_location___closed__2; -extern lean_object* l_Lean_Parser_ident___closed__2; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__5; -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_casesTarget_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_traceState___closed__3; -extern lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_introMatch___closed__5; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_allGoals; -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_formatter___closed__1; -extern lean_object* l_Lean_Parser_Term_show___closed__1; -lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__10; -lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_formatter___closed__1; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_traceState_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_refine___closed__3; -lean_object* l_Lean_Parser_Tactic_allGoals_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_allGoals___closed__7; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_let_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_optType; -extern lean_object* l_Lean_Parser_Term_tupleTail___closed__1; -lean_object* l_Lean_Parser_Tactic_cases; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer(lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_case(lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_ident_x27___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_parenthesizer(lean_object*); -extern lean_object* l_Lean_Parser_Term_sufficesDecl___closed__3; -lean_object* l_Lean_Parser_Tactic_apply_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_allGoals___closed__3; -lean_object* l_Lean_Parser_Tactic_revert_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_subst___closed__6; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__5; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_introMatch___closed__6; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7; -lean_object* l_Lean_Parser_symbolFn___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_unknown___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_let_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_assumption___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_generalize___closed__12; -lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_apply___closed__3; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_clear___closed__5; -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_generalizingVars_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_locationHyp___closed__5; -lean_object* l_Lean_Parser_Tactic_show___closed__6; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_paren_formatter___closed__1; -extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; -lean_object* l_Lean_Parser_Tactic_revert_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_revert; -lean_object* l_Lean_Parser_Tactic_letrec_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_generalize; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__3; -lean_object* l_Lean_Parser_Tactic_changeWith___closed__2; -lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__3; -extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; -lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); -lean_object* l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__2; -extern lean_object* l_Lean_Parser_Term_letDecl; -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_intros_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_refine_x21_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_usingRec___closed__3; -lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); -lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_ident_x27___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_revert(lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__9; -lean_object* l_Lean_Parser_Tactic_changeWith___closed__8; -lean_object* l_Lean_Parser_Tactic_focus___closed__1; -lean_object* l_Lean_Parser_Tactic_change___closed__8; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intros(lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__6; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_traceState___closed__2; -lean_object* l_Lean_Parser_Tactic_ident_x27___closed__3; -lean_object* l_Lean_Parser_Tactic_locationWildcard_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_location___closed__1; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_rewriteSeq; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_generalizingVars_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__9; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_focus; -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__7; -extern lean_object* l_Lean_Parser_Term_show___elambda__1___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_formatter___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_done_formatter___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_suffices_formatter(lean_object*); -extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_496____closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_case_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_intros___closed__2; -lean_object* l_Lean_Parser_Tactic_let_x21___closed__2; -lean_object* l_Lean_Parser_Tactic_changeWith_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlt___closed__1; -lean_object* l_Lean_Parser_Tactic_focus___closed__6; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__10; -lean_object* l_Lean_Parser_Tactic_changeWith___closed__1; -lean_object* l_Lean_Parser_Tactic_apply_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__4; -lean_object* l_Lean_Parser_Tactic_generalizingVars_formatter___closed__2; extern lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__3; extern lean_object* l_Lean_Parser_Term_byTactic_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_locationHyp_formatter___closed__1; -lean_object* l_Lean_Parser_optionaInfo(lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___closed__2; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1(lean_object*, lean_object*); -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__30; -lean_object* l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer(lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let_x21(lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_assumption___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_letrec_formatter(lean_object*); -extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__7; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_changeWith(lean_object*); -lean_object* l_Lean_Parser_Tactic_induction___closed__7; -lean_object* l_Lean_Parser_Tactic_revert___closed__5; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer___closed__7; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_induction_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_introMatch___closed__1; -lean_object* l_Lean_Parser_Tactic_traceState___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_skip___closed__5; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__8; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_withIds___closed__4; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_apply(lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_have_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_casesTarget_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_introMatch___closed__2; -lean_object* l_Lean_Parser_Tactic_changeWith___closed__7; -lean_object* l_Lean_Parser_Tactic_apply___closed__6; -lean_object* l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_locationTarget___closed__1; -lean_object* l_Lean_Parser_Tactic_locationTarget___closed__2; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_revert___closed__3; -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_intros___closed__1; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_orelse___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_injection___closed__6; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__6; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__5; extern lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__5; -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_errorAtSavedPosFn(lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer(lean_object*); -extern lean_object* l_Lean_Parser_mkAntiquot___closed__20; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_revert___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_let_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_ident_x27_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___closed__11; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_match_formatter___closed__1; extern lean_object* l_Lean_Parser_parserAliasesRef; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__3; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_have_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_match___closed__6; -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_casesTarget___closed__1; lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_changeWith___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_case_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_letrec___closed__1; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_suffices_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_introMatch_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__2; -extern lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__1; -extern lean_object* l_Lean_Parser_Term_match___closed__2; -lean_object* l_Lean_Parser_Tactic_cases___closed__8; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__12; -extern lean_object* l_Init_Data_Repr___instance__15___closed__1; -lean_object* l_Lean_Parser_Tactic_change_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_location___closed__4; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_show_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_have___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_locationWildcard; -lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1; -extern lean_object* l_Lean_Parser_Term_explicit_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_let___closed__1; -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_location___closed__8; -lean_object* l_Lean_Parser_Tactic_exact___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__3; -lean_object* l_Lean_Parser_Tactic_paren___closed__5; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Tactic_unknown_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_refine_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_traceState___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_let___closed__4; -lean_object* l_Lean_Parser_Tactic_let_formatter___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_change_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_locationHyp_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize___closed__13; -lean_object* l_Lean_Parser_Tactic_assumption___closed__2; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_rewriteSeq(lean_object*); -lean_object* l_Lean_Parser_Tactic_rewriteSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__8; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_location; -lean_object* l_Lean_Parser_Tactic_have___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_show_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_haveDecl___closed__5; -extern lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_ident_x27; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_altRHS; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_exact___closed__5; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__4; -lean_object* l_Lean_Parser_Tactic_altRHS_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationTarget_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Term_matchAlts___closed__4; extern lean_object* l_Lean_PrettyPrinter_formatterAttribute; -lean_object* l_Lean_Parser_Tactic_match___closed__8; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_induction___closed__10; -lean_object* l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__2; -extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_paren___closed__3; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__3; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_show_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__4; -lean_object* l_Lean_Parser_Tactic_apply_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intro___closed__7; -extern lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_suffices___closed__1; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__8; -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_show; -lean_object* l_Lean_Parser_tacticParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__14; -lean_object* l_Lean_Parser_Tactic_injection___closed__3; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_refine_x21___closed__4; -lean_object* l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_show___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_intro_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_change___closed__5; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__8; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_paren_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_revert_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_unknown_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_done_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_match___closed__9; -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_refine___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__4; -extern lean_object* l_Lean_Parser_Term_match_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_introMatch___closed__4; -lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_suffices(lean_object*); -lean_object* l_Lean_Parser_Tactic_skip___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_allGoals___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_injection___closed__5; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1(lean_object*, lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_change(lean_object*); -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter___closed__3; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_apply; -extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__2; -extern lean_object* l_Lean_Parser_mkAntiquot___closed__21; -lean_object* l_Lean_Parser_Tactic_assumption___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__9; -lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_failIfSuccess; -lean_object* l_Lean_Parser_Tactic_paren___closed__1; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_have___closed__3; -extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; -lean_object* l_Lean_Parser_Tactic_done___closed__2; -lean_object* l_Lean_Parser_Tactic_change___closed__3; lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_generalize___closed__10; -extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_match___closed__2; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_paren___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_subst___closed__3; -lean_object* l_Lean_Parser_Tactic_usingRec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_focus_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_subst_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_refine_x21___closed__1; lean_object* l_Lean_Parser_Tactic_unknown_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intros_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_suffices___closed__2; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_injection___closed__7; -lean_object* l_Lean_Parser_Tactic_locationTarget_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__9; -extern lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_revert_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__6; -lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_subst_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_case___closed__5; -lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__12; -lean_object* l_Lean_Parser_Tactic_let___closed__3; -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_withPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_subst_formatter___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic(lean_object*); -lean_object* l_Lean_Parser_Tactic_have_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intros_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_orelse; -lean_object* l_Lean_Parser_Tactic_allGoals___closed__6; -lean_object* l_Lean_Parser_Tactic_withIds___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_subst___closed__5; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_letrec___closed__4; -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_altRHS_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_subst; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_unknown_formatter___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__8; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__9; -lean_object* l___regBuiltin_Lean_Parser_Tactic_show_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__9; -lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_formatter(lean_object*); -extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_suffices___closed__5; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_intros___closed__4; -extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_461____closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_unknown_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_casesTarget_formatter___closed__3; -lean_object* l_Lean_PrettyPrinter_Formatter_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_change___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_refine_x21; -lean_object* l_Lean_Parser_sepBy1Info(lean_object*, lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_match(lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_casesTarget___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_clear_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_done___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_have___elambda__1___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_withIds___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_match___closed__4; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__6; -lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__6; -lean_object* l_Lean_Parser_sepBy1Fn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer(lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_focus_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_intros___closed__9; -lean_object* l_Lean_Parser_Tactic_withIds___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_location___closed__9; -extern lean_object* l_Lean_Parser_Term_let_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_match___closed__1; -lean_object* l_Lean_Parser_Tactic_show___closed__5; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_locationWildcard_formatter___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine_x21(lean_object*); -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_exact_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_changeWith_formatter___closed__4; -extern lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_exact_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_assumption_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_match___closed__3; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_rwRule; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__4; lean_object* l___regBuiltin_Lean_Parser_Tactic_unknown_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_refine___closed__1; -lean_object* l_Lean_Parser_Tactic_paren___closed__4; -lean_object* l_Lean_Parser_Tactic_intro_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__2; extern lean_object* l_Lean_Parser_Level_ident_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__9; -extern lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_let; -lean_object* l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer(lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__4; lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_intros_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_locationTarget___closed__3; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_refine___closed__2; -lean_object* l_Lean_Parser_Tactic_orelse_formatter___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_exact(lean_object*); -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_focus_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_show___closed__3; -lean_object* l_Lean_Parser_Tactic_location_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_1882____closed__23; -extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_case___closed__3; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__5; lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5____closed__3; -lean_object* l_Lean_Parser_Tactic_suffices___closed__3; -lean_object* l_Lean_Parser_Tactic_injection_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_clear(lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith___closed__6; extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_done_formatter___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_focus___closed__5; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__8; lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_match___closed__5; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_allGoals(lean_object*); -lean_object* l_Lean_Parser_Tactic_subst___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_induction___closed__6; -lean_object* l_Lean_Parser_Tactic_subst_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__17; -lean_object* l_Lean_Parser_Tactic_letrec___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__6; extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_693____closed__5; -lean_object* l_Lean_Parser_Tactic_orelse_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_skip_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_introMatch_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_altRHS_formatter___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_cases(lean_object*); -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_assumption_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_apply_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Tactic_unknown_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_apply___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__5; -extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_refine___closed__4; -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_casesTarget___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_formatter___closed__1; -lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_exact; -lean_object* l_Lean_Parser_Tactic_injection_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__12; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_have___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_focus_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_suffices; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_case___closed__1; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__6; -extern lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_suffices_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_injection_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_revert_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_change_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_revert_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__11; -lean_object* l_Lean_Parser_Tactic_traceState_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_revert___closed__7; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_letrec(lean_object*); -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_allGoals___closed__5; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_match_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_paren___closed__6; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__3; -lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_show_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRule_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_darrow___closed__2; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__4; -lean_object* l_Lean_Parser_Tactic_assumption_formatter___closed__2; -extern lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_locationHyp___closed__4; -lean_object* l_Lean_Parser_Tactic_casesTarget_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlt_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_usingRec_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__1; -lean_object* l_Lean_Parser_Tactic_generalizingVars; -lean_object* l_Lean_Parser_Tactic_intros_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__9; -lean_object* l_Lean_Parser_Tactic_induction___closed__3; -lean_object* l_Lean_Parser_Tactic_revert_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_case___closed__9; -lean_object* l_Lean_Parser_symbolInfo(lean_object*); -lean_object* l_Lean_Parser_Tactic_show___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__10; -extern lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_refine_x21___closed__2; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__12; -lean_object* l_Lean_Parser_Tactic_letrec; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_formatter___closed__1; extern lean_object* l_Lean_Parser_Tactic_tacticSeq; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_exact_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_case___closed__8; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_change; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__4; -lean_object* l_Lean_Parser_sepBy1Fn(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_intros_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_epsilonInfo; -lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_cases___closed__10; -lean_object* l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_assumption___closed__3; -lean_object* l_Lean_Parser_Tactic_done___closed__1; -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__11; -extern lean_object* l_Lean_Parser_Term_typeAscription___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_case_formatter___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_focus_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_locationTarget___closed__5; -lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_show_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_exact_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_altRHS___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__2; extern lean_object* l_Lean_Parser_FirstTokens_toStr___closed__2; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let(lean_object*); -lean_object* l_Lean_Parser_Tactic_case_formatter___closed__3; lean_object* l_Lean_Parser_Tactic_unknown_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_traceState_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_induction___closed__5; lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___closed__3; -extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_case___closed__2; -lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_change_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__7; -extern lean_object* l_Lean_Parser_Term_typeAscription_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_suffices_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_rwRule___closed__1; -lean_object* l_Lean_Parser_Tactic_focus_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_change___elambda__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_intro___closed__6; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_cases_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_show___closed__4; -extern lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_cases___closed__7; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__5; -extern lean_object* l_Lean_Parser_Term_matchAlts___closed__2; -lean_object* l_Lean_Parser_Tactic_done; -lean_object* l_Lean_Parser_Tactic_show_formatter___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_intros; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__3; -lean_object* l_Lean_Parser_Tactic_matchAlt_formatter___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_nestedTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__6; -extern lean_object* l_Lean_ppGoal___closed__5; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_let_x21_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_exact_formatter___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer(lean_object*); -extern lean_object* l_Lean_Parser_Level_hole___closed__1; -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__7; -lean_object* l_Lean_Parser_Tactic_subst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_clear_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_case___closed__7; -extern lean_object* l_Lean_Parser_Term_hole; -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_case_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__9; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__11; -extern lean_object* l___regBuiltin_Lean_Parser_Term_hole_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_exact___closed__4; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_paren(lean_object*); -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlt; -lean_object* l_Lean_Parser_Tactic_done___closed__4; -lean_object* l_Lean_Parser_Tactic_focus___closed__7; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__19; -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__4; -lean_object* l_String_trim(lean_object*); -lean_object* l_Lean_Parser_Tactic_allGoals_formatter___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_change_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_matchAlt_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_apply_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_apply___closed__1; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__3; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlt_formatter___closed__1; lean_object* l_Lean_Parser_nodeFn(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationWildcard_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_change_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_focus_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_locationTarget; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__5; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_assumption(lean_object*); -lean_object* l_Lean_Parser_optionalFn(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_show___closed__1; -lean_object* l_Lean_Parser_Tactic_casesTarget_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_letrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__9; -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_show___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__9; -extern lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_letrec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_injection_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_generalize___closed__7; -lean_object* l_Lean_Parser_Tactic_case_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__8; -extern lean_object* l_Lean_Parser_Term_matchAlt___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__7; lean_object* l_Lean_Parser_Tactic_unknown___closed__6; -lean_object* l_Lean_Parser_Tactic_induction___closed__4; -extern lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__6; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__5; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__30; lean_object* l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5_(lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__2; -lean_object* l_Lean_Parser_Tactic_altRHS___closed__1; -lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_induction___closed__8; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_show___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__9; -lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__1; -lean_object* l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_locationTarget_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_withIds_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_intros_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_let_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_injection; -lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__9; -lean_object* l_Lean_Parser_Tactic_exact___closed__2; -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_intro___closed__2; -lean_object* l_Lean_Parser_Tactic_exact_formatter___closed__2; -extern lean_object* l_Lean_Parser_Term_have___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_focus___closed__3; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__8; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_letrec___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlt___closed__3; -extern lean_object* l_Lean_Parser_Term_suffices_formatter___closed__4; -extern lean_object* l_Lean_Parser_Term_have_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__11; -lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_formatter(lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_formatter(lean_object*); lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); -lean_object* l_Lean_Parser_Tactic_suffices_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_cases___elambda__1(lean_object*, lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_rewrite(lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_change___closed__7; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_change_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_generalizingVars_formatter___closed__3; -extern lean_object* l_Lean_Parser_Term_matchAlt_formatter___closed__1; -extern lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter___closed__2; -extern lean_object* l_Lean_Parser_Term_matchAlts___closed__5; -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_unknown___closed__3; -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__2; -lean_object* l_Lean_Parser_Tactic_exact_formatter___closed__1; -lean_object* l_Lean_Parser_unicodeSymbolFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_refine_x21___closed__6; -lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__10; -lean_object* l_Lean_Parser_manyFn(lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__4; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_induction(lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_induction___closed__9; -lean_object* l_Lean_Parser_Tactic_locationWildcard_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite___closed__7; -lean_object* l_Lean_Parser_Tactic_allGoals___closed__4; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__11; -lean_object* l_Lean_Parser_Tactic_clear___closed__7; -lean_object* l_Lean_Parser_Tactic_intro___closed__1; -lean_object* l_Lean_Parser_Tactic_location_parenthesizer___closed__6; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__1; -lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_clear_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__7; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; -lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_done_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_refine_x21___closed__5; -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_altRHS___closed__2; -lean_object* l_Lean_Parser_Tactic_clear_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_locationHyp___closed__2; -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__1; -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__7; -extern lean_object* l_Lean_Parser_Term_show_formatter___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_skip_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_intro___closed__3; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__4; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__1; -lean_object* l_Lean_PrettyPrinter_Formatter_sepBy1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_injection_formatter___closed__2; -lean_object* l_Lean_Parser_unicodeSymbolInfo(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__7; lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_done_parenthesizer___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter(lean_object*); lean_object* l_Lean_Parser_Tactic_unknown___closed__5; -lean_object* l_Lean_Parser_Tactic_let_x21_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_orelse___closed__6; -lean_object* l_Lean_Parser_Tactic_intro___closed__5; -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__8; -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_allGoals_formatter___closed__4; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_skip(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_casesTarget; -extern lean_object* l___kind_term____x40_Init_Notation___hyg_3____closed__16; -lean_object* l_Lean_Parser_Tactic_paren_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_letrec___closed__3; -lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_done___closed__5; -lean_object* l_Lean_Parser_Tactic_letrec___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__6; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_subst(lean_object*); -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_locationHyp___closed__1; -lean_object* l_Lean_Parser_Tactic_ident_x27_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_suffices_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_skip; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_rwRule___closed__3; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_casesTarget___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlts; -lean_object* l_Lean_Parser_symbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_focus_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_refine_x21_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_match_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_let_x21___closed__5; -lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__3; -lean_object* l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlt___closed__5; -lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__3; -lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__9; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_orelse(lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__1; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_allGoals___closed__1; -lean_object* l_Lean_Parser_Tactic_traceState; -lean_object* l_Lean_Parser_Tactic_suffices_parenthesizer___closed__2; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_show(lean_object*); -lean_object* l_Lean_Parser_Tactic_subst___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_let___closed__5; -lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__10; -extern lean_object* l_Lean_ppGoal___closed__3; -lean_object* l_Lean_Parser_Tactic_show_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_let_x21___closed__3; -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_focus_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_letrec_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1(lean_object*, lean_object*); -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_traceState(lean_object*); -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__1; -lean_object* l_Lean_Parser_Tactic_have_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_change_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_locationTarget_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__7; -lean_object* l_Lean_Parser_Tactic_match_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_paren; -lean_object* l_Lean_Parser_Tactic_intro; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__8; -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_allGoals_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_locationHyp; -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_refine; -extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___closed__14; -extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__5; -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_introMatch; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__8; -lean_object* l___regBuiltin_Lean_Parser_Tactic_change_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__7; -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_done___closed__6; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_generalize___closed__5; -lean_object* l_Lean_Parser_Tactic_paren_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_letrec___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_have_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer(lean_object*); -extern lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__3; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine(lean_object*); -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_let_x21_formatter___closed__2; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__10; -lean_object* l_Lean_Parser_Tactic_rwRule___closed__5; -lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_skip___closed__4; -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_focus___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_rwRule___closed__7; -lean_object* l_Lean_Parser_Tactic_rwRule_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__2; -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_injection_formatter___closed__6; -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_done___elambda__1___closed__4; 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___regBuiltin_Lean_Parser_Tactic_done_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_refine_x21___closed__3; -lean_object* l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_show___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter___closed__1; -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__4; -extern lean_object* l_Lean_Parser_Term_let_x21___closed__2; -lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__6; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_rewrite___closed__10; -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_paren___closed__7; -lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1___closed__7; -extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_letrec___closed__5; -lean_object* l_Lean_Parser_Tactic_clear_parenthesizer___closed__1; -lean_object* l___regBuiltin_Lean_Parser_Tactic_have_formatter(lean_object*); -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__4; -lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__10; -lean_object* l_Lean_Parser_termParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__13; -lean_object* l_Lean_Parser_Tactic_match___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_let_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_injection(lean_object*); -lean_object* l_Lean_Parser_Tactic_introMatch_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3; -lean_object* l_Lean_Parser_Tactic_matchAlts___closed__6; -lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__8; -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__9; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_formatter(lean_object*); -extern lean_object* l_Lean_Parser_Term_syntheticHole; static lean_object* _init_l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5____closed__1() { _start: { @@ -1971,6814 +211,6 @@ return x_21; } } } -lean_object* l_Lean_Parser_Tactic_ident_x27___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; -x_3 = l_Lean_Parser_ident___closed__2; -x_4 = l_Lean_Parser_Level_hole___elambda__1___closed__5; -x_5 = 1; -x_6 = l_Lean_Parser_orelseFnCore(x_3, x_4, x_5, x_1, x_2); -return x_6; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_ident_x27___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_ident; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Level_hole___closed__1; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_ident_x27___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_ident_x27___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_ident_x27___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_ident_x27___closed__1; -x_2 = l_Lean_Parser_Tactic_ident_x27___closed__2; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_ident_x27() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_ident_x27___closed__3; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___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_Tactics___hyg_1305____closed__11; -x_2 = l_Lean_Parser_Tactic_intro___elambda__1___closed__1; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("intro "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__3; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_1882____closed__23; -x_2 = l_Lean_Parser_Term_explicit___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_manyFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_intro___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -x_2 = l_Lean_Parser_Tactic_intro___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_intro___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_intro___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_intro___elambda__1___closed__2; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_intro___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__4; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_explicit___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_noFirstTokenInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro___closed__1; -x_2 = l_Lean_Parser_Tactic_intro___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -x_2 = l_Lean_Parser_Tactic_intro___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_intro___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___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_intro___elambda__1___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_intro___closed__6; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intro___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro___closed__7; -x_2 = l_Lean_Parser_Tactic_intro___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_intro___closed__9; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intro(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_intro; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_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_Tactics___hyg_1305____closed__11; -x_2 = l_Lean_Parser_Tactic_intro___elambda__1___closed__1; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__30; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intro_formatter___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_many_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_intro_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_intro_formatter___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_intro_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_intro_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_intro_formatter___closed__6; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_intro_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intro_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -x_4 = l___regBuiltin_Lean_Parser_Tactic_intro_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_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_intro___elambda__1___closed__1; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__30; -x_2 = l_Lean_Parser_Term_explicit_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intro_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_Tactics___hyg_1305____closed__12; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_intro_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__5; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intro_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__12; -x_4 = l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("intros"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_intros___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_intros___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("intros "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_1882____closed__23; -x_2 = l_Lean_Parser_Tactic_ident_x27___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_manyFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_intros___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_intros___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_intros___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_intros___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_intros___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_intros___elambda__1___closed__12; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___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_ident_x27; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros___closed__2; -x_2 = l_Lean_Parser_noFirstTokenInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros___closed__1; -x_2 = l_Lean_Parser_Tactic_intros___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_intros___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_intros___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___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_intros___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_intros___closed__6; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intros___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros___closed__7; -x_2 = l_Lean_Parser_Tactic_intros___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_intros___closed__9; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intros(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_intros; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -lean_object* l_Lean_Parser_Tactic_ident_x27_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Level_ident_formatter___closed__1; -x_7 = l_Lean_Parser_Level_hole_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_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_intros___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_intros___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_ident_x27_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__30; -x_2 = l_Lean_Parser_Tactic_intros_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_formatter___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_many_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_intros_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_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_intros___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_intros_formatter___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_intros_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_intros_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_intros_formatter___closed__7; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_intros_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intros_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_intros_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -lean_object* l_Lean_Parser_Tactic_ident_x27_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Level_ident_parenthesizer___closed__1; -x_7 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_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_intros___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_ident_x27_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__30; -x_2 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_intros_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__6; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intros_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("revert"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("revert "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_1882____closed__23; -x_2 = l_Lean_Parser_ident___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1Fn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_revert___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_revert___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_revert___elambda__1___closed__12; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_ident; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_revert___closed__1; -x_2 = l_Lean_Parser_Tactic_revert___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_revert___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_revert___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___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_revert___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_revert___closed__5; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_revert___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_revert___closed__6; -x_2 = l_Lean_Parser_Tactic_revert___closed__7; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_revert___closed__8; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_revert(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_revert; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_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_revert___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__30; -x_2 = l_Lean_Parser_Level_ident_formatter___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_revert_formatter___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_many1_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_revert_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_revert_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_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_revert___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_revert_formatter___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_revert_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_revert_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_revert_formatter___closed__6; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_revert_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_revert_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_revert_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_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_revert___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2392____closed__30; -x_2 = l_Lean_Parser_Level_ident_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___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_revert___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_revert_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__5; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_revert_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("clear"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_clear___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_clear___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("clear "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_clear___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_clear___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_clear___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_clear___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_clear___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_clear___closed__1; -x_2 = l_Lean_Parser_Tactic_revert___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_clear___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_clear___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___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_clear___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_clear___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_clear___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_clear___closed__5; -x_2 = l_Lean_Parser_Tactic_clear___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_clear___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_clear(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_clear; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear_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_clear___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_clear___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_clear_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_revert_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear_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_clear___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_clear_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_clear_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_clear_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_clear_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_clear_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_clear_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_clear_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear_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_clear___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_clear_parenthesizer___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_clear___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_clear_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_clear_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_clear_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_clear_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_subst___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_subst___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_subst___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("subst "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__4; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__6; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_subst___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_subst___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_subst___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_subst___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_subst___elambda__1___closed__9; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__5; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_subst___closed__1; -x_2 = l_Lean_Parser_Tactic_revert___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_subst___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_subst___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___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_subst___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_subst___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_subst___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_subst___closed__5; -x_2 = l_Lean_Parser_Tactic_subst___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_subst___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_subst(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_subst; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_subst___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_subst___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_subst_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_revert_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst_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_subst___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_subst_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_subst_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_subst_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_subst_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_subst_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_subst_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_subst_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst_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_subst___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_subst_parenthesizer___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_subst___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_subst_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_subst_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_subst_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_subst_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("assumption"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_assumption___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__5; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_assumption___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_assumption___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___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_assumption___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_assumption___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_assumption___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_assumption___closed__4; -x_2 = l_Lean_Parser_Tactic_assumption___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_assumption___closed__6; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_assumption(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_assumption; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption_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_assumption___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption_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_assumption___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_assumption_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_assumption_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_assumption_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_assumption_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_assumption_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_assumption_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_assumption_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption_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_assumption___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_assumption_parenthesizer___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_assumption___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_assumption_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___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_Tactics___hyg_1305____closed__1; -x_2 = l_Lean_Parser_Tactic_apply___elambda__1___closed__1; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("apply "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_apply___elambda__1___closed__3; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_apply___elambda__1___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_apply___elambda__1___closed__5; -x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_2 = l_Lean_Parser_Tactic_apply___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_apply___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_apply___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_apply___elambda__1___closed__2; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_apply___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_apply___elambda__1___closed__4; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_apply___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_2 = l_Lean_Parser_Tactic_apply___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_apply___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___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_apply___elambda__1___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_apply___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_apply___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_apply___closed__5; -x_2 = l_Lean_Parser_Tactic_apply___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_apply___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_apply(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_apply; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply_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_Tactics___hyg_1305____closed__1; -x_2 = l_Lean_Parser_Tactic_apply___elambda__1___closed__1; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_apply___elambda__1___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_apply_formatter___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_apply_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_apply_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_apply_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_apply_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_apply_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_apply_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_apply_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply_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_apply___elambda__1___closed__1; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_apply_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__3; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_apply_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_1305____closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__5; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__1; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("exact "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__5; -x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_exact___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_exact___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__4; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_exact___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_2 = l_Lean_Parser_Tactic_exact___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_exact___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_exact___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_exact___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact___closed__5; -x_2 = l_Lean_Parser_Tactic_exact___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_exact___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_exact(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_exact; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__5; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__1; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact_formatter___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_exact_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_exact_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_exact_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_exact_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_exact_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_exact_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_4 = l___regBuiltin_Lean_Parser_Tactic_exact_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact_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_exact___elambda__1___closed__1; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_exact_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_exact_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_exact_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_exact_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; -x_4 = l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("refine"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_refine___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_refine___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("refine "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__7; -x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_refine___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_refine___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_refine___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_refine___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_refine___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_refine___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_refine___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_refine___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___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_refine___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_refine___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_refine___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine___closed__5; -x_2 = l_Lean_Parser_Tactic_refine___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_refine___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_refine; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_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_refine___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_refine___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine_formatter___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_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_refine___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_refine_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_refine_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_refine_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_refine_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_refine_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_refine_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_refine_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_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_refine___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_parenthesizer___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_refine___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_refine_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_refine_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_refine_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_refine_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("refine!"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("refine! "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__7; -x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_refine_x21___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_refine_x21___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_refine_x21___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___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_refine_x21___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_refine_x21___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_refine_x21___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine_x21___closed__5; -x_2 = l_Lean_Parser_Tactic_refine_x21___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_refine_x21___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine_x21(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_refine_x21; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21_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_refine_x21___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_refine_x21_formatter___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21_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_refine_x21___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_refine_x21_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_refine_x21_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_refine_x21_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_refine_x21_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_refine_x21_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21_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_refine_x21___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_refine_x21_parenthesizer___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_refine_x21___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_refine_x21_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_refine_x21_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("case"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_ppGoal___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_darrow___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_ident___closed__2; -x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__6; -x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_case___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_case___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_case___elambda__1___closed__11; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__5; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_darrow; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_tacticSeq; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_ident; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_case___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_case___closed__1; -x_2 = l_Lean_Parser_Tactic_case___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_case___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_case___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___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_case___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_case___closed__6; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_case___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_case___closed__7; -x_2 = l_Lean_Parser_Tactic_case___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_case___closed__9; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_case(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_case; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_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_case___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_ppGoal___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlt_formatter___closed__1; -x_2 = l_Lean_Parser_Term_byTactic_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_ident_formatter___closed__1; -x_2 = l_Lean_Parser_Tactic_case_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_case_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_case_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_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_case___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_case_formatter___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_case_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_case_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_case_formatter___closed__6; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_case_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_case_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_case_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_case_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_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_case___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Tactic_case_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_case_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___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_case___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_case_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_case_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_case_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_case_parenthesizer___closed__5; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_case_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("allGoals"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("allGoals "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_allGoals___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_allGoals___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_allGoals___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___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_allGoals___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_allGoals___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_allGoals___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_allGoals___closed__5; -x_2 = l_Lean_Parser_Tactic_allGoals___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_allGoals___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_allGoals(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_allGoals; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals_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_allGoals___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_allGoals_formatter___closed__2; -x_2 = l_Lean_Parser_Term_byTactic_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals_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_allGoals___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_allGoals_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_allGoals_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_allGoals_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_allGoals_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_allGoals_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals_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_allGoals___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_allGoals_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_allGoals___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_allGoals_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("focus"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_focus___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_focus___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("focus "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_focus___elambda__1___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_focus___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_focus___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_focus___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_focus___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_focus___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_focus___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_focus___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_focus___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___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_focus___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_focus___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_focus___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_focus___closed__5; -x_2 = l_Lean_Parser_Tactic_focus___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_focus___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_focus(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_focus___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_focus; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus_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_focus___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_focus___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_focus___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_focus_formatter___closed__2; -x_2 = l_Lean_Parser_Term_byTactic_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus_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_focus___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_focus_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_focus_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_focus_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_focus_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_focus_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_focus_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_focus_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_focus___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_focus_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus_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_focus___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_focus_parenthesizer___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_focus___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_focus_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_focus_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_focus_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_focus_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_focus___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___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_Tactics___hyg_726____closed__11; -x_2 = l_Lean_Parser_Tactic_skip___elambda__1___closed__1; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__11; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_skip___elambda__1___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_2 = l_Lean_Parser_Tactic_skip___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_skip___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_skip___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_skip___elambda__1___closed__2; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_skip___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_skip___elambda__1___closed__3; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_2 = l_Lean_Parser_Tactic_skip___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_skip___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___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_skip___elambda__1___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_skip___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_skip___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_skip___closed__4; -x_2 = l_Lean_Parser_Tactic_skip___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_skip___closed__6; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_skip(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_skip; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip_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_Tactics___hyg_726____closed__11; -x_2 = l_Lean_Parser_Tactic_skip___elambda__1___closed__1; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__11; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_skip_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_skip_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_skip_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_skip_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_skip_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_skip_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_4 = l___regBuiltin_Lean_Parser_Tactic_skip_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip_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_skip___elambda__1___closed__1; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_skip_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_skip_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_skip_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_skip_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_skip_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__12; -x_4 = l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("done"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_done___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_done___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_done___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_done___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_done___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_done___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_done___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__5; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_done___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_done___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___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_done___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_done___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_done___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_done___closed__4; -x_2 = l_Lean_Parser_Tactic_done___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_done___closed__6; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_done(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_done___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_done; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done_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_done___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_done___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_done___elambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done_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_done___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_done_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_done_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_done_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_done_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_done_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_done_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_done_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_done___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_done_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done_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_done___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_done_parenthesizer___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_done___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_done_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_done_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_done_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_done_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_done___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("traceState"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_traceState___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__5; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_traceState___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_traceState___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___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_traceState___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_traceState___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_traceState___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_traceState___closed__4; -x_2 = l_Lean_Parser_Tactic_traceState___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_traceState___closed__6; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_traceState(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_traceState; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState_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_traceState___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState_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_traceState___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_traceState_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_traceState_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_traceState_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_traceState_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_traceState_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_traceState_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_traceState_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState_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_traceState___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_traceState_parenthesizer___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_traceState___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_traceState_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("failIfSuccess"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("failIfSuccess "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_failIfSuccess___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___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_failIfSuccess___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_failIfSuccess___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_failIfSuccess___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___closed__5; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_failIfSuccess(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_failIfSuccess; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_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_failIfSuccess___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__2; -x_2 = l_Lean_Parser_Term_byTactic_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_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_failIfSuccess___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_failIfSuccess_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_failIfSuccess_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_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_failIfSuccess___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___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_failIfSuccess___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_failIfSuccess_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("generalize"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("generalize "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_ident___closed__2; -x_2 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_atomicFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__9; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___kind_term____x40_Init_Notation___hyg_2514____closed__2; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__11; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__12; -x_2 = l_Lean_Parser_ident___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; -x_2 = lean_unsigned_to_nat(51u); -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__14; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__13; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__10; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__15; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__16; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__17; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__18; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_generalize___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__19; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_ident; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_typeAscription___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___closed__2; -x_2 = l_Lean_Parser_optionaInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; -x_2 = lean_unsigned_to_nat(51u); -x_3 = l_Lean_Parser_categoryParser(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__11; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_ident; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_generalize___closed__5; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___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_generalize___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_generalize___closed__6; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___closed__3; -x_2 = l_Lean_Parser_Tactic_generalize___closed__7; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___closed__1; -x_2 = l_Lean_Parser_Tactic_generalize___closed__8; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_generalize___closed__9; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_generalize___closed__10; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_generalize___closed__11; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__13() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalize___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___closed__12; -x_2 = l_Lean_Parser_Tactic_generalize___closed__13; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_generalize___closed__14; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_generalize(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_generalize; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_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_generalize___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_ident_formatter___closed__1; -x_2 = l_Lean_Parser_Term_typeAscription_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize_formatter___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize_formatter___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___kind_term____x40_Init_Notation___hyg_2514____closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_formatter___closed__6; -x_2 = l_Lean_Parser_Level_ident_formatter___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_generalize_formatter___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_formatter___closed__5; -x_2 = l_Lean_Parser_Tactic_generalize_formatter___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_generalize_formatter___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_formatter___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_generalize_formatter___closed__10; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_generalize_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_generalize_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_generalize_formatter___closed__11; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_generalize_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalize_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_generalize_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_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_generalize___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__1; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(51u); -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_termParser_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Level_ident_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__9; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__10; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalize_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} static lean_object* _init_l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1() { _start: { @@ -9284,9073 +716,6 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("locationWildcard"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2; -x_2 = l_Lean_Parser_mkAntiquot___closed__21; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_locationWildcard___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2; -x_2 = l_Lean_Parser_mkAntiquot___closed__20; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_locationWildcard___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___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_locationWildcard___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_locationWildcard___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationWildcard___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationWildcard___closed__3; -x_2 = l_Lean_Parser_Tactic_locationWildcard___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_locationWildcard___closed__5; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("locationTarget"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_ppGoal___closed__3; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("|-"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__6; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeSymbolFn___boxed), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7; -x_3 = l_Lean_Parser_unicodeSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_locationTarget___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_locationTarget___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___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_locationTarget___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_locationTarget___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationTarget___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationTarget___closed__4; -x_2 = l_Lean_Parser_Tactic_locationTarget___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_locationTarget___closed__6; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("locationHyp"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_revert___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_locationHyp___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___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_locationHyp___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_locationHyp___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationHyp___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationHyp___closed__3; -x_2 = l_Lean_Parser_Tactic_locationHyp___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_locationHyp___closed__5; -return x_1; -} -} -lean_object* l_Lean_Parser_Tactic_location___elambda__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_3, 0); -x_7 = lean_ctor_get(x_3, 4); -lean_dec(x_7); -x_8 = !lean_is_exclusive(x_6); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_9 = lean_ctor_get(x_4, 1); -lean_inc(x_9); -x_10 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_3, 4, x_10); -x_11 = l_Init_Data_Repr___instance__15___closed__1; -x_12 = lean_string_append(x_11, x_1); -x_13 = lean_string_append(x_12, x_11); -lean_inc(x_3); -x_14 = l_Lean_Parser_symbolFnAux(x_1, x_13, x_3, x_4); -x_15 = lean_ctor_get(x_14, 3); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; uint8_t x_17; lean_object* x_18; -x_16 = l_Lean_Parser_Tactic_locationWildcard___closed__4; -x_17 = 1; -x_18 = l_Lean_Parser_orelseFnCore(x_16, x_2, x_17, x_3, x_14); -return x_18; -} -else -{ -lean_dec(x_15); -lean_dec(x_3); -lean_dec(x_2); -return x_14; -} -} -else -{ -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; -x_19 = lean_ctor_get(x_6, 0); -x_20 = lean_ctor_get(x_6, 1); -x_21 = lean_ctor_get(x_6, 2); -lean_inc(x_21); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_6); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_19); -lean_ctor_set(x_22, 1, x_20); -lean_ctor_set(x_22, 2, x_21); -x_23 = lean_ctor_get(x_4, 1); -lean_inc(x_23); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_3, 4, x_24); -lean_ctor_set(x_3, 0, x_22); -x_25 = l_Init_Data_Repr___instance__15___closed__1; -x_26 = lean_string_append(x_25, x_1); -x_27 = lean_string_append(x_26, x_25); -lean_inc(x_3); -x_28 = l_Lean_Parser_symbolFnAux(x_1, x_27, x_3, x_4); -x_29 = lean_ctor_get(x_28, 3); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -lean_object* x_30; uint8_t x_31; lean_object* x_32; -x_30 = l_Lean_Parser_Tactic_locationWildcard___closed__4; -x_31 = 1; -x_32 = l_Lean_Parser_orelseFnCore(x_30, x_2, x_31, x_3, x_28); -return x_32; -} -else -{ -lean_dec(x_29); -lean_dec(x_3); -lean_dec(x_2); -return x_28; -} -} -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_33 = lean_ctor_get(x_3, 0); -x_34 = lean_ctor_get(x_3, 1); -x_35 = lean_ctor_get(x_3, 2); -x_36 = lean_ctor_get(x_3, 3); -x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_39 = lean_ctor_get(x_3, 5); -lean_inc(x_39); -lean_inc(x_36); -lean_inc(x_35); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_3); -x_40 = lean_ctor_get(x_33, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_33, 1); -lean_inc(x_41); -x_42 = lean_ctor_get(x_33, 2); -lean_inc(x_42); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_43 = x_33; -} else { - lean_dec_ref(x_33); - x_43 = lean_box(0); -} -if (lean_is_scalar(x_43)) { - x_44 = lean_alloc_ctor(0, 3, 0); -} else { - x_44 = x_43; -} -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set(x_44, 2, x_42); -x_45 = lean_ctor_get(x_4, 1); -lean_inc(x_45); -x_46 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_46, 0, x_45); -x_47 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_47, 0, x_44); -lean_ctor_set(x_47, 1, x_34); -lean_ctor_set(x_47, 2, x_35); -lean_ctor_set(x_47, 3, x_36); -lean_ctor_set(x_47, 4, x_46); -lean_ctor_set(x_47, 5, x_39); -lean_ctor_set_uint8(x_47, sizeof(void*)*6, x_37); -lean_ctor_set_uint8(x_47, sizeof(void*)*6 + 1, x_38); -x_48 = l_Init_Data_Repr___instance__15___closed__1; -x_49 = lean_string_append(x_48, x_1); -x_50 = lean_string_append(x_49, x_48); -lean_inc(x_47); -x_51 = l_Lean_Parser_symbolFnAux(x_1, x_50, x_47, x_4); -x_52 = lean_ctor_get(x_51, 3); -lean_inc(x_52); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; uint8_t x_54; lean_object* x_55; -x_53 = l_Lean_Parser_Tactic_locationWildcard___closed__4; -x_54 = 1; -x_55 = l_Lean_Parser_orelseFnCore(x_53, x_2, x_54, x_47, x_51); -return x_55; -} -else -{ -lean_dec(x_52); -lean_dec(x_47); -lean_dec(x_2); -return x_51; -} -} -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("location"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_location___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_location___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("at "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_locationTarget___closed__5; -x_2 = l_Lean_Parser_Tactic_locationHyp___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__6; -x_2 = l_Lean_Parser_Tactic_location___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_location___elambda__1___lambda__1___boxed), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_location___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_location___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_location___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_location___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_location___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__6; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_locationTarget; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_locationHyp; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = l_Lean_Parser_orelseInfo(x_2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___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_locationWildcard; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_location___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location___closed__1; -x_2 = l_Lean_Parser_Tactic_location___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_location___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_location___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___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_location___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_location___closed__6; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_location___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location___closed__7; -x_2 = l_Lean_Parser_Tactic_location___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_location___closed__9; -return x_1; -} -} -lean_object* l_Lean_Parser_Tactic_location___elambda__1___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_Lean_Parser_Tactic_location___elambda__1___lambda__1(x_1, x_2, x_3, x_4); -lean_dec(x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("change"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("change "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_location___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_change___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_change___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_change___elambda__1___closed__12; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_optionaInfo(x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_change___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___closed__1; -x_2 = l_Lean_Parser_Tactic_change___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_change___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_change___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___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_change___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_change___closed__6; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_change___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___closed__7; -x_2 = l_Lean_Parser_Tactic_change___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_change___closed__9; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_change(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_change; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard_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_locationWildcard___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard_formatter___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_locationWildcard___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_mkAntiquot_formatter___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_locationWildcard_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_locationWildcard_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_locationWildcard_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget_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_locationTarget___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_ppGoal___closed__3; -x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget_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_locationTarget___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_locationTarget_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_locationTarget_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_locationTarget_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_locationTarget_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp_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_locationHyp___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp_formatter___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_locationHyp___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_revert_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_locationHyp_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_locationHyp_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_locationHyp_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_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_location___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_location___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationTarget_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationHyp_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location_formatter___closed__3; -x_2 = l_Lean_Parser_Tactic_location_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationWildcard_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location_formatter___closed__6; -x_2 = l_Lean_Parser_Tactic_location_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_location_formatter___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_location_formatter___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_formatter___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_location___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_location_formatter___closed__9; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_location_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_location_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_location_formatter___closed__10; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_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_change___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_location_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_change_formatter___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_change_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_change_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_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_change___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_change_formatter___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_change_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_change_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_change_formatter___closed__7; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_change_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_change_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_change_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_change_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard_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_locationWildcard___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard_parenthesizer___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_locationWildcard___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_locationWildcard_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget_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_locationTarget___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationTarget_parenthesizer___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_locationTarget___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_locationTarget_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp_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_locationHyp___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_locationHyp_parenthesizer___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_locationHyp___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_locationHyp_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_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_location___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationTarget_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationHyp_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_location_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_locationWildcard_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_location_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Tactic_location_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_location_parenthesizer___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_location_parenthesizer___closed__7; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_location_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_location___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_location_parenthesizer___closed__8; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_location_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_location_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_location_parenthesizer___closed__9; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_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_change___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_location_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_change_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Tactic_change_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_change_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_change_parenthesizer___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_change_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_change_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_change_parenthesizer___closed__6; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_change_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("changeWith"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__9; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst___closed__1; -x_2 = l_Lean_Parser_Tactic_change___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_changeWith___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change___closed__1; -x_2 = l_Lean_Parser_Tactic_changeWith___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_changeWith___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_changeWith___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___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_changeWith___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_changeWith___closed__5; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_changeWith___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_changeWith___closed__6; -x_2 = l_Lean_Parser_Tactic_changeWith___closed__7; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_changeWith___closed__8; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_changeWith(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_changeWith; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_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_changeWith___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_change_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_changeWith_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_change_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_changeWith_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_formatter___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_changeWith___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_changeWith_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_changeWith_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_changeWith_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_changeWith_formatter___closed__5; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_changeWith_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_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_changeWith___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_change_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___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_changeWith___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__5; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_changeWith_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("rwRule"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("←"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("<-"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__7; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__6; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeSymbolFn___boxed), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__9; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__10; -x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__13; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__6; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__8; -x_3 = l_Lean_Parser_unicodeSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rwRule___closed__1; -x_2 = l_Lean_Parser_optionaInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_rwRule___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rwRule___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_rwRule___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___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_rwRule___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_rwRule___closed__5; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rwRule___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___closed__6; -x_2 = l_Lean_Parser_Tactic_rwRule___closed__7; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_rwRule___closed__8; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("rwRuleSeq"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__5() { -_start: -{ -uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = 1; -x_2 = l_Lean_Parser_Tactic_rwRule___closed__7; -x_3 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__6; -x_4 = lean_box(x_1); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1Fn___boxed), 5, 3); -lean_closure_set(x_5, 0, x_4); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_3); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__5; -x_2 = l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__6; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_rwRuleSeq___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__9; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_rwRule; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_tupleTail___closed__1; -x_4 = l_Lean_Parser_sepBy1Info(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___closed__1; -x_2 = l_Lean_Parser_Term_structInstArrayRef___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInstArrayRef___closed__1; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___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_rwRuleSeq___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_rwRuleSeq___closed__5; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___closed__6; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__7; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___closed__8; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("rewrite"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("rw"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__6; -x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___closed__7; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__10; -x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__13; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__14; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__2() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__8; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___closed__1; -x_2 = l_Lean_Parser_Tactic_rewrite___closed__2; -x_3 = l_Lean_Parser_orelseInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___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_rwRule; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_change___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___closed__3; -x_2 = l_Lean_Parser_Tactic_rewrite___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rewrite___closed__5; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_rewrite___closed__6; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___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_rewrite___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_rewrite___closed__7; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rewrite___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___closed__8; -x_2 = l_Lean_Parser_Tactic_rewrite___closed__9; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_rewrite___closed__10; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_rewrite(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_rewrite; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_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_rwRule___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rwRule_formatter___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule_formatter___closed__3; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_formatter___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_rwRule___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rwRule_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rwRule_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rwRule_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_rwRule_formatter___closed__5; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_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_rewrite___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_rewrite_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rwRule_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_formatter___closed__5; -x_2 = l_Lean_Parser_Tactic_change_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_formatter___closed__4; -x_2 = l_Lean_Parser_Tactic_rewrite_formatter___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_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_rewrite___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rewrite_formatter___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rewrite_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rewrite_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_rewrite_formatter___closed__8; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rewrite_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_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_rwRule___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRule_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_rwRule___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rwRule_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__4; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_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_rewrite___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); -lean_closure_set(x_2, 0, x_1); -lean_closure_set(x_2, 1, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rwRule_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_change_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__6; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rewrite_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("rewriteSeq"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq___closed__7; -x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__10; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_change___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite___closed__3; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___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_rewriteSeq___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_rewriteSeq___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rewriteSeq___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewriteSeq___closed__5; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_rewriteSeq___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_rewriteSeq(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_rewriteSeq; -x_6 = lean_unsigned_to_nat(1u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_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_rwRuleSeq___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_formatter___closed__5; -x_2 = l_Lean_Parser_Term_tupleTail_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_sepBy1_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__2; -x_2 = l_Lean_Parser_Term_structInstArrayRef_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInstArrayRef_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___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_rwRuleSeq___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__5; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_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_rewriteSeq___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rwRuleSeq_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_change_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_formatter___closed__4; -x_2 = l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___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_rewriteSeq___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rewriteSeq_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__5; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rewriteSeq_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_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_rwRuleSeq___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__3; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___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_rwRuleSeq___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__5; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_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_rewriteSeq___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_change_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___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_rewriteSeq___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_rewriteSeq_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__5; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_rewriteSeq_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_tacticSeq; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_syntheticHole___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_altRHS___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; -x_3 = l_Lean_Parser_Term_hole___closed__4; -x_4 = l_Lean_Parser_Tactic_altRHS___elambda__1___closed__1; -x_5 = 1; -x_6 = l_Lean_Parser_orelseFnCore(x_3, x_4, x_5, x_1, x_2); -return x_6; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_syntheticHole; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_tacticSeq; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = l_Lean_Parser_orelseInfo(x_2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_hole; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_altRHS___closed__1; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_altRHS___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_altRHS___closed__2; -x_2 = l_Lean_Parser_Tactic_altRHS___closed__3; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_altRHS___closed__4; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("inductionAlt"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_ident_x27___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_manyFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_darrow___closed__2; -x_2 = l_Lean_Parser_Tactic_altRHS___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_ident_x27___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlt___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_ident_x27; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_noFirstTokenInfo(x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_darrow; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_altRHS; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlt___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___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_ident_x27; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_inductionAlt___closed__3; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___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_inductionAlt___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_inductionAlt___closed__6; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlt___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlt___closed__7; -x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_inductionAlt___closed__9; -return x_1; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_3, 0); -x_7 = lean_ctor_get(x_3, 4); -lean_dec(x_7); -x_8 = !lean_is_exclusive(x_6); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_9 = lean_ctor_get(x_4, 1); -lean_inc(x_9); -x_10 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_3, 4, x_10); -x_11 = l_Init_Data_Repr___instance__15___closed__1; -x_12 = lean_string_append(x_11, x_1); -x_13 = lean_string_append(x_12, x_11); -lean_inc(x_3); -x_14 = l_Lean_Parser_symbolFnAux(x_1, x_13, x_3, x_4); -x_15 = lean_ctor_get(x_14, 3); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; lean_object* x_17; lean_object* x_18; -x_16 = 0; -x_17 = l_Lean_Parser_Tactic_inductionAlt___closed__8; -x_18 = l_Lean_Parser_sepBy1Fn(x_16, x_17, x_2, x_3, x_14); -return x_18; -} -else -{ -lean_dec(x_15); -lean_dec(x_3); -lean_dec(x_2); -return x_14; -} -} -else -{ -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; -x_19 = lean_ctor_get(x_6, 0); -x_20 = lean_ctor_get(x_6, 1); -x_21 = lean_ctor_get(x_6, 2); -lean_inc(x_21); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_6); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_19); -lean_ctor_set(x_22, 1, x_20); -lean_ctor_set(x_22, 2, x_21); -x_23 = lean_ctor_get(x_4, 1); -lean_inc(x_23); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_3, 4, x_24); -lean_ctor_set(x_3, 0, x_22); -x_25 = l_Init_Data_Repr___instance__15___closed__1; -x_26 = lean_string_append(x_25, x_1); -x_27 = lean_string_append(x_26, x_25); -lean_inc(x_3); -x_28 = l_Lean_Parser_symbolFnAux(x_1, x_27, x_3, x_4); -x_29 = lean_ctor_get(x_28, 3); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_30 = 0; -x_31 = l_Lean_Parser_Tactic_inductionAlt___closed__8; -x_32 = l_Lean_Parser_sepBy1Fn(x_30, x_31, x_2, x_3, x_28); -return x_32; -} -else -{ -lean_dec(x_29); -lean_dec(x_3); -lean_dec(x_2); -return x_28; -} -} -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_33 = lean_ctor_get(x_3, 0); -x_34 = lean_ctor_get(x_3, 1); -x_35 = lean_ctor_get(x_3, 2); -x_36 = lean_ctor_get(x_3, 3); -x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_39 = lean_ctor_get(x_3, 5); -lean_inc(x_39); -lean_inc(x_36); -lean_inc(x_35); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_3); -x_40 = lean_ctor_get(x_33, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_33, 1); -lean_inc(x_41); -x_42 = lean_ctor_get(x_33, 2); -lean_inc(x_42); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_43 = x_33; -} else { - lean_dec_ref(x_33); - x_43 = lean_box(0); -} -if (lean_is_scalar(x_43)) { - x_44 = lean_alloc_ctor(0, 3, 0); -} else { - x_44 = x_43; -} -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set(x_44, 2, x_42); -x_45 = lean_ctor_get(x_4, 1); -lean_inc(x_45); -x_46 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_46, 0, x_45); -x_47 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_47, 0, x_44); -lean_ctor_set(x_47, 1, x_34); -lean_ctor_set(x_47, 2, x_35); -lean_ctor_set(x_47, 3, x_36); -lean_ctor_set(x_47, 4, x_46); -lean_ctor_set(x_47, 5, x_39); -lean_ctor_set_uint8(x_47, sizeof(void*)*6, x_37); -lean_ctor_set_uint8(x_47, sizeof(void*)*6 + 1, x_38); -x_48 = l_Init_Data_Repr___instance__15___closed__1; -x_49 = lean_string_append(x_48, x_1); -x_50 = lean_string_append(x_49, x_48); -lean_inc(x_47); -x_51 = l_Lean_Parser_symbolFnAux(x_1, x_50, x_47, x_4); -x_52 = lean_ctor_get(x_51, 3); -lean_inc(x_52); -if (lean_obj_tag(x_52) == 0) -{ -uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_53 = 0; -x_54 = l_Lean_Parser_Tactic_inductionAlt___closed__8; -x_55 = l_Lean_Parser_sepBy1Fn(x_53, x_54, x_2, x_47, x_51); -return x_55; -} -else -{ -lean_dec(x_52); -lean_dec(x_47); -lean_dec(x_2); -return x_51; -} -} -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("inductionAlts"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("|"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts___closed__4; -x_2 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlts___elambda__1___lambda__1___boxed), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__11; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__6; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlts___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___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_inductionAlt; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_inductionAlts___closed__2; -x_4 = l_Lean_Parser_sepBy1Info(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts___closed__5; -x_2 = l_Lean_Parser_Tactic_inductionAlts___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlts___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_inductionAlts___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___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_inductionAlts___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_inductionAlts___closed__6; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlts___elambda__1), 2, 0); -return x_1; -} -} -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_inductionAlts___closed__7; -x_2 = l_Lean_Parser_Tactic_inductionAlts___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_inductionAlts___closed__9; -return x_1; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1___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_Lean_Parser_Tactic_inductionAlts___elambda__1___lambda__1(x_1, x_2, x_3, x_4); -lean_dec(x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string(" using "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3; -x_2 = l_Lean_Parser_ident___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_Parser_Tactic_usingRec___elambda__1___closed__4; -x_4 = l_Lean_Parser_optionalFn(x_3, x_1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_ident; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_usingRec___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_usingRec___closed__2; -x_2 = l_Lean_Parser_optionaInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_usingRec___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_usingRec___closed__3; -x_2 = l_Lean_Parser_Tactic_usingRec___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_usingRec___closed__5; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string(" generalizing "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_ident___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1Fn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3; -x_2 = l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__5; -x_4 = l_Lean_Parser_optionalFn(x_3, x_1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_ident; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_generalizingVars___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalizingVars___closed__2; -x_2 = l_Lean_Parser_optionaInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalizingVars___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalizingVars___closed__3; -x_2 = l_Lean_Parser_Tactic_generalizingVars___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_generalizingVars___closed__5; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("induction"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("induction "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalizingVars___closed__4; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_usingRec___closed__4; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__13; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_induction___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_induction___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_induction___elambda__1___closed__14; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlts; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_optionaInfo(x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___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_generalizingVars; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_induction___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___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_usingRec; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_induction___closed__3; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlt___closed__3; -x_2 = l_Lean_Parser_Tactic_induction___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction___closed__1; -x_2 = l_Lean_Parser_Tactic_induction___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_induction___closed__6; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_induction___closed__7; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___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_induction___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_induction___closed__8; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__10() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_induction___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction___closed__9; -x_2 = l_Lean_Parser_Tactic_induction___closed__10; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_induction___closed__11; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_induction(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_induction; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_usingRec_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_usingRec_formatter___closed__1; -x_2 = l_Lean_Parser_Level_ident_formatter___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_usingRec_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Parser_Tactic_usingRec_formatter___closed__2; -x_7 = l_Lean_PrettyPrinter_Formatter_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Level_ident_formatter___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_many1_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalizingVars_formatter___closed__1; -x_2 = l_Lean_Parser_Tactic_generalizingVars_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_generalizingVars_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Parser_Tactic_generalizingVars_formatter___closed__3; -x_7 = l_Lean_PrettyPrinter_Formatter_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Term_syntheticHole_formatter___closed__1; -x_2 = l_Lean_Parser_Term_byTactic_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_altRHS_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l___regBuiltin_Lean_Parser_Term_hole_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_altRHS_formatter___closed__1; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_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_inductionAlt___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_formatter___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_many_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_altRHS_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlt_formatter___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros_formatter___closed__3; -x_2 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_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_inductionAlt___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__7; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_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_inductionAlts___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2048____closed__32; -x_2 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlt_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__4; -x_2 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_sepBy1_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__4; -x_2 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_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_inductionAlts___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlts_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_inductionAlts_formatter___closed__8; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_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_induction___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlts_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_induction_formatter___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalizingVars_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction_formatter___closed__5; -x_2 = l_Lean_Parser_Tactic_induction_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_usingRec_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction_formatter___closed__7; -x_2 = l_Lean_Parser_Tactic_induction_formatter___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_tupleTail_formatter___closed__3; -x_2 = l_Lean_Parser_Tactic_induction_formatter___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_induction_formatter___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_formatter___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_induction_formatter___closed__10; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_induction_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_induction_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_induction_formatter___closed__11; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_induction_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_induction_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_induction_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -lean_object* l_Lean_Parser_Tactic_usingRec_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; -x_7 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_generalizingVars_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__2; -x_7 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_altRHS_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_altRHS_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_altRHS_parenthesizer___closed__1; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_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_inductionAlt___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_altRHS_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_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_inductionAlt___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__7; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_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_inductionAlts___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlt_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__6; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_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_induction___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlts_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalizingVars_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_usingRec_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__6; -x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__9; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_induction_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__10; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_induction_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("casesTarget"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__10; -x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_casesTarget___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__7; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_generalize___closed__3; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_casesTarget___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_casesTarget___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___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_casesTarget___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_casesTarget___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_casesTarget___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_casesTarget___closed__4; -x_2 = l_Lean_Parser_Tactic_casesTarget___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_casesTarget___closed__6; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("cases"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("cases "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__8() { -_start: -{ -uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = 0; -x_2 = l_Lean_Parser_Tactic_casesTarget___closed__5; -x_3 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__6; -x_4 = lean_box(x_1); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1Fn___boxed), 5, 3); -lean_closure_set(x_5, 0, x_4); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_3); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_usingRec___closed__4; -x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_cases___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_cases___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_cases___elambda__1___closed__13; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___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_casesTarget; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_tupleTail___closed__1; -x_4 = l_Lean_Parser_sepBy1Info(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___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_usingRec; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_induction___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___closed__2; -x_2 = l_Lean_Parser_Tactic_cases___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___closed__1; -x_2 = l_Lean_Parser_Tactic_cases___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_cases___closed__5; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_cases___closed__6; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___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_cases___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_cases___closed__7; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_cases___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases___closed__8; -x_2 = l_Lean_Parser_Tactic_cases___closed__9; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_cases___closed__10; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_cases(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_cases; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget_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_casesTarget___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_formatter___closed__5; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget_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_casesTarget___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_casesTarget_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_casesTarget_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_casesTarget_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_casesTarget_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_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_cases___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_casesTarget_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases_formatter___closed__3; -x_2 = l_Lean_Parser_Term_tupleTail_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_sepBy1_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction_formatter___closed__7; -x_2 = l_Lean_Parser_Tactic_induction_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases_formatter___closed__4; -x_2 = l_Lean_Parser_Tactic_cases_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_cases_formatter___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_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_cases___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_cases_formatter___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_cases_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_cases_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_cases_formatter___closed__8; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_cases_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_cases_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_cases_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget_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_casesTarget___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_casesTarget_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_casesTarget___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_casesTarget_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__3; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_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_cases___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_casesTarget_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__6; -x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_cases_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_cases___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_cases_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__7; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_cases_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_matchAlt___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_matchAlt___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlt___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlt___closed__3; -x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlt___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_matchAlt___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___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_matchAlt___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_matchAlt___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_matchAlt___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlt___closed__4; -x_2 = l_Lean_Parser_Tactic_matchAlt___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_matchAlt___closed__6; -return x_1; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_3, 0); -x_7 = lean_ctor_get(x_3, 4); -lean_dec(x_7); -x_8 = !lean_is_exclusive(x_6); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_9 = lean_ctor_get(x_4, 1); -lean_inc(x_9); -x_10 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_3, 4, x_10); -x_11 = l_Init_Data_Repr___instance__15___closed__1; -x_12 = lean_string_append(x_11, x_1); -x_13 = lean_string_append(x_12, x_11); -lean_inc(x_3); -x_14 = l_Lean_Parser_symbolFnAux(x_1, x_13, x_3, x_4); -x_15 = lean_ctor_get(x_14, 3); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; lean_object* x_17; lean_object* x_18; -x_16 = 0; -x_17 = l_Lean_Parser_Tactic_matchAlt___closed__5; -x_18 = l_Lean_Parser_sepBy1Fn(x_16, x_17, x_2, x_3, x_14); -return x_18; -} -else -{ -lean_dec(x_15); -lean_dec(x_3); -lean_dec(x_2); -return x_14; -} -} -else -{ -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; -x_19 = lean_ctor_get(x_6, 0); -x_20 = lean_ctor_get(x_6, 1); -x_21 = lean_ctor_get(x_6, 2); -lean_inc(x_21); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_6); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_19); -lean_ctor_set(x_22, 1, x_20); -lean_ctor_set(x_22, 2, x_21); -x_23 = lean_ctor_get(x_4, 1); -lean_inc(x_23); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_3, 4, x_24); -lean_ctor_set(x_3, 0, x_22); -x_25 = l_Init_Data_Repr___instance__15___closed__1; -x_26 = lean_string_append(x_25, x_1); -x_27 = lean_string_append(x_26, x_25); -lean_inc(x_3); -x_28 = l_Lean_Parser_symbolFnAux(x_1, x_27, x_3, x_4); -x_29 = lean_ctor_get(x_28, 3); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_30 = 0; -x_31 = l_Lean_Parser_Tactic_matchAlt___closed__5; -x_32 = l_Lean_Parser_sepBy1Fn(x_30, x_31, x_2, x_3, x_28); -return x_32; -} -else -{ -lean_dec(x_29); -lean_dec(x_3); -lean_dec(x_2); -return x_28; -} -} -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_33 = lean_ctor_get(x_3, 0); -x_34 = lean_ctor_get(x_3, 1); -x_35 = lean_ctor_get(x_3, 2); -x_36 = lean_ctor_get(x_3, 3); -x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_39 = lean_ctor_get(x_3, 5); -lean_inc(x_39); -lean_inc(x_36); -lean_inc(x_35); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_3); -x_40 = lean_ctor_get(x_33, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_33, 1); -lean_inc(x_41); -x_42 = lean_ctor_get(x_33, 2); -lean_inc(x_42); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_43 = x_33; -} else { - lean_dec_ref(x_33); - x_43 = lean_box(0); -} -if (lean_is_scalar(x_43)) { - x_44 = lean_alloc_ctor(0, 3, 0); -} else { - x_44 = x_43; -} -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set(x_44, 2, x_42); -x_45 = lean_ctor_get(x_4, 1); -lean_inc(x_45); -x_46 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_46, 0, x_45); -x_47 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_47, 0, x_44); -lean_ctor_set(x_47, 1, x_34); -lean_ctor_set(x_47, 2, x_35); -lean_ctor_set(x_47, 3, x_36); -lean_ctor_set(x_47, 4, x_46); -lean_ctor_set(x_47, 5, x_39); -lean_ctor_set_uint8(x_47, sizeof(void*)*6, x_37); -lean_ctor_set_uint8(x_47, sizeof(void*)*6 + 1, x_38); -x_48 = l_Init_Data_Repr___instance__15___closed__1; -x_49 = lean_string_append(x_48, x_1); -x_50 = lean_string_append(x_49, x_48); -lean_inc(x_47); -x_51 = l_Lean_Parser_symbolFnAux(x_1, x_50, x_47, x_4); -x_52 = lean_ctor_get(x_51, 3); -lean_inc(x_52); -if (lean_obj_tag(x_52) == 0) -{ -uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_53 = 0; -x_54 = l_Lean_Parser_Tactic_matchAlt___closed__5; -x_55 = l_Lean_Parser_sepBy1Fn(x_53, x_54, x_2, x_47, x_51); -return x_55; -} -else -{ -lean_dec(x_52); -lean_dec(x_47); -lean_dec(x_2); -return x_51; -} -} -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts___closed__2; -x_2 = l_Lean_Parser_Term_matchAlts___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts___closed__4; -x_2 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_matchAlts___elambda__1___lambda__1___boxed), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__7; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__1; -x_2 = l_Lean_Parser_Term_matchAlts___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___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_matchAlt; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_matchAlts___closed__1; -x_4 = l_Lean_Parser_sepBy1Info(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts___closed__5; -x_2 = l_Lean_Parser_Tactic_matchAlts___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlts___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_matchAlts___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___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_matchAlts___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_matchAlts___closed__5; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_matchAlts___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlts___closed__6; -x_2 = l_Lean_Parser_Tactic_matchAlts___closed__7; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_matchAlts___closed__8; -return x_1; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlts___elambda__1___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_Lean_Parser_Tactic_matchAlts___elambda__1___lambda__1(x_1, x_2, x_3, x_4); -lean_dec(x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_match___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_match___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_match___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_match___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_match___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_matchAlts___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_optType___closed__2; -x_2 = l_Lean_Parser_Tactic_match___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_match___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_match___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_match___elambda__1___closed__4; -x_2 = l_Lean_Parser_Tactic_match___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_match___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_match___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_match___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_match___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_match___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_match___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_match___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___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_matchAlts; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_structInst___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_optType; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_match___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_match___closed__2; -x_2 = l_Lean_Parser_Tactic_match___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_match___closed__1; -x_2 = l_Lean_Parser_Tactic_match___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_match___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_match___closed__5; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_match___closed__6; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___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_match___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_match___closed__7; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_match___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_match___closed__8; -x_2 = l_Lean_Parser_Tactic_match___closed__9; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_match___closed__10; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_match(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_match___elambda__1___closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_match; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_matchAlt___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_tupleTail_formatter___closed__3; -x_2 = l_Lean_Parser_Tactic_inductionAlt_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt_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_matchAlt___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_matchAlt_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlt_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_matchAlt_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_matchAlt_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_matchAlt_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlts_formatter___closed__2; -x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_sepBy1_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__4; -x_2 = l_Lean_Parser_Tactic_matchAlts_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_matchAlts_formatter___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_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_matchAlts___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_matchAlts_formatter___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlts_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_matchAlts_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_matchAlts_formatter___closed__6; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_match___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_match___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_match___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_matchAlts_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_match_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_match_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_match_formatter___closed__4; -x_2 = l_Lean_Parser_Tactic_match_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_match_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_match_formatter___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_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_match___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_match_formatter___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_match_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_match_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_match_formatter___closed__8; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_match_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_match_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_match_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_match___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_match_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt_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_matchAlt___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlt_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_matchAlt___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlt_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__3; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_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_matchAlts___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_matchAlt_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__6; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_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_match___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_matchAlts_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_match_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Tactic_match_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_match_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_match_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_match_parenthesizer___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_match_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_match___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_match_parenthesizer___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_match_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_match_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_match_parenthesizer___closed__7; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_match_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_match___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("introMatch"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_matchAlts___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__7; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_matchAlts; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_intro___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_introMatch___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_introMatch___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___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_introMatch___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_introMatch___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_introMatch___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_introMatch___closed__4; -x_2 = l_Lean_Parser_Tactic_introMatch___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_introMatch___closed__6; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_introMatch(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_introMatch; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch_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_introMatch___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_intro_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_match_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch_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_introMatch___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_introMatch_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_introMatch_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_introMatch_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_introMatch_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_introMatch_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch_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_introMatch___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_match_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_introMatch_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_introMatch___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_introMatch_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__3; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_introMatch_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1Fn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst___elambda__1___closed__5; -x_2 = l_Lean_Parser_Tactic_withIds___elambda__1___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_withIds___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_Parser_Tactic_withIds___elambda__1___closed__2; -x_4 = l_Lean_Parser_optionalFn(x_3, x_1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst___closed__1; -x_2 = l_Lean_Parser_Tactic_intros___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_withIds___closed__1; -x_2 = l_Lean_Parser_optionaInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_withIds___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_withIds___closed__2; -x_2 = l_Lean_Parser_Tactic_withIds___closed__3; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_withIds___closed__4; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("injection"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Tactic_injection___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_injection___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("injection "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_2 = l_Lean_Parser_Tactic_withIds___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__7; -x_2 = l_Lean_Parser_Tactic_injection___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_injection___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_injection___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_injection___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_injection___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_injection___elambda__1___closed__11; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__6; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_withIds; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_injection___closed__1; -x_2 = l_Lean_Parser_Tactic_injection___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_injection___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_injection___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___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_injection___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_injection___closed__5; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_injection___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_injection___closed__6; -x_2 = l_Lean_Parser_Tactic_injection___closed__7; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_injection___closed__8; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_injection(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_injection; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_formatter___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_many1_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_structInst_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_withIds_formatter___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_withIds_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Parser_Tactic_withIds_formatter___closed__2; -x_7 = l_Lean_PrettyPrinter_Formatter_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_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_injection___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_injection___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_formatter___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_withIds_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_injection_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_injection_formatter___closed__2; -x_2 = l_Lean_Parser_Tactic_injection_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_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_injection___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_injection_formatter___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_injection_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_injection_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_injection_formatter___closed__6; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_injection_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_injection_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_injection_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2; -x_7 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_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_injection___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_withIds_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___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_injection___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_injection_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__5; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_injection_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___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_5739____closed__7; -x_2 = l_Lean_Parser_Tactic_paren___elambda__1___closed__1; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___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_tacticSeq; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Level_paren___elambda__1___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_2); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__3; -x_2 = l_Lean_Parser_Tactic_paren___elambda__1___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_2 = l_Lean_Parser_Tactic_paren___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_paren___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_paren___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_paren___elambda__1___closed__2; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_paren___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_tacticSeq; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_antiquotNestedExpr___closed__3; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__1; -x_2 = l_Lean_Parser_Tactic_paren___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_2 = l_Lean_Parser_Tactic_paren___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_paren___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___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_paren___elambda__1___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_paren___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_paren___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_paren___closed__5; -x_2 = l_Lean_Parser_Tactic_paren___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_paren___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_paren(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_paren; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_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_5739____closed__7; -x_2 = l_Lean_Parser_Tactic_paren___elambda__1___closed__1; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_byTactic_formatter___closed__3; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; -x_2 = l_Lean_Parser_Tactic_paren_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_paren_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_paren_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_paren_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_paren_formatter___closed__4; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_paren_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_paren_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_4 = l___regBuiltin_Lean_Parser_Tactic_paren_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_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_paren___elambda__1___closed__1; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_paren_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__4; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_paren_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__3; -x_4 = l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} static lean_object* _init_l_Lean_Parser_Tactic_nestedTactic() { _start: { @@ -18444,1930 +809,6 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___kind_term____x40_Init_Notation___hyg_4497____closed__2; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Init_Data_Repr___instance__15___closed__1; -x_2 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; -x_2 = l_Init_Data_Repr___instance__15___closed__1; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_orelse___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = lean_unsigned_to_nat(2u); -x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); -x_5 = lean_ctor_get(x_4, 3); -lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; -x_9 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__3; -lean_inc(x_1); -x_10 = l_Lean_Parser_symbolFnAux(x_8, x_9, x_1, x_4); -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_13 = lean_unsigned_to_nat(1u); -x_14 = l_Lean_Parser_categoryParser___elambda__1(x_12, x_13, x_1, x_10); -x_15 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_16 = l_Lean_Parser_ParserState_mkTrailingNode(x_14, x_15, x_7); -lean_dec(x_7); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; -lean_dec(x_11); -lean_dec(x_1); -x_17 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_18 = l_Lean_Parser_ParserState_mkTrailingNode(x_10, x_17, x_7); -lean_dec(x_7); -return x_18; -} -} -else -{ -lean_dec(x_5); -lean_dec(x_1); -return x_4; -} -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_2 = lean_unsigned_to_nat(1u); -x_3 = l_Lean_Parser_categoryParser(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___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_orelse___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_orelse___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_2 = l_Lean_Parser_Tactic_orelse___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_orelse___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_orelse___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_orelse___closed__5; -x_2 = l_Lean_Parser_Tactic_orelse___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_orelse___closed__7; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_orelse(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_4 = 0; -x_5 = l_Lean_Parser_Tactic_orelse; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___kind_term____x40_Init_Notation___hyg_4497____closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_orelse_formatter___closed__1; -x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_orelse_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_6 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_7 = lean_unsigned_to_nat(2u); -x_8 = l_Lean_Parser_Tactic_orelse_formatter___closed__2; -x_9 = l_Lean_PrettyPrinter_Formatter_trailingNode_formatter(x_6, x_7, x_8, x_1, x_2, x_3, x_4, x_5); -return x_9; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_orelse_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_orelse_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_orelse_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(1u); -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_tacticParser_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_6 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_7 = lean_unsigned_to_nat(2u); -x_8 = l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2; -x_9 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_6, x_7, x_8, x_1, x_2, x_3, x_4, x_5); -return x_9; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_orelse_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_726____closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_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___kind_tactic____x40_Init_Tactics___hyg_461____closed__2; -x_2 = l_Lean_Parser_Tactic_have___elambda__1___closed__1; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_have___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_have___elambda__1___closed__3; -x_2 = l_Lean_Parser_Term_haveDecl___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_2 = l_Lean_Parser_Tactic_have___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_have___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_have___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_have___elambda__1___closed__2; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_have___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_2 = l_Lean_Parser_Term_have___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_have___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___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_have___elambda__1___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_have___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_have___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_have___closed__3; -x_2 = l_Lean_Parser_Tactic_have___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_have___closed__5; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_have(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_have; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_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___kind_tactic____x40_Init_Tactics___hyg_461____closed__2; -x_2 = l_Lean_Parser_Tactic_have___elambda__1___closed__1; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_have_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_have_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_have_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_have_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_have_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_have_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_have_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_have_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have_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_have___elambda__1___closed__1; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_have_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_have_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_have_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_have_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_have_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_have_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Tactics___hyg_508____closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_suffices___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__4; -x_2 = l_Lean_Parser_Term_sufficesDecl___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_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); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_suffices___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__7; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_suffices___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_suffices___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___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_suffices___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_suffices___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_suffices___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_suffices___closed__3; -x_2 = l_Lean_Parser_Tactic_suffices___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_suffices___closed__5; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_suffices(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_suffices; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_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_Term_suffices___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices_formatter___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_suffices___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_suffices_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_suffices_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_suffices_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_suffices_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_suffices_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_suffices_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_suffices_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_suffices_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices_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_suffices___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_suffices_parenthesizer___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_suffices___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_suffices_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_suffices_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_suffices_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_suffices_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_suffices_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_show___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_show___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_show___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_show___elambda__1___closed__7; -x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_show___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_show___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_show___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_show___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_show___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_show___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_antiquotNestedExpr___closed__2; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_show___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_show___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_show___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_show___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___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_show___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_show___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_show___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_show___closed__4; -x_2 = l_Lean_Parser_Tactic_show___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_show___closed__6; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_show(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_show___elambda__1___closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_show; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_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_Term_show___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_show___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_show_formatter___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show_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_show___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_show_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_show_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_show_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_show_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_show_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_show_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_show_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_show___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_show_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show_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_show___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_show_parenthesizer___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_show___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_show_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_show_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_show_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_show_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_show___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_496____closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_let___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_496____closed__1; -x_2 = l_Lean_Parser_Tactic_let___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_let___elambda__1___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_letDecl; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_let___elambda__1___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_let___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_let___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_let___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_let___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_let___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_let___elambda__1___closed__7; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_let___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_let___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_let___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___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_let___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_let___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_let___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_let___closed__3; -x_2 = l_Lean_Parser_Tactic_let___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_let___closed__5; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_let___elambda__1___closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_let; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_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_Array_myMacro____x40_Init_Data_Array_Macros___hyg_496____closed__1; -x_2 = l_Lean_Parser_Tactic_let___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_formatter___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_let___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_let_formatter___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_let_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_let_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_let_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_let_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_let_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_let___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_let_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_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_let___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_parenthesizer___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_let___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_let_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_let_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_let_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_let_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_let_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_let___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_let_x21___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_let_x21___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_let_x21___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_letDecl; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_let_x21___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__7; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_let_x21___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_let_x21___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___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_let_x21___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_let_x21___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_let_x21___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_let_x21___closed__3; -x_2 = l_Lean_Parser_Tactic_let_x21___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_let_x21___closed__5; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let_x21(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_let_x21; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_let_x21___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21_formatter___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_let_x21___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_let_x21_formatter___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_let_x21_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_let_x21_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_let_x21_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_let_x21_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21_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_let_x21___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_let_x21_parenthesizer___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_let_x21___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_let_parenthesizer___closed__3; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_let_x21_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_let_x21_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Parser_Term_letrec___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_letrec___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_letrec___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_Tactic_letrec___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__5; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_letrec___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_letrec___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___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_letrec___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_letrec___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_letrec___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_letrec___closed__3; -x_2 = l_Lean_Parser_Tactic_letrec___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_letrec___closed__5; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_letrec(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -x_3 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__1; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_letrec; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_letrec___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec_formatter___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_letrec___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_letrec_formatter___closed__7; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_letrec_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_letrec_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_letrec_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_letrec_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_letrec_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_letrec_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_letrec_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec_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_letrec___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_letrec_parenthesizer___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_letrec___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_letrec_parenthesizer___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_letrec_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_letrec_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_letrec_parenthesizer___closed__2; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_letrec_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_letrec___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Parser_Term(lean_object*); static bool _G_initialized = false; @@ -20390,1200 +831,6 @@ lean_mark_persistent(l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg res = l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Tactic_ident_x27___closed__1 = _init_l_Lean_Parser_Tactic_ident_x27___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_ident_x27___closed__1); -l_Lean_Parser_Tactic_ident_x27___closed__2 = _init_l_Lean_Parser_Tactic_ident_x27___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_ident_x27___closed__2); -l_Lean_Parser_Tactic_ident_x27___closed__3 = _init_l_Lean_Parser_Tactic_ident_x27___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_ident_x27___closed__3); -l_Lean_Parser_Tactic_ident_x27 = _init_l_Lean_Parser_Tactic_ident_x27(); -lean_mark_persistent(l_Lean_Parser_Tactic_ident_x27); -l_Lean_Parser_Tactic_intro___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__1); -l_Lean_Parser_Tactic_intro___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__2); -l_Lean_Parser_Tactic_intro___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__3); -l_Lean_Parser_Tactic_intro___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__4); -l_Lean_Parser_Tactic_intro___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__5); -l_Lean_Parser_Tactic_intro___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__6); -l_Lean_Parser_Tactic_intro___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__7); -l_Lean_Parser_Tactic_intro___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__8); -l_Lean_Parser_Tactic_intro___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__9); -l_Lean_Parser_Tactic_intro___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___elambda__1___closed__10); -l_Lean_Parser_Tactic_intro___closed__1 = _init_l_Lean_Parser_Tactic_intro___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__1); -l_Lean_Parser_Tactic_intro___closed__2 = _init_l_Lean_Parser_Tactic_intro___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__2); -l_Lean_Parser_Tactic_intro___closed__3 = _init_l_Lean_Parser_Tactic_intro___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__3); -l_Lean_Parser_Tactic_intro___closed__4 = _init_l_Lean_Parser_Tactic_intro___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__4); -l_Lean_Parser_Tactic_intro___closed__5 = _init_l_Lean_Parser_Tactic_intro___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__5); -l_Lean_Parser_Tactic_intro___closed__6 = _init_l_Lean_Parser_Tactic_intro___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__6); -l_Lean_Parser_Tactic_intro___closed__7 = _init_l_Lean_Parser_Tactic_intro___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__7); -l_Lean_Parser_Tactic_intro___closed__8 = _init_l_Lean_Parser_Tactic_intro___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__8); -l_Lean_Parser_Tactic_intro___closed__9 = _init_l_Lean_Parser_Tactic_intro___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__9); -l_Lean_Parser_Tactic_intro = _init_l_Lean_Parser_Tactic_intro(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro); -res = l___regBuiltinParser_Lean_Parser_Tactic_intro(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_intro_formatter___closed__1 = _init_l_Lean_Parser_Tactic_intro_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_formatter___closed__1); -l_Lean_Parser_Tactic_intro_formatter___closed__2 = _init_l_Lean_Parser_Tactic_intro_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_formatter___closed__2); -l_Lean_Parser_Tactic_intro_formatter___closed__3 = _init_l_Lean_Parser_Tactic_intro_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_formatter___closed__3); -l_Lean_Parser_Tactic_intro_formatter___closed__4 = _init_l_Lean_Parser_Tactic_intro_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_formatter___closed__4); -l_Lean_Parser_Tactic_intro_formatter___closed__5 = _init_l_Lean_Parser_Tactic_intro_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_formatter___closed__5); -l_Lean_Parser_Tactic_intro_formatter___closed__6 = _init_l_Lean_Parser_Tactic_intro_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_formatter___closed__6); -l___regBuiltin_Lean_Parser_Tactic_intro_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_intro_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_intro_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_intro_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_intro_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__1); -l_Lean_Parser_Tactic_intro_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__2); -l_Lean_Parser_Tactic_intro_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__3); -l_Lean_Parser_Tactic_intro_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__4); -l_Lean_Parser_Tactic_intro_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__5); -l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_intros___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__1); -l_Lean_Parser_Tactic_intros___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__2); -l_Lean_Parser_Tactic_intros___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__3); -l_Lean_Parser_Tactic_intros___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__4); -l_Lean_Parser_Tactic_intros___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__5); -l_Lean_Parser_Tactic_intros___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__6); -l_Lean_Parser_Tactic_intros___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__7); -l_Lean_Parser_Tactic_intros___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__8); -l_Lean_Parser_Tactic_intros___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__9); -l_Lean_Parser_Tactic_intros___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__10); -l_Lean_Parser_Tactic_intros___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__11); -l_Lean_Parser_Tactic_intros___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__12); -l_Lean_Parser_Tactic_intros___closed__1 = _init_l_Lean_Parser_Tactic_intros___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__1); -l_Lean_Parser_Tactic_intros___closed__2 = _init_l_Lean_Parser_Tactic_intros___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__2); -l_Lean_Parser_Tactic_intros___closed__3 = _init_l_Lean_Parser_Tactic_intros___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__3); -l_Lean_Parser_Tactic_intros___closed__4 = _init_l_Lean_Parser_Tactic_intros___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__4); -l_Lean_Parser_Tactic_intros___closed__5 = _init_l_Lean_Parser_Tactic_intros___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__5); -l_Lean_Parser_Tactic_intros___closed__6 = _init_l_Lean_Parser_Tactic_intros___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__6); -l_Lean_Parser_Tactic_intros___closed__7 = _init_l_Lean_Parser_Tactic_intros___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__7); -l_Lean_Parser_Tactic_intros___closed__8 = _init_l_Lean_Parser_Tactic_intros___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__8); -l_Lean_Parser_Tactic_intros___closed__9 = _init_l_Lean_Parser_Tactic_intros___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros___closed__9); -l_Lean_Parser_Tactic_intros = _init_l_Lean_Parser_Tactic_intros(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros); -res = l___regBuiltinParser_Lean_Parser_Tactic_intros(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_intros_formatter___closed__1 = _init_l_Lean_Parser_Tactic_intros_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_formatter___closed__1); -l_Lean_Parser_Tactic_intros_formatter___closed__2 = _init_l_Lean_Parser_Tactic_intros_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_formatter___closed__2); -l_Lean_Parser_Tactic_intros_formatter___closed__3 = _init_l_Lean_Parser_Tactic_intros_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_formatter___closed__3); -l_Lean_Parser_Tactic_intros_formatter___closed__4 = _init_l_Lean_Parser_Tactic_intros_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_formatter___closed__4); -l_Lean_Parser_Tactic_intros_formatter___closed__5 = _init_l_Lean_Parser_Tactic_intros_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_formatter___closed__5); -l_Lean_Parser_Tactic_intros_formatter___closed__6 = _init_l_Lean_Parser_Tactic_intros_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_formatter___closed__6); -l_Lean_Parser_Tactic_intros_formatter___closed__7 = _init_l_Lean_Parser_Tactic_intros_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_formatter___closed__7); -l___regBuiltin_Lean_Parser_Tactic_intros_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_intros_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_intros_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_intros_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_intros_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__1); -l_Lean_Parser_Tactic_intros_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__2); -l_Lean_Parser_Tactic_intros_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__3); -l_Lean_Parser_Tactic_intros_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__4); -l_Lean_Parser_Tactic_intros_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__5); -l_Lean_Parser_Tactic_intros_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__6); -l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_revert___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__1); -l_Lean_Parser_Tactic_revert___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__2); -l_Lean_Parser_Tactic_revert___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__3); -l_Lean_Parser_Tactic_revert___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__4); -l_Lean_Parser_Tactic_revert___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__5); -l_Lean_Parser_Tactic_revert___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__6); -l_Lean_Parser_Tactic_revert___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__7); -l_Lean_Parser_Tactic_revert___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__8); -l_Lean_Parser_Tactic_revert___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__9); -l_Lean_Parser_Tactic_revert___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__10); -l_Lean_Parser_Tactic_revert___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__11); -l_Lean_Parser_Tactic_revert___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__12); -l_Lean_Parser_Tactic_revert___closed__1 = _init_l_Lean_Parser_Tactic_revert___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__1); -l_Lean_Parser_Tactic_revert___closed__2 = _init_l_Lean_Parser_Tactic_revert___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__2); -l_Lean_Parser_Tactic_revert___closed__3 = _init_l_Lean_Parser_Tactic_revert___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__3); -l_Lean_Parser_Tactic_revert___closed__4 = _init_l_Lean_Parser_Tactic_revert___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__4); -l_Lean_Parser_Tactic_revert___closed__5 = _init_l_Lean_Parser_Tactic_revert___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__5); -l_Lean_Parser_Tactic_revert___closed__6 = _init_l_Lean_Parser_Tactic_revert___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__6); -l_Lean_Parser_Tactic_revert___closed__7 = _init_l_Lean_Parser_Tactic_revert___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__7); -l_Lean_Parser_Tactic_revert___closed__8 = _init_l_Lean_Parser_Tactic_revert___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert___closed__8); -l_Lean_Parser_Tactic_revert = _init_l_Lean_Parser_Tactic_revert(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert); -res = l___regBuiltinParser_Lean_Parser_Tactic_revert(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_revert_formatter___closed__1 = _init_l_Lean_Parser_Tactic_revert_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_formatter___closed__1); -l_Lean_Parser_Tactic_revert_formatter___closed__2 = _init_l_Lean_Parser_Tactic_revert_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_formatter___closed__2); -l_Lean_Parser_Tactic_revert_formatter___closed__3 = _init_l_Lean_Parser_Tactic_revert_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_formatter___closed__3); -l_Lean_Parser_Tactic_revert_formatter___closed__4 = _init_l_Lean_Parser_Tactic_revert_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_formatter___closed__4); -l_Lean_Parser_Tactic_revert_formatter___closed__5 = _init_l_Lean_Parser_Tactic_revert_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_formatter___closed__5); -l_Lean_Parser_Tactic_revert_formatter___closed__6 = _init_l_Lean_Parser_Tactic_revert_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_formatter___closed__6); -l___regBuiltin_Lean_Parser_Tactic_revert_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_revert_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_revert_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_revert_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_revert_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__1); -l_Lean_Parser_Tactic_revert_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__2); -l_Lean_Parser_Tactic_revert_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__3); -l_Lean_Parser_Tactic_revert_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__4); -l_Lean_Parser_Tactic_revert_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__5); -l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_clear___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__1); -l_Lean_Parser_Tactic_clear___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__2); -l_Lean_Parser_Tactic_clear___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__3); -l_Lean_Parser_Tactic_clear___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__4); -l_Lean_Parser_Tactic_clear___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__5); -l_Lean_Parser_Tactic_clear___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__6); -l_Lean_Parser_Tactic_clear___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__7); -l_Lean_Parser_Tactic_clear___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__8); -l_Lean_Parser_Tactic_clear___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__9); -l_Lean_Parser_Tactic_clear___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__10); -l_Lean_Parser_Tactic_clear___closed__1 = _init_l_Lean_Parser_Tactic_clear___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___closed__1); -l_Lean_Parser_Tactic_clear___closed__2 = _init_l_Lean_Parser_Tactic_clear___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___closed__2); -l_Lean_Parser_Tactic_clear___closed__3 = _init_l_Lean_Parser_Tactic_clear___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___closed__3); -l_Lean_Parser_Tactic_clear___closed__4 = _init_l_Lean_Parser_Tactic_clear___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___closed__4); -l_Lean_Parser_Tactic_clear___closed__5 = _init_l_Lean_Parser_Tactic_clear___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___closed__5); -l_Lean_Parser_Tactic_clear___closed__6 = _init_l_Lean_Parser_Tactic_clear___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___closed__6); -l_Lean_Parser_Tactic_clear___closed__7 = _init_l_Lean_Parser_Tactic_clear___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear___closed__7); -l_Lean_Parser_Tactic_clear = _init_l_Lean_Parser_Tactic_clear(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear); -res = l___regBuiltinParser_Lean_Parser_Tactic_clear(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_clear_formatter___closed__1 = _init_l_Lean_Parser_Tactic_clear_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear_formatter___closed__1); -l_Lean_Parser_Tactic_clear_formatter___closed__2 = _init_l_Lean_Parser_Tactic_clear_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear_formatter___closed__2); -l_Lean_Parser_Tactic_clear_formatter___closed__3 = _init_l_Lean_Parser_Tactic_clear_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear_formatter___closed__3); -l_Lean_Parser_Tactic_clear_formatter___closed__4 = _init_l_Lean_Parser_Tactic_clear_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_clear_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_clear_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_clear_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_clear_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_clear_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_clear_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear_parenthesizer___closed__1); -l_Lean_Parser_Tactic_clear_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_clear_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_clear_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_subst___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__1); -l_Lean_Parser_Tactic_subst___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__2); -l_Lean_Parser_Tactic_subst___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__3); -l_Lean_Parser_Tactic_subst___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__4); -l_Lean_Parser_Tactic_subst___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__5); -l_Lean_Parser_Tactic_subst___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__6); -l_Lean_Parser_Tactic_subst___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__7); -l_Lean_Parser_Tactic_subst___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__8); -l_Lean_Parser_Tactic_subst___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__9); -l_Lean_Parser_Tactic_subst___closed__1 = _init_l_Lean_Parser_Tactic_subst___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___closed__1); -l_Lean_Parser_Tactic_subst___closed__2 = _init_l_Lean_Parser_Tactic_subst___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___closed__2); -l_Lean_Parser_Tactic_subst___closed__3 = _init_l_Lean_Parser_Tactic_subst___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___closed__3); -l_Lean_Parser_Tactic_subst___closed__4 = _init_l_Lean_Parser_Tactic_subst___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___closed__4); -l_Lean_Parser_Tactic_subst___closed__5 = _init_l_Lean_Parser_Tactic_subst___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___closed__5); -l_Lean_Parser_Tactic_subst___closed__6 = _init_l_Lean_Parser_Tactic_subst___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___closed__6); -l_Lean_Parser_Tactic_subst___closed__7 = _init_l_Lean_Parser_Tactic_subst___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst___closed__7); -l_Lean_Parser_Tactic_subst = _init_l_Lean_Parser_Tactic_subst(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst); -res = l___regBuiltinParser_Lean_Parser_Tactic_subst(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_subst_formatter___closed__1 = _init_l_Lean_Parser_Tactic_subst_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst_formatter___closed__1); -l_Lean_Parser_Tactic_subst_formatter___closed__2 = _init_l_Lean_Parser_Tactic_subst_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst_formatter___closed__2); -l_Lean_Parser_Tactic_subst_formatter___closed__3 = _init_l_Lean_Parser_Tactic_subst_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst_formatter___closed__3); -l_Lean_Parser_Tactic_subst_formatter___closed__4 = _init_l_Lean_Parser_Tactic_subst_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_subst_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_subst_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_subst_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_subst_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_subst_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_subst_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst_parenthesizer___closed__1); -l_Lean_Parser_Tactic_subst_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_subst_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_subst_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__1); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__2); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__3); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__4); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__5); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__6); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__7); -l_Lean_Parser_Tactic_assumption___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__8); -l_Lean_Parser_Tactic_assumption___closed__1 = _init_l_Lean_Parser_Tactic_assumption___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___closed__1); -l_Lean_Parser_Tactic_assumption___closed__2 = _init_l_Lean_Parser_Tactic_assumption___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___closed__2); -l_Lean_Parser_Tactic_assumption___closed__3 = _init_l_Lean_Parser_Tactic_assumption___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___closed__3); -l_Lean_Parser_Tactic_assumption___closed__4 = _init_l_Lean_Parser_Tactic_assumption___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___closed__4); -l_Lean_Parser_Tactic_assumption___closed__5 = _init_l_Lean_Parser_Tactic_assumption___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___closed__5); -l_Lean_Parser_Tactic_assumption___closed__6 = _init_l_Lean_Parser_Tactic_assumption___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption___closed__6); -l_Lean_Parser_Tactic_assumption = _init_l_Lean_Parser_Tactic_assumption(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption); -res = l___regBuiltinParser_Lean_Parser_Tactic_assumption(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_assumption_formatter___closed__1 = _init_l_Lean_Parser_Tactic_assumption_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption_formatter___closed__1); -l_Lean_Parser_Tactic_assumption_formatter___closed__2 = _init_l_Lean_Parser_Tactic_assumption_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption_formatter___closed__2); -l_Lean_Parser_Tactic_assumption_formatter___closed__3 = _init_l_Lean_Parser_Tactic_assumption_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption_formatter___closed__3); -l___regBuiltin_Lean_Parser_Tactic_assumption_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_assumption_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_assumption_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_assumption_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1); -l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_apply___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__1); -l_Lean_Parser_Tactic_apply___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__2); -l_Lean_Parser_Tactic_apply___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__3); -l_Lean_Parser_Tactic_apply___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__4); -l_Lean_Parser_Tactic_apply___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__5); -l_Lean_Parser_Tactic_apply___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__6); -l_Lean_Parser_Tactic_apply___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__7); -l_Lean_Parser_Tactic_apply___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__8); -l_Lean_Parser_Tactic_apply___closed__1 = _init_l_Lean_Parser_Tactic_apply___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___closed__1); -l_Lean_Parser_Tactic_apply___closed__2 = _init_l_Lean_Parser_Tactic_apply___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___closed__2); -l_Lean_Parser_Tactic_apply___closed__3 = _init_l_Lean_Parser_Tactic_apply___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___closed__3); -l_Lean_Parser_Tactic_apply___closed__4 = _init_l_Lean_Parser_Tactic_apply___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___closed__4); -l_Lean_Parser_Tactic_apply___closed__5 = _init_l_Lean_Parser_Tactic_apply___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___closed__5); -l_Lean_Parser_Tactic_apply___closed__6 = _init_l_Lean_Parser_Tactic_apply___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___closed__6); -l_Lean_Parser_Tactic_apply___closed__7 = _init_l_Lean_Parser_Tactic_apply___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply___closed__7); -l_Lean_Parser_Tactic_apply = _init_l_Lean_Parser_Tactic_apply(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply); -res = l___regBuiltinParser_Lean_Parser_Tactic_apply(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_apply_formatter___closed__1 = _init_l_Lean_Parser_Tactic_apply_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply_formatter___closed__1); -l_Lean_Parser_Tactic_apply_formatter___closed__2 = _init_l_Lean_Parser_Tactic_apply_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply_formatter___closed__2); -l_Lean_Parser_Tactic_apply_formatter___closed__3 = _init_l_Lean_Parser_Tactic_apply_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply_formatter___closed__3); -l_Lean_Parser_Tactic_apply_formatter___closed__4 = _init_l_Lean_Parser_Tactic_apply_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_apply_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_apply_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_apply_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_apply_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_apply_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply_parenthesizer___closed__1); -l_Lean_Parser_Tactic_apply_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply_parenthesizer___closed__2); -l_Lean_Parser_Tactic_apply_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_apply_parenthesizer___closed__3); -l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_exact___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__1); -l_Lean_Parser_Tactic_exact___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__2); -l_Lean_Parser_Tactic_exact___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__3); -l_Lean_Parser_Tactic_exact___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__4); -l_Lean_Parser_Tactic_exact___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__5); -l_Lean_Parser_Tactic_exact___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__6); -l_Lean_Parser_Tactic_exact___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__7); -l_Lean_Parser_Tactic_exact___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__8); -l_Lean_Parser_Tactic_exact___closed__1 = _init_l_Lean_Parser_Tactic_exact___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__1); -l_Lean_Parser_Tactic_exact___closed__2 = _init_l_Lean_Parser_Tactic_exact___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__2); -l_Lean_Parser_Tactic_exact___closed__3 = _init_l_Lean_Parser_Tactic_exact___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__3); -l_Lean_Parser_Tactic_exact___closed__4 = _init_l_Lean_Parser_Tactic_exact___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__4); -l_Lean_Parser_Tactic_exact___closed__5 = _init_l_Lean_Parser_Tactic_exact___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__5); -l_Lean_Parser_Tactic_exact___closed__6 = _init_l_Lean_Parser_Tactic_exact___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__6); -l_Lean_Parser_Tactic_exact___closed__7 = _init_l_Lean_Parser_Tactic_exact___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__7); -l_Lean_Parser_Tactic_exact = _init_l_Lean_Parser_Tactic_exact(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact); -res = l___regBuiltinParser_Lean_Parser_Tactic_exact(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_exact_formatter___closed__1 = _init_l_Lean_Parser_Tactic_exact_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact_formatter___closed__1); -l_Lean_Parser_Tactic_exact_formatter___closed__2 = _init_l_Lean_Parser_Tactic_exact_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact_formatter___closed__2); -l_Lean_Parser_Tactic_exact_formatter___closed__3 = _init_l_Lean_Parser_Tactic_exact_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact_formatter___closed__3); -l_Lean_Parser_Tactic_exact_formatter___closed__4 = _init_l_Lean_Parser_Tactic_exact_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_exact_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_exact_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_exact_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_exact_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_exact_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact_parenthesizer___closed__1); -l_Lean_Parser_Tactic_exact_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_refine___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__1); -l_Lean_Parser_Tactic_refine___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__2); -l_Lean_Parser_Tactic_refine___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__3); -l_Lean_Parser_Tactic_refine___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__4); -l_Lean_Parser_Tactic_refine___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__5); -l_Lean_Parser_Tactic_refine___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__6); -l_Lean_Parser_Tactic_refine___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__7); -l_Lean_Parser_Tactic_refine___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__8); -l_Lean_Parser_Tactic_refine___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__9); -l_Lean_Parser_Tactic_refine___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__10); -l_Lean_Parser_Tactic_refine___closed__1 = _init_l_Lean_Parser_Tactic_refine___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___closed__1); -l_Lean_Parser_Tactic_refine___closed__2 = _init_l_Lean_Parser_Tactic_refine___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___closed__2); -l_Lean_Parser_Tactic_refine___closed__3 = _init_l_Lean_Parser_Tactic_refine___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___closed__3); -l_Lean_Parser_Tactic_refine___closed__4 = _init_l_Lean_Parser_Tactic_refine___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___closed__4); -l_Lean_Parser_Tactic_refine___closed__5 = _init_l_Lean_Parser_Tactic_refine___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___closed__5); -l_Lean_Parser_Tactic_refine___closed__6 = _init_l_Lean_Parser_Tactic_refine___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___closed__6); -l_Lean_Parser_Tactic_refine___closed__7 = _init_l_Lean_Parser_Tactic_refine___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine___closed__7); -l_Lean_Parser_Tactic_refine = _init_l_Lean_Parser_Tactic_refine(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine); -res = l___regBuiltinParser_Lean_Parser_Tactic_refine(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_refine_formatter___closed__1 = _init_l_Lean_Parser_Tactic_refine_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_formatter___closed__1); -l_Lean_Parser_Tactic_refine_formatter___closed__2 = _init_l_Lean_Parser_Tactic_refine_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_formatter___closed__2); -l_Lean_Parser_Tactic_refine_formatter___closed__3 = _init_l_Lean_Parser_Tactic_refine_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_formatter___closed__3); -l_Lean_Parser_Tactic_refine_formatter___closed__4 = _init_l_Lean_Parser_Tactic_refine_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_refine_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_refine_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_refine_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_refine_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_refine_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_refine_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_parenthesizer___closed__1); -l_Lean_Parser_Tactic_refine_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_refine_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__3); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__4); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__5); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__7); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__8); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__9); -l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__10); -l_Lean_Parser_Tactic_refine_x21___closed__1 = _init_l_Lean_Parser_Tactic_refine_x21___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___closed__1); -l_Lean_Parser_Tactic_refine_x21___closed__2 = _init_l_Lean_Parser_Tactic_refine_x21___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___closed__2); -l_Lean_Parser_Tactic_refine_x21___closed__3 = _init_l_Lean_Parser_Tactic_refine_x21___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___closed__3); -l_Lean_Parser_Tactic_refine_x21___closed__4 = _init_l_Lean_Parser_Tactic_refine_x21___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___closed__4); -l_Lean_Parser_Tactic_refine_x21___closed__5 = _init_l_Lean_Parser_Tactic_refine_x21___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___closed__5); -l_Lean_Parser_Tactic_refine_x21___closed__6 = _init_l_Lean_Parser_Tactic_refine_x21___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___closed__6); -l_Lean_Parser_Tactic_refine_x21___closed__7 = _init_l_Lean_Parser_Tactic_refine_x21___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21___closed__7); -l_Lean_Parser_Tactic_refine_x21 = _init_l_Lean_Parser_Tactic_refine_x21(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21); -res = l___regBuiltinParser_Lean_Parser_Tactic_refine_x21(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_refine_x21_formatter___closed__1 = _init_l_Lean_Parser_Tactic_refine_x21_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21_formatter___closed__1); -l_Lean_Parser_Tactic_refine_x21_formatter___closed__2 = _init_l_Lean_Parser_Tactic_refine_x21_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21_formatter___closed__2); -l_Lean_Parser_Tactic_refine_x21_formatter___closed__3 = _init_l_Lean_Parser_Tactic_refine_x21_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21_formatter___closed__3); -l_Lean_Parser_Tactic_refine_x21_formatter___closed__4 = _init_l_Lean_Parser_Tactic_refine_x21_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1); -l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_refine_x21_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_case___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__1); -l_Lean_Parser_Tactic_case___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__2); -l_Lean_Parser_Tactic_case___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__3); -l_Lean_Parser_Tactic_case___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__4); -l_Lean_Parser_Tactic_case___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__5); -l_Lean_Parser_Tactic_case___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__6); -l_Lean_Parser_Tactic_case___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__7); -l_Lean_Parser_Tactic_case___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__8); -l_Lean_Parser_Tactic_case___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__9); -l_Lean_Parser_Tactic_case___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__10); -l_Lean_Parser_Tactic_case___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__11); -l_Lean_Parser_Tactic_case___closed__1 = _init_l_Lean_Parser_Tactic_case___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__1); -l_Lean_Parser_Tactic_case___closed__2 = _init_l_Lean_Parser_Tactic_case___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__2); -l_Lean_Parser_Tactic_case___closed__3 = _init_l_Lean_Parser_Tactic_case___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__3); -l_Lean_Parser_Tactic_case___closed__4 = _init_l_Lean_Parser_Tactic_case___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__4); -l_Lean_Parser_Tactic_case___closed__5 = _init_l_Lean_Parser_Tactic_case___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__5); -l_Lean_Parser_Tactic_case___closed__6 = _init_l_Lean_Parser_Tactic_case___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__6); -l_Lean_Parser_Tactic_case___closed__7 = _init_l_Lean_Parser_Tactic_case___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__7); -l_Lean_Parser_Tactic_case___closed__8 = _init_l_Lean_Parser_Tactic_case___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__8); -l_Lean_Parser_Tactic_case___closed__9 = _init_l_Lean_Parser_Tactic_case___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_case___closed__9); -l_Lean_Parser_Tactic_case = _init_l_Lean_Parser_Tactic_case(); -lean_mark_persistent(l_Lean_Parser_Tactic_case); -res = l___regBuiltinParser_Lean_Parser_Tactic_case(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_case_formatter___closed__1 = _init_l_Lean_Parser_Tactic_case_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_formatter___closed__1); -l_Lean_Parser_Tactic_case_formatter___closed__2 = _init_l_Lean_Parser_Tactic_case_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_formatter___closed__2); -l_Lean_Parser_Tactic_case_formatter___closed__3 = _init_l_Lean_Parser_Tactic_case_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_formatter___closed__3); -l_Lean_Parser_Tactic_case_formatter___closed__4 = _init_l_Lean_Parser_Tactic_case_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_formatter___closed__4); -l_Lean_Parser_Tactic_case_formatter___closed__5 = _init_l_Lean_Parser_Tactic_case_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_formatter___closed__5); -l_Lean_Parser_Tactic_case_formatter___closed__6 = _init_l_Lean_Parser_Tactic_case_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_formatter___closed__6); -l___regBuiltin_Lean_Parser_Tactic_case_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_case_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_case_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_case_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_case_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__1); -l_Lean_Parser_Tactic_case_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__2); -l_Lean_Parser_Tactic_case_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__3); -l_Lean_Parser_Tactic_case_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__4); -l_Lean_Parser_Tactic_case_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__5); -l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__4); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__8); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__9); -l_Lean_Parser_Tactic_allGoals___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__10); -l_Lean_Parser_Tactic_allGoals___closed__1 = _init_l_Lean_Parser_Tactic_allGoals___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__1); -l_Lean_Parser_Tactic_allGoals___closed__2 = _init_l_Lean_Parser_Tactic_allGoals___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__2); -l_Lean_Parser_Tactic_allGoals___closed__3 = _init_l_Lean_Parser_Tactic_allGoals___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__3); -l_Lean_Parser_Tactic_allGoals___closed__4 = _init_l_Lean_Parser_Tactic_allGoals___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__4); -l_Lean_Parser_Tactic_allGoals___closed__5 = _init_l_Lean_Parser_Tactic_allGoals___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__5); -l_Lean_Parser_Tactic_allGoals___closed__6 = _init_l_Lean_Parser_Tactic_allGoals___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__6); -l_Lean_Parser_Tactic_allGoals___closed__7 = _init_l_Lean_Parser_Tactic_allGoals___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__7); -l_Lean_Parser_Tactic_allGoals = _init_l_Lean_Parser_Tactic_allGoals(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals); -res = l___regBuiltinParser_Lean_Parser_Tactic_allGoals(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_allGoals_formatter___closed__1 = _init_l_Lean_Parser_Tactic_allGoals_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_formatter___closed__1); -l_Lean_Parser_Tactic_allGoals_formatter___closed__2 = _init_l_Lean_Parser_Tactic_allGoals_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_formatter___closed__2); -l_Lean_Parser_Tactic_allGoals_formatter___closed__3 = _init_l_Lean_Parser_Tactic_allGoals_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_formatter___closed__3); -l_Lean_Parser_Tactic_allGoals_formatter___closed__4 = _init_l_Lean_Parser_Tactic_allGoals_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_allGoals_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1); -l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2); -l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3); -l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_focus___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__1); -l_Lean_Parser_Tactic_focus___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__2); -l_Lean_Parser_Tactic_focus___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__3); -l_Lean_Parser_Tactic_focus___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__4); -l_Lean_Parser_Tactic_focus___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__5); -l_Lean_Parser_Tactic_focus___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__6); -l_Lean_Parser_Tactic_focus___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__7); -l_Lean_Parser_Tactic_focus___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__8); -l_Lean_Parser_Tactic_focus___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__9); -l_Lean_Parser_Tactic_focus___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___elambda__1___closed__10); -l_Lean_Parser_Tactic_focus___closed__1 = _init_l_Lean_Parser_Tactic_focus___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__1); -l_Lean_Parser_Tactic_focus___closed__2 = _init_l_Lean_Parser_Tactic_focus___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__2); -l_Lean_Parser_Tactic_focus___closed__3 = _init_l_Lean_Parser_Tactic_focus___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__3); -l_Lean_Parser_Tactic_focus___closed__4 = _init_l_Lean_Parser_Tactic_focus___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__4); -l_Lean_Parser_Tactic_focus___closed__5 = _init_l_Lean_Parser_Tactic_focus___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__5); -l_Lean_Parser_Tactic_focus___closed__6 = _init_l_Lean_Parser_Tactic_focus___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__6); -l_Lean_Parser_Tactic_focus___closed__7 = _init_l_Lean_Parser_Tactic_focus___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__7); -l_Lean_Parser_Tactic_focus = _init_l_Lean_Parser_Tactic_focus(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus); -res = l___regBuiltinParser_Lean_Parser_Tactic_focus(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_focus_formatter___closed__1 = _init_l_Lean_Parser_Tactic_focus_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus_formatter___closed__1); -l_Lean_Parser_Tactic_focus_formatter___closed__2 = _init_l_Lean_Parser_Tactic_focus_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus_formatter___closed__2); -l_Lean_Parser_Tactic_focus_formatter___closed__3 = _init_l_Lean_Parser_Tactic_focus_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus_formatter___closed__3); -l_Lean_Parser_Tactic_focus_formatter___closed__4 = _init_l_Lean_Parser_Tactic_focus_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_focus_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_focus_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_focus_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_focus_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_focus_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_focus_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus_parenthesizer___closed__1); -l_Lean_Parser_Tactic_focus_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_focus_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_focus_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_focus_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_skip___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___elambda__1___closed__1); -l_Lean_Parser_Tactic_skip___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___elambda__1___closed__2); -l_Lean_Parser_Tactic_skip___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___elambda__1___closed__3); -l_Lean_Parser_Tactic_skip___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___elambda__1___closed__4); -l_Lean_Parser_Tactic_skip___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___elambda__1___closed__5); -l_Lean_Parser_Tactic_skip___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___elambda__1___closed__6); -l_Lean_Parser_Tactic_skip___closed__1 = _init_l_Lean_Parser_Tactic_skip___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___closed__1); -l_Lean_Parser_Tactic_skip___closed__2 = _init_l_Lean_Parser_Tactic_skip___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___closed__2); -l_Lean_Parser_Tactic_skip___closed__3 = _init_l_Lean_Parser_Tactic_skip___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___closed__3); -l_Lean_Parser_Tactic_skip___closed__4 = _init_l_Lean_Parser_Tactic_skip___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___closed__4); -l_Lean_Parser_Tactic_skip___closed__5 = _init_l_Lean_Parser_Tactic_skip___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___closed__5); -l_Lean_Parser_Tactic_skip___closed__6 = _init_l_Lean_Parser_Tactic_skip___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip___closed__6); -l_Lean_Parser_Tactic_skip = _init_l_Lean_Parser_Tactic_skip(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip); -res = l___regBuiltinParser_Lean_Parser_Tactic_skip(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_skip_formatter___closed__1 = _init_l_Lean_Parser_Tactic_skip_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip_formatter___closed__1); -l_Lean_Parser_Tactic_skip_formatter___closed__2 = _init_l_Lean_Parser_Tactic_skip_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip_formatter___closed__2); -l_Lean_Parser_Tactic_skip_formatter___closed__3 = _init_l_Lean_Parser_Tactic_skip_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip_formatter___closed__3); -l___regBuiltin_Lean_Parser_Tactic_skip_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_skip_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_skip_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_skip_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_skip_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_skip_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip_parenthesizer___closed__1); -l_Lean_Parser_Tactic_skip_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_skip_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_skip_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_done___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__1); -l_Lean_Parser_Tactic_done___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__2); -l_Lean_Parser_Tactic_done___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__3); -l_Lean_Parser_Tactic_done___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__4); -l_Lean_Parser_Tactic_done___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__5); -l_Lean_Parser_Tactic_done___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__6); -l_Lean_Parser_Tactic_done___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__7); -l_Lean_Parser_Tactic_done___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_done___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___elambda__1___closed__8); -l_Lean_Parser_Tactic_done___closed__1 = _init_l_Lean_Parser_Tactic_done___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___closed__1); -l_Lean_Parser_Tactic_done___closed__2 = _init_l_Lean_Parser_Tactic_done___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___closed__2); -l_Lean_Parser_Tactic_done___closed__3 = _init_l_Lean_Parser_Tactic_done___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___closed__3); -l_Lean_Parser_Tactic_done___closed__4 = _init_l_Lean_Parser_Tactic_done___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___closed__4); -l_Lean_Parser_Tactic_done___closed__5 = _init_l_Lean_Parser_Tactic_done___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___closed__5); -l_Lean_Parser_Tactic_done___closed__6 = _init_l_Lean_Parser_Tactic_done___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_done___closed__6); -l_Lean_Parser_Tactic_done = _init_l_Lean_Parser_Tactic_done(); -lean_mark_persistent(l_Lean_Parser_Tactic_done); -res = l___regBuiltinParser_Lean_Parser_Tactic_done(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_done_formatter___closed__1 = _init_l_Lean_Parser_Tactic_done_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_done_formatter___closed__1); -l_Lean_Parser_Tactic_done_formatter___closed__2 = _init_l_Lean_Parser_Tactic_done_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_done_formatter___closed__2); -l_Lean_Parser_Tactic_done_formatter___closed__3 = _init_l_Lean_Parser_Tactic_done_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_done_formatter___closed__3); -l___regBuiltin_Lean_Parser_Tactic_done_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_done_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_done_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_done_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_done_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_done_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_done_parenthesizer___closed__1); -l_Lean_Parser_Tactic_done_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_done_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_done_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__1); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__2); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__3); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__4); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__5); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__6); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__7); -l_Lean_Parser_Tactic_traceState___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__8); -l_Lean_Parser_Tactic_traceState___closed__1 = _init_l_Lean_Parser_Tactic_traceState___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___closed__1); -l_Lean_Parser_Tactic_traceState___closed__2 = _init_l_Lean_Parser_Tactic_traceState___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___closed__2); -l_Lean_Parser_Tactic_traceState___closed__3 = _init_l_Lean_Parser_Tactic_traceState___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___closed__3); -l_Lean_Parser_Tactic_traceState___closed__4 = _init_l_Lean_Parser_Tactic_traceState___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___closed__4); -l_Lean_Parser_Tactic_traceState___closed__5 = _init_l_Lean_Parser_Tactic_traceState___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___closed__5); -l_Lean_Parser_Tactic_traceState___closed__6 = _init_l_Lean_Parser_Tactic_traceState___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState___closed__6); -l_Lean_Parser_Tactic_traceState = _init_l_Lean_Parser_Tactic_traceState(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState); -res = l___regBuiltinParser_Lean_Parser_Tactic_traceState(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_traceState_formatter___closed__1 = _init_l_Lean_Parser_Tactic_traceState_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState_formatter___closed__1); -l_Lean_Parser_Tactic_traceState_formatter___closed__2 = _init_l_Lean_Parser_Tactic_traceState_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState_formatter___closed__2); -l_Lean_Parser_Tactic_traceState_formatter___closed__3 = _init_l_Lean_Parser_Tactic_traceState_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState_formatter___closed__3); -l___regBuiltin_Lean_Parser_Tactic_traceState_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_traceState_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_traceState_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_traceState_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1); -l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__7); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__8); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__9); -l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__10); -l_Lean_Parser_Tactic_failIfSuccess___closed__1 = _init_l_Lean_Parser_Tactic_failIfSuccess___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___closed__1); -l_Lean_Parser_Tactic_failIfSuccess___closed__2 = _init_l_Lean_Parser_Tactic_failIfSuccess___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___closed__2); -l_Lean_Parser_Tactic_failIfSuccess___closed__3 = _init_l_Lean_Parser_Tactic_failIfSuccess___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___closed__3); -l_Lean_Parser_Tactic_failIfSuccess___closed__4 = _init_l_Lean_Parser_Tactic_failIfSuccess___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___closed__4); -l_Lean_Parser_Tactic_failIfSuccess___closed__5 = _init_l_Lean_Parser_Tactic_failIfSuccess___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___closed__5); -l_Lean_Parser_Tactic_failIfSuccess___closed__6 = _init_l_Lean_Parser_Tactic_failIfSuccess___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___closed__6); -l_Lean_Parser_Tactic_failIfSuccess___closed__7 = _init_l_Lean_Parser_Tactic_failIfSuccess___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___closed__7); -l_Lean_Parser_Tactic_failIfSuccess = _init_l_Lean_Parser_Tactic_failIfSuccess(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess); -res = l___regBuiltinParser_Lean_Parser_Tactic_failIfSuccess(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1 = _init_l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1); -l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__2 = _init_l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__2); -l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__3 = _init_l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__3); -l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__4 = _init_l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1); -l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__1); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__2); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__3); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__4); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__5); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__6); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__7); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__8); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__9); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__10); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__11); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__12); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__13 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__13); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__14 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__14(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__14); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__15 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__15(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__15); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__16 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__16(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__16); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__17 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__17(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__17); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__18 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__18(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__18); -l_Lean_Parser_Tactic_generalize___elambda__1___closed__19 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__19(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__19); -l_Lean_Parser_Tactic_generalize___closed__1 = _init_l_Lean_Parser_Tactic_generalize___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__1); -l_Lean_Parser_Tactic_generalize___closed__2 = _init_l_Lean_Parser_Tactic_generalize___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__2); -l_Lean_Parser_Tactic_generalize___closed__3 = _init_l_Lean_Parser_Tactic_generalize___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__3); -l_Lean_Parser_Tactic_generalize___closed__4 = _init_l_Lean_Parser_Tactic_generalize___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__4); -l_Lean_Parser_Tactic_generalize___closed__5 = _init_l_Lean_Parser_Tactic_generalize___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__5); -l_Lean_Parser_Tactic_generalize___closed__6 = _init_l_Lean_Parser_Tactic_generalize___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__6); -l_Lean_Parser_Tactic_generalize___closed__7 = _init_l_Lean_Parser_Tactic_generalize___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__7); -l_Lean_Parser_Tactic_generalize___closed__8 = _init_l_Lean_Parser_Tactic_generalize___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__8); -l_Lean_Parser_Tactic_generalize___closed__9 = _init_l_Lean_Parser_Tactic_generalize___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__9); -l_Lean_Parser_Tactic_generalize___closed__10 = _init_l_Lean_Parser_Tactic_generalize___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__10); -l_Lean_Parser_Tactic_generalize___closed__11 = _init_l_Lean_Parser_Tactic_generalize___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__11); -l_Lean_Parser_Tactic_generalize___closed__12 = _init_l_Lean_Parser_Tactic_generalize___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__12); -l_Lean_Parser_Tactic_generalize___closed__13 = _init_l_Lean_Parser_Tactic_generalize___closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__13); -l_Lean_Parser_Tactic_generalize___closed__14 = _init_l_Lean_Parser_Tactic_generalize___closed__14(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize___closed__14); -l_Lean_Parser_Tactic_generalize = _init_l_Lean_Parser_Tactic_generalize(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize); -res = l___regBuiltinParser_Lean_Parser_Tactic_generalize(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_generalize_formatter___closed__1 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__1); -l_Lean_Parser_Tactic_generalize_formatter___closed__2 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__2); -l_Lean_Parser_Tactic_generalize_formatter___closed__3 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__3); -l_Lean_Parser_Tactic_generalize_formatter___closed__4 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__4); -l_Lean_Parser_Tactic_generalize_formatter___closed__5 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__5); -l_Lean_Parser_Tactic_generalize_formatter___closed__6 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__6); -l_Lean_Parser_Tactic_generalize_formatter___closed__7 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__7); -l_Lean_Parser_Tactic_generalize_formatter___closed__8 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__8); -l_Lean_Parser_Tactic_generalize_formatter___closed__9 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__9); -l_Lean_Parser_Tactic_generalize_formatter___closed__10 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__10); -l_Lean_Parser_Tactic_generalize_formatter___closed__11 = _init_l_Lean_Parser_Tactic_generalize_formatter___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_formatter___closed__11); -l___regBuiltin_Lean_Parser_Tactic_generalize_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_generalize_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_generalize_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_generalize_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__7 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__7); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__8 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__8); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__9 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__9); -l_Lean_Parser_Tactic_generalize_parenthesizer___closed__10 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__10); -l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1 = _init_l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1); l_Lean_Parser_Tactic_unknown___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_unknown___elambda__1___closed__1(); @@ -21645,1452 +892,6 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_unknown_parenthesizer___c res = l___regBuiltin_Lean_Parser_Tactic_unknown_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1); -l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__2); -l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__3); -l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__4); -l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__5); -l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__6); -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(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___closed__2); -l_Lean_Parser_Tactic_locationWildcard___closed__3 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___closed__3); -l_Lean_Parser_Tactic_locationWildcard___closed__4 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___closed__4); -l_Lean_Parser_Tactic_locationWildcard___closed__5 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___closed__5); -l_Lean_Parser_Tactic_locationWildcard = _init_l_Lean_Parser_Tactic_locationWildcard(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__2); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__4); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__5); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__6); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__8); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__9); -l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__10); -l_Lean_Parser_Tactic_locationTarget___closed__1 = _init_l_Lean_Parser_Tactic_locationTarget___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___closed__1); -l_Lean_Parser_Tactic_locationTarget___closed__2 = _init_l_Lean_Parser_Tactic_locationTarget___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___closed__2); -l_Lean_Parser_Tactic_locationTarget___closed__3 = _init_l_Lean_Parser_Tactic_locationTarget___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___closed__3); -l_Lean_Parser_Tactic_locationTarget___closed__4 = _init_l_Lean_Parser_Tactic_locationTarget___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___closed__4); -l_Lean_Parser_Tactic_locationTarget___closed__5 = _init_l_Lean_Parser_Tactic_locationTarget___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___closed__5); -l_Lean_Parser_Tactic_locationTarget___closed__6 = _init_l_Lean_Parser_Tactic_locationTarget___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget___closed__6); -l_Lean_Parser_Tactic_locationTarget = _init_l_Lean_Parser_Tactic_locationTarget(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget); -l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1); -l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__2); -l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__3); -l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__4); -l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__5); -l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__6); -l_Lean_Parser_Tactic_locationHyp___closed__1 = _init_l_Lean_Parser_Tactic_locationHyp___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___closed__1); -l_Lean_Parser_Tactic_locationHyp___closed__2 = _init_l_Lean_Parser_Tactic_locationHyp___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___closed__2); -l_Lean_Parser_Tactic_locationHyp___closed__3 = _init_l_Lean_Parser_Tactic_locationHyp___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___closed__3); -l_Lean_Parser_Tactic_locationHyp___closed__4 = _init_l_Lean_Parser_Tactic_locationHyp___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___closed__4); -l_Lean_Parser_Tactic_locationHyp___closed__5 = _init_l_Lean_Parser_Tactic_locationHyp___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp___closed__5); -l_Lean_Parser_Tactic_locationHyp = _init_l_Lean_Parser_Tactic_locationHyp(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp); -l_Lean_Parser_Tactic_location___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__1); -l_Lean_Parser_Tactic_location___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__2); -l_Lean_Parser_Tactic_location___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__3); -l_Lean_Parser_Tactic_location___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__4); -l_Lean_Parser_Tactic_location___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__5); -l_Lean_Parser_Tactic_location___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__6); -l_Lean_Parser_Tactic_location___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__7); -l_Lean_Parser_Tactic_location___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__8); -l_Lean_Parser_Tactic_location___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__9); -l_Lean_Parser_Tactic_location___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_location___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___elambda__1___closed__10); -l_Lean_Parser_Tactic_location___closed__1 = _init_l_Lean_Parser_Tactic_location___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__1); -l_Lean_Parser_Tactic_location___closed__2 = _init_l_Lean_Parser_Tactic_location___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__2); -l_Lean_Parser_Tactic_location___closed__3 = _init_l_Lean_Parser_Tactic_location___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__3); -l_Lean_Parser_Tactic_location___closed__4 = _init_l_Lean_Parser_Tactic_location___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__4); -l_Lean_Parser_Tactic_location___closed__5 = _init_l_Lean_Parser_Tactic_location___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__5); -l_Lean_Parser_Tactic_location___closed__6 = _init_l_Lean_Parser_Tactic_location___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__6); -l_Lean_Parser_Tactic_location___closed__7 = _init_l_Lean_Parser_Tactic_location___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__7); -l_Lean_Parser_Tactic_location___closed__8 = _init_l_Lean_Parser_Tactic_location___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__8); -l_Lean_Parser_Tactic_location___closed__9 = _init_l_Lean_Parser_Tactic_location___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_location___closed__9); -l_Lean_Parser_Tactic_location = _init_l_Lean_Parser_Tactic_location(); -lean_mark_persistent(l_Lean_Parser_Tactic_location); -l_Lean_Parser_Tactic_change___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__1); -l_Lean_Parser_Tactic_change___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__2); -l_Lean_Parser_Tactic_change___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__3); -l_Lean_Parser_Tactic_change___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__4); -l_Lean_Parser_Tactic_change___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__5); -l_Lean_Parser_Tactic_change___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__6); -l_Lean_Parser_Tactic_change___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__7); -l_Lean_Parser_Tactic_change___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__8); -l_Lean_Parser_Tactic_change___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__9); -l_Lean_Parser_Tactic_change___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__10); -l_Lean_Parser_Tactic_change___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__11); -l_Lean_Parser_Tactic_change___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_change___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___elambda__1___closed__12); -l_Lean_Parser_Tactic_change___closed__1 = _init_l_Lean_Parser_Tactic_change___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__1); -l_Lean_Parser_Tactic_change___closed__2 = _init_l_Lean_Parser_Tactic_change___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__2); -l_Lean_Parser_Tactic_change___closed__3 = _init_l_Lean_Parser_Tactic_change___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__3); -l_Lean_Parser_Tactic_change___closed__4 = _init_l_Lean_Parser_Tactic_change___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__4); -l_Lean_Parser_Tactic_change___closed__5 = _init_l_Lean_Parser_Tactic_change___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__5); -l_Lean_Parser_Tactic_change___closed__6 = _init_l_Lean_Parser_Tactic_change___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__6); -l_Lean_Parser_Tactic_change___closed__7 = _init_l_Lean_Parser_Tactic_change___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__7); -l_Lean_Parser_Tactic_change___closed__8 = _init_l_Lean_Parser_Tactic_change___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__8); -l_Lean_Parser_Tactic_change___closed__9 = _init_l_Lean_Parser_Tactic_change___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_change___closed__9); -l_Lean_Parser_Tactic_change = _init_l_Lean_Parser_Tactic_change(); -lean_mark_persistent(l_Lean_Parser_Tactic_change); -res = l___regBuiltinParser_Lean_Parser_Tactic_change(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_locationWildcard_formatter___closed__1 = _init_l_Lean_Parser_Tactic_locationWildcard_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard_formatter___closed__1); -l_Lean_Parser_Tactic_locationWildcard_formatter___closed__2 = _init_l_Lean_Parser_Tactic_locationWildcard_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard_formatter___closed__2); -l_Lean_Parser_Tactic_locationTarget_formatter___closed__1 = _init_l_Lean_Parser_Tactic_locationTarget_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget_formatter___closed__1); -l_Lean_Parser_Tactic_locationTarget_formatter___closed__2 = _init_l_Lean_Parser_Tactic_locationTarget_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget_formatter___closed__2); -l_Lean_Parser_Tactic_locationTarget_formatter___closed__3 = _init_l_Lean_Parser_Tactic_locationTarget_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget_formatter___closed__3); -l_Lean_Parser_Tactic_locationHyp_formatter___closed__1 = _init_l_Lean_Parser_Tactic_locationHyp_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp_formatter___closed__1); -l_Lean_Parser_Tactic_locationHyp_formatter___closed__2 = _init_l_Lean_Parser_Tactic_locationHyp_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp_formatter___closed__2); -l_Lean_Parser_Tactic_location_formatter___closed__1 = _init_l_Lean_Parser_Tactic_location_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__1); -l_Lean_Parser_Tactic_location_formatter___closed__2 = _init_l_Lean_Parser_Tactic_location_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__2); -l_Lean_Parser_Tactic_location_formatter___closed__3 = _init_l_Lean_Parser_Tactic_location_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__3); -l_Lean_Parser_Tactic_location_formatter___closed__4 = _init_l_Lean_Parser_Tactic_location_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__4); -l_Lean_Parser_Tactic_location_formatter___closed__5 = _init_l_Lean_Parser_Tactic_location_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__5); -l_Lean_Parser_Tactic_location_formatter___closed__6 = _init_l_Lean_Parser_Tactic_location_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__6); -l_Lean_Parser_Tactic_location_formatter___closed__7 = _init_l_Lean_Parser_Tactic_location_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__7); -l_Lean_Parser_Tactic_location_formatter___closed__8 = _init_l_Lean_Parser_Tactic_location_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__8); -l_Lean_Parser_Tactic_location_formatter___closed__9 = _init_l_Lean_Parser_Tactic_location_formatter___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__9); -l_Lean_Parser_Tactic_location_formatter___closed__10 = _init_l_Lean_Parser_Tactic_location_formatter___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_formatter___closed__10); -l_Lean_Parser_Tactic_change_formatter___closed__1 = _init_l_Lean_Parser_Tactic_change_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_formatter___closed__1); -l_Lean_Parser_Tactic_change_formatter___closed__2 = _init_l_Lean_Parser_Tactic_change_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_formatter___closed__2); -l_Lean_Parser_Tactic_change_formatter___closed__3 = _init_l_Lean_Parser_Tactic_change_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_formatter___closed__3); -l_Lean_Parser_Tactic_change_formatter___closed__4 = _init_l_Lean_Parser_Tactic_change_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_formatter___closed__4); -l_Lean_Parser_Tactic_change_formatter___closed__5 = _init_l_Lean_Parser_Tactic_change_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_formatter___closed__5); -l_Lean_Parser_Tactic_change_formatter___closed__6 = _init_l_Lean_Parser_Tactic_change_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_formatter___closed__6); -l_Lean_Parser_Tactic_change_formatter___closed__7 = _init_l_Lean_Parser_Tactic_change_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_formatter___closed__7); -l___regBuiltin_Lean_Parser_Tactic_change_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_change_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_change_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_change_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__1); -l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard_parenthesizer___closed__2); -l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__1); -l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationTarget_parenthesizer___closed__2); -l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__1); -l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_locationHyp_parenthesizer___closed__2); -l_Lean_Parser_Tactic_location_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__1); -l_Lean_Parser_Tactic_location_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__2); -l_Lean_Parser_Tactic_location_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__3); -l_Lean_Parser_Tactic_location_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__4); -l_Lean_Parser_Tactic_location_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__5); -l_Lean_Parser_Tactic_location_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__6); -l_Lean_Parser_Tactic_location_parenthesizer___closed__7 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__7); -l_Lean_Parser_Tactic_location_parenthesizer___closed__8 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__8); -l_Lean_Parser_Tactic_location_parenthesizer___closed__9 = _init_l_Lean_Parser_Tactic_location_parenthesizer___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_location_parenthesizer___closed__9); -l_Lean_Parser_Tactic_change_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_parenthesizer___closed__1); -l_Lean_Parser_Tactic_change_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_parenthesizer___closed__2); -l_Lean_Parser_Tactic_change_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_parenthesizer___closed__3); -l_Lean_Parser_Tactic_change_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_parenthesizer___closed__4); -l_Lean_Parser_Tactic_change_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_parenthesizer___closed__5); -l_Lean_Parser_Tactic_change_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_change_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_change_parenthesizer___closed__6); -l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_change_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__3); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__4); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__5); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__6); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__7); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__8); -l_Lean_Parser_Tactic_changeWith___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___elambda__1___closed__9); -l_Lean_Parser_Tactic_changeWith___closed__1 = _init_l_Lean_Parser_Tactic_changeWith___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__1); -l_Lean_Parser_Tactic_changeWith___closed__2 = _init_l_Lean_Parser_Tactic_changeWith___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__2); -l_Lean_Parser_Tactic_changeWith___closed__3 = _init_l_Lean_Parser_Tactic_changeWith___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__3); -l_Lean_Parser_Tactic_changeWith___closed__4 = _init_l_Lean_Parser_Tactic_changeWith___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__4); -l_Lean_Parser_Tactic_changeWith___closed__5 = _init_l_Lean_Parser_Tactic_changeWith___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__5); -l_Lean_Parser_Tactic_changeWith___closed__6 = _init_l_Lean_Parser_Tactic_changeWith___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__6); -l_Lean_Parser_Tactic_changeWith___closed__7 = _init_l_Lean_Parser_Tactic_changeWith___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__7); -l_Lean_Parser_Tactic_changeWith___closed__8 = _init_l_Lean_Parser_Tactic_changeWith___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith___closed__8); -l_Lean_Parser_Tactic_changeWith = _init_l_Lean_Parser_Tactic_changeWith(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith); -res = l___regBuiltinParser_Lean_Parser_Tactic_changeWith(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_changeWith_formatter___closed__1 = _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_formatter___closed__1); -l_Lean_Parser_Tactic_changeWith_formatter___closed__2 = _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_formatter___closed__2); -l_Lean_Parser_Tactic_changeWith_formatter___closed__3 = _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_formatter___closed__3); -l_Lean_Parser_Tactic_changeWith_formatter___closed__4 = _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_formatter___closed__4); -l_Lean_Parser_Tactic_changeWith_formatter___closed__5 = _init_l_Lean_Parser_Tactic_changeWith_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_formatter___closed__5); -l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_changeWith_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1); -l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__2); -l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__3); -l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__4); -l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__5); -l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__4); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__5); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__6); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__7); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__8); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__9); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__10); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__11); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__12); -l_Lean_Parser_Tactic_rwRule___elambda__1___closed__13 = _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___elambda__1___closed__13); -l_Lean_Parser_Tactic_rwRule___closed__1 = _init_l_Lean_Parser_Tactic_rwRule___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__1); -l_Lean_Parser_Tactic_rwRule___closed__2 = _init_l_Lean_Parser_Tactic_rwRule___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__2); -l_Lean_Parser_Tactic_rwRule___closed__3 = _init_l_Lean_Parser_Tactic_rwRule___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__3); -l_Lean_Parser_Tactic_rwRule___closed__4 = _init_l_Lean_Parser_Tactic_rwRule___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__4); -l_Lean_Parser_Tactic_rwRule___closed__5 = _init_l_Lean_Parser_Tactic_rwRule___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__5); -l_Lean_Parser_Tactic_rwRule___closed__6 = _init_l_Lean_Parser_Tactic_rwRule___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__6); -l_Lean_Parser_Tactic_rwRule___closed__7 = _init_l_Lean_Parser_Tactic_rwRule___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__7); -l_Lean_Parser_Tactic_rwRule___closed__8 = _init_l_Lean_Parser_Tactic_rwRule___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule___closed__8); -l_Lean_Parser_Tactic_rwRule = _init_l_Lean_Parser_Tactic_rwRule(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__2); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__3); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__4); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__5); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__6); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__7); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__8); -l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__9); -l_Lean_Parser_Tactic_rwRuleSeq___closed__1 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__1); -l_Lean_Parser_Tactic_rwRuleSeq___closed__2 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__2); -l_Lean_Parser_Tactic_rwRuleSeq___closed__3 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__3); -l_Lean_Parser_Tactic_rwRuleSeq___closed__4 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__4); -l_Lean_Parser_Tactic_rwRuleSeq___closed__5 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__5); -l_Lean_Parser_Tactic_rwRuleSeq___closed__6 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__6); -l_Lean_Parser_Tactic_rwRuleSeq___closed__7 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__7); -l_Lean_Parser_Tactic_rwRuleSeq___closed__8 = _init_l_Lean_Parser_Tactic_rwRuleSeq___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq___closed__8); -l_Lean_Parser_Tactic_rwRuleSeq = _init_l_Lean_Parser_Tactic_rwRuleSeq(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__3); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__4); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__6); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__8); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__9); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__10); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__11); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__12); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__13 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__13); -l_Lean_Parser_Tactic_rewrite___elambda__1___closed__14 = _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__14(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___elambda__1___closed__14); -l_Lean_Parser_Tactic_rewrite___closed__1 = _init_l_Lean_Parser_Tactic_rewrite___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__1); -l_Lean_Parser_Tactic_rewrite___closed__2 = _init_l_Lean_Parser_Tactic_rewrite___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__2); -l_Lean_Parser_Tactic_rewrite___closed__3 = _init_l_Lean_Parser_Tactic_rewrite___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__3); -l_Lean_Parser_Tactic_rewrite___closed__4 = _init_l_Lean_Parser_Tactic_rewrite___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__4); -l_Lean_Parser_Tactic_rewrite___closed__5 = _init_l_Lean_Parser_Tactic_rewrite___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__5); -l_Lean_Parser_Tactic_rewrite___closed__6 = _init_l_Lean_Parser_Tactic_rewrite___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__6); -l_Lean_Parser_Tactic_rewrite___closed__7 = _init_l_Lean_Parser_Tactic_rewrite___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__7); -l_Lean_Parser_Tactic_rewrite___closed__8 = _init_l_Lean_Parser_Tactic_rewrite___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__8); -l_Lean_Parser_Tactic_rewrite___closed__9 = _init_l_Lean_Parser_Tactic_rewrite___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__9); -l_Lean_Parser_Tactic_rewrite___closed__10 = _init_l_Lean_Parser_Tactic_rewrite___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite___closed__10); -l_Lean_Parser_Tactic_rewrite = _init_l_Lean_Parser_Tactic_rewrite(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite); -res = l___regBuiltinParser_Lean_Parser_Tactic_rewrite(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_rwRule_formatter___closed__1 = _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_formatter___closed__1); -l_Lean_Parser_Tactic_rwRule_formatter___closed__2 = _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_formatter___closed__2); -l_Lean_Parser_Tactic_rwRule_formatter___closed__3 = _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_formatter___closed__3); -l_Lean_Parser_Tactic_rwRule_formatter___closed__4 = _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_formatter___closed__4); -l_Lean_Parser_Tactic_rwRule_formatter___closed__5 = _init_l_Lean_Parser_Tactic_rwRule_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_formatter___closed__5); -l_Lean_Parser_Tactic_rewrite_formatter___closed__1 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__1); -l_Lean_Parser_Tactic_rewrite_formatter___closed__2 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__2); -l_Lean_Parser_Tactic_rewrite_formatter___closed__3 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__3); -l_Lean_Parser_Tactic_rewrite_formatter___closed__4 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__4); -l_Lean_Parser_Tactic_rewrite_formatter___closed__5 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__5); -l_Lean_Parser_Tactic_rewrite_formatter___closed__6 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__6); -l_Lean_Parser_Tactic_rewrite_formatter___closed__7 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__7); -l_Lean_Parser_Tactic_rewrite_formatter___closed__8 = _init_l_Lean_Parser_Tactic_rewrite_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_formatter___closed__8); -l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_rewrite_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__1); -l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__2); -l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__3); -l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRule_parenthesizer___closed__4); -l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1); -l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__2); -l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__3); -l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__4); -l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__5); -l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__6); -l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__3); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__4); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__5); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__6); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__7); -l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__8); -l_Lean_Parser_Tactic_rewriteSeq___closed__1 = _init_l_Lean_Parser_Tactic_rewriteSeq___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___closed__1); -l_Lean_Parser_Tactic_rewriteSeq___closed__2 = _init_l_Lean_Parser_Tactic_rewriteSeq___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___closed__2); -l_Lean_Parser_Tactic_rewriteSeq___closed__3 = _init_l_Lean_Parser_Tactic_rewriteSeq___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___closed__3); -l_Lean_Parser_Tactic_rewriteSeq___closed__4 = _init_l_Lean_Parser_Tactic_rewriteSeq___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___closed__4); -l_Lean_Parser_Tactic_rewriteSeq___closed__5 = _init_l_Lean_Parser_Tactic_rewriteSeq___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___closed__5); -l_Lean_Parser_Tactic_rewriteSeq___closed__6 = _init_l_Lean_Parser_Tactic_rewriteSeq___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___closed__6); -l_Lean_Parser_Tactic_rewriteSeq___closed__7 = _init_l_Lean_Parser_Tactic_rewriteSeq___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq___closed__7); -l_Lean_Parser_Tactic_rewriteSeq = _init_l_Lean_Parser_Tactic_rewriteSeq(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq); -res = l___regBuiltinParser_Lean_Parser_Tactic_rewriteSeq(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__1 = _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__1); -l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__2 = _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__2); -l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__3 = _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__3); -l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__4 = _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__4); -l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__5 = _init_l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_formatter___closed__5); -l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1 = _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1); -l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__2 = _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__2); -l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__3 = _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__3); -l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__4 = _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__4); -l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__5 = _init_l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_formatter___closed__5); -l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__1); -l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__2); -l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__3); -l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__4); -l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__5); -l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1); -l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__2); -l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__3); -l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__4); -l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__5); -l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_rewriteSeq_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_altRHS___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_altRHS___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS___elambda__1___closed__1); -l_Lean_Parser_Tactic_altRHS___closed__1 = _init_l_Lean_Parser_Tactic_altRHS___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS___closed__1); -l_Lean_Parser_Tactic_altRHS___closed__2 = _init_l_Lean_Parser_Tactic_altRHS___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS___closed__2); -l_Lean_Parser_Tactic_altRHS___closed__3 = _init_l_Lean_Parser_Tactic_altRHS___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS___closed__3); -l_Lean_Parser_Tactic_altRHS___closed__4 = _init_l_Lean_Parser_Tactic_altRHS___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS___closed__4); -l_Lean_Parser_Tactic_altRHS = _init_l_Lean_Parser_Tactic_altRHS(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__1); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__2); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__3); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__4); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__5); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__6); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__7); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__8); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__9); -l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___elambda__1___closed__10); -l_Lean_Parser_Tactic_inductionAlt___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__1); -l_Lean_Parser_Tactic_inductionAlt___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__2); -l_Lean_Parser_Tactic_inductionAlt___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__3); -l_Lean_Parser_Tactic_inductionAlt___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__4); -l_Lean_Parser_Tactic_inductionAlt___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__5); -l_Lean_Parser_Tactic_inductionAlt___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__6); -l_Lean_Parser_Tactic_inductionAlt___closed__7 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__7); -l_Lean_Parser_Tactic_inductionAlt___closed__8 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__8); -l_Lean_Parser_Tactic_inductionAlt___closed__9 = _init_l_Lean_Parser_Tactic_inductionAlt___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt___closed__9); -l_Lean_Parser_Tactic_inductionAlt = _init_l_Lean_Parser_Tactic_inductionAlt(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__1); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__2); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__3); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__4); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__5); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__6); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__7); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__8); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__9); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__10); -l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___elambda__1___closed__11); -l_Lean_Parser_Tactic_inductionAlts___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__1); -l_Lean_Parser_Tactic_inductionAlts___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__2); -l_Lean_Parser_Tactic_inductionAlts___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__3); -l_Lean_Parser_Tactic_inductionAlts___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__4); -l_Lean_Parser_Tactic_inductionAlts___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__5); -l_Lean_Parser_Tactic_inductionAlts___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__6); -l_Lean_Parser_Tactic_inductionAlts___closed__7 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__7); -l_Lean_Parser_Tactic_inductionAlts___closed__8 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__8); -l_Lean_Parser_Tactic_inductionAlts___closed__9 = _init_l_Lean_Parser_Tactic_inductionAlts___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts___closed__9); -l_Lean_Parser_Tactic_inductionAlts = _init_l_Lean_Parser_Tactic_inductionAlts(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts); -l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1); -l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2); -l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3); -l_Lean_Parser_Tactic_usingRec___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_usingRec___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___elambda__1___closed__4); -l_Lean_Parser_Tactic_usingRec___closed__1 = _init_l_Lean_Parser_Tactic_usingRec___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___closed__1); -l_Lean_Parser_Tactic_usingRec___closed__2 = _init_l_Lean_Parser_Tactic_usingRec___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___closed__2); -l_Lean_Parser_Tactic_usingRec___closed__3 = _init_l_Lean_Parser_Tactic_usingRec___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___closed__3); -l_Lean_Parser_Tactic_usingRec___closed__4 = _init_l_Lean_Parser_Tactic_usingRec___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___closed__4); -l_Lean_Parser_Tactic_usingRec___closed__5 = _init_l_Lean_Parser_Tactic_usingRec___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec___closed__5); -l_Lean_Parser_Tactic_usingRec = _init_l_Lean_Parser_Tactic_usingRec(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec); -l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1); -l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2); -l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3); -l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__4); -l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__5); -l_Lean_Parser_Tactic_generalizingVars___closed__1 = _init_l_Lean_Parser_Tactic_generalizingVars___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___closed__1); -l_Lean_Parser_Tactic_generalizingVars___closed__2 = _init_l_Lean_Parser_Tactic_generalizingVars___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___closed__2); -l_Lean_Parser_Tactic_generalizingVars___closed__3 = _init_l_Lean_Parser_Tactic_generalizingVars___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___closed__3); -l_Lean_Parser_Tactic_generalizingVars___closed__4 = _init_l_Lean_Parser_Tactic_generalizingVars___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___closed__4); -l_Lean_Parser_Tactic_generalizingVars___closed__5 = _init_l_Lean_Parser_Tactic_generalizingVars___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars___closed__5); -l_Lean_Parser_Tactic_generalizingVars = _init_l_Lean_Parser_Tactic_generalizingVars(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars); -l_Lean_Parser_Tactic_induction___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__1); -l_Lean_Parser_Tactic_induction___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__2); -l_Lean_Parser_Tactic_induction___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__3); -l_Lean_Parser_Tactic_induction___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__4); -l_Lean_Parser_Tactic_induction___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__5); -l_Lean_Parser_Tactic_induction___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__6); -l_Lean_Parser_Tactic_induction___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__7); -l_Lean_Parser_Tactic_induction___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__8); -l_Lean_Parser_Tactic_induction___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__9); -l_Lean_Parser_Tactic_induction___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__10); -l_Lean_Parser_Tactic_induction___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__11); -l_Lean_Parser_Tactic_induction___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__12); -l_Lean_Parser_Tactic_induction___elambda__1___closed__13 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__13); -l_Lean_Parser_Tactic_induction___elambda__1___closed__14 = _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__14(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___elambda__1___closed__14); -l_Lean_Parser_Tactic_induction___closed__1 = _init_l_Lean_Parser_Tactic_induction___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__1); -l_Lean_Parser_Tactic_induction___closed__2 = _init_l_Lean_Parser_Tactic_induction___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__2); -l_Lean_Parser_Tactic_induction___closed__3 = _init_l_Lean_Parser_Tactic_induction___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__3); -l_Lean_Parser_Tactic_induction___closed__4 = _init_l_Lean_Parser_Tactic_induction___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__4); -l_Lean_Parser_Tactic_induction___closed__5 = _init_l_Lean_Parser_Tactic_induction___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__5); -l_Lean_Parser_Tactic_induction___closed__6 = _init_l_Lean_Parser_Tactic_induction___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__6); -l_Lean_Parser_Tactic_induction___closed__7 = _init_l_Lean_Parser_Tactic_induction___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__7); -l_Lean_Parser_Tactic_induction___closed__8 = _init_l_Lean_Parser_Tactic_induction___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__8); -l_Lean_Parser_Tactic_induction___closed__9 = _init_l_Lean_Parser_Tactic_induction___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__9); -l_Lean_Parser_Tactic_induction___closed__10 = _init_l_Lean_Parser_Tactic_induction___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__10); -l_Lean_Parser_Tactic_induction___closed__11 = _init_l_Lean_Parser_Tactic_induction___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction___closed__11); -l_Lean_Parser_Tactic_induction = _init_l_Lean_Parser_Tactic_induction(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction); -res = l___regBuiltinParser_Lean_Parser_Tactic_induction(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_usingRec_formatter___closed__1 = _init_l_Lean_Parser_Tactic_usingRec_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec_formatter___closed__1); -l_Lean_Parser_Tactic_usingRec_formatter___closed__2 = _init_l_Lean_Parser_Tactic_usingRec_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_usingRec_formatter___closed__2); -l_Lean_Parser_Tactic_generalizingVars_formatter___closed__1 = _init_l_Lean_Parser_Tactic_generalizingVars_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars_formatter___closed__1); -l_Lean_Parser_Tactic_generalizingVars_formatter___closed__2 = _init_l_Lean_Parser_Tactic_generalizingVars_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars_formatter___closed__2); -l_Lean_Parser_Tactic_generalizingVars_formatter___closed__3 = _init_l_Lean_Parser_Tactic_generalizingVars_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars_formatter___closed__3); -l_Lean_Parser_Tactic_altRHS_formatter___closed__1 = _init_l_Lean_Parser_Tactic_altRHS_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS_formatter___closed__1); -l_Lean_Parser_Tactic_inductionAlt_formatter___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_formatter___closed__1); -l_Lean_Parser_Tactic_inductionAlt_formatter___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_formatter___closed__2); -l_Lean_Parser_Tactic_inductionAlt_formatter___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_formatter___closed__3); -l_Lean_Parser_Tactic_inductionAlt_formatter___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_formatter___closed__4); -l_Lean_Parser_Tactic_inductionAlt_formatter___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_formatter___closed__5); -l_Lean_Parser_Tactic_inductionAlt_formatter___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_formatter___closed__6); -l_Lean_Parser_Tactic_inductionAlt_formatter___closed__7 = _init_l_Lean_Parser_Tactic_inductionAlt_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_formatter___closed__7); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__1); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__2); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__3); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__4); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__5); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__6); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__7 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__7); -l_Lean_Parser_Tactic_inductionAlts_formatter___closed__8 = _init_l_Lean_Parser_Tactic_inductionAlts_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_formatter___closed__8); -l_Lean_Parser_Tactic_induction_formatter___closed__1 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__1); -l_Lean_Parser_Tactic_induction_formatter___closed__2 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__2); -l_Lean_Parser_Tactic_induction_formatter___closed__3 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__3); -l_Lean_Parser_Tactic_induction_formatter___closed__4 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__4); -l_Lean_Parser_Tactic_induction_formatter___closed__5 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__5); -l_Lean_Parser_Tactic_induction_formatter___closed__6 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__6); -l_Lean_Parser_Tactic_induction_formatter___closed__7 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__7); -l_Lean_Parser_Tactic_induction_formatter___closed__8 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__8); -l_Lean_Parser_Tactic_induction_formatter___closed__9 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__9); -l_Lean_Parser_Tactic_induction_formatter___closed__10 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__10); -l_Lean_Parser_Tactic_induction_formatter___closed__11 = _init_l_Lean_Parser_Tactic_induction_formatter___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_formatter___closed__11); -l___regBuiltin_Lean_Parser_Tactic_induction_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_induction_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_induction_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_induction_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1); -l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__2); -l_Lean_Parser_Tactic_altRHS_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_altRHS_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_altRHS_parenthesizer___closed__1); -l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1); -l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2); -l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3); -l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4); -l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5); -l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__6); -l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__7 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__7); -l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1); -l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__2); -l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__3); -l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__4); -l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__5); -l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__6); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__1); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__2); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__3); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__4); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__5); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__6); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__7 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__7); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__8 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__8); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__9 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__9); -l_Lean_Parser_Tactic_induction_parenthesizer___closed__10 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__10); -l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__1); -l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__2); -l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__3); -l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__4); -l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__5); -l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__6); -l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___elambda__1___closed__7); -l_Lean_Parser_Tactic_casesTarget___closed__1 = _init_l_Lean_Parser_Tactic_casesTarget___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___closed__1); -l_Lean_Parser_Tactic_casesTarget___closed__2 = _init_l_Lean_Parser_Tactic_casesTarget___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___closed__2); -l_Lean_Parser_Tactic_casesTarget___closed__3 = _init_l_Lean_Parser_Tactic_casesTarget___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___closed__3); -l_Lean_Parser_Tactic_casesTarget___closed__4 = _init_l_Lean_Parser_Tactic_casesTarget___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___closed__4); -l_Lean_Parser_Tactic_casesTarget___closed__5 = _init_l_Lean_Parser_Tactic_casesTarget___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___closed__5); -l_Lean_Parser_Tactic_casesTarget___closed__6 = _init_l_Lean_Parser_Tactic_casesTarget___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget___closed__6); -l_Lean_Parser_Tactic_casesTarget = _init_l_Lean_Parser_Tactic_casesTarget(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget); -l_Lean_Parser_Tactic_cases___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__1); -l_Lean_Parser_Tactic_cases___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__2); -l_Lean_Parser_Tactic_cases___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__3); -l_Lean_Parser_Tactic_cases___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__4); -l_Lean_Parser_Tactic_cases___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__5); -l_Lean_Parser_Tactic_cases___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__6); -l_Lean_Parser_Tactic_cases___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__7); -l_Lean_Parser_Tactic_cases___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__8); -l_Lean_Parser_Tactic_cases___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__9); -l_Lean_Parser_Tactic_cases___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__10); -l_Lean_Parser_Tactic_cases___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__11); -l_Lean_Parser_Tactic_cases___elambda__1___closed__12 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__12); -l_Lean_Parser_Tactic_cases___elambda__1___closed__13 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__13); -l_Lean_Parser_Tactic_cases___closed__1 = _init_l_Lean_Parser_Tactic_cases___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__1); -l_Lean_Parser_Tactic_cases___closed__2 = _init_l_Lean_Parser_Tactic_cases___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__2); -l_Lean_Parser_Tactic_cases___closed__3 = _init_l_Lean_Parser_Tactic_cases___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__3); -l_Lean_Parser_Tactic_cases___closed__4 = _init_l_Lean_Parser_Tactic_cases___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__4); -l_Lean_Parser_Tactic_cases___closed__5 = _init_l_Lean_Parser_Tactic_cases___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__5); -l_Lean_Parser_Tactic_cases___closed__6 = _init_l_Lean_Parser_Tactic_cases___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__6); -l_Lean_Parser_Tactic_cases___closed__7 = _init_l_Lean_Parser_Tactic_cases___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__7); -l_Lean_Parser_Tactic_cases___closed__8 = _init_l_Lean_Parser_Tactic_cases___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__8); -l_Lean_Parser_Tactic_cases___closed__9 = _init_l_Lean_Parser_Tactic_cases___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__9); -l_Lean_Parser_Tactic_cases___closed__10 = _init_l_Lean_Parser_Tactic_cases___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases___closed__10); -l_Lean_Parser_Tactic_cases = _init_l_Lean_Parser_Tactic_cases(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases); -res = l___regBuiltinParser_Lean_Parser_Tactic_cases(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_casesTarget_formatter___closed__1 = _init_l_Lean_Parser_Tactic_casesTarget_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget_formatter___closed__1); -l_Lean_Parser_Tactic_casesTarget_formatter___closed__2 = _init_l_Lean_Parser_Tactic_casesTarget_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget_formatter___closed__2); -l_Lean_Parser_Tactic_casesTarget_formatter___closed__3 = _init_l_Lean_Parser_Tactic_casesTarget_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget_formatter___closed__3); -l_Lean_Parser_Tactic_cases_formatter___closed__1 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__1); -l_Lean_Parser_Tactic_cases_formatter___closed__2 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__2); -l_Lean_Parser_Tactic_cases_formatter___closed__3 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__3); -l_Lean_Parser_Tactic_cases_formatter___closed__4 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__4); -l_Lean_Parser_Tactic_cases_formatter___closed__5 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__5); -l_Lean_Parser_Tactic_cases_formatter___closed__6 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__6); -l_Lean_Parser_Tactic_cases_formatter___closed__7 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__7); -l_Lean_Parser_Tactic_cases_formatter___closed__8 = _init_l_Lean_Parser_Tactic_cases_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_formatter___closed__8); -l___regBuiltin_Lean_Parser_Tactic_cases_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_cases_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_cases_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_cases_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__1); -l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__2); -l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_casesTarget_parenthesizer___closed__3); -l_Lean_Parser_Tactic_cases_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__1); -l_Lean_Parser_Tactic_cases_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__2); -l_Lean_Parser_Tactic_cases_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__3); -l_Lean_Parser_Tactic_cases_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__4); -l_Lean_Parser_Tactic_cases_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__5); -l_Lean_Parser_Tactic_cases_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__6); -l_Lean_Parser_Tactic_cases_parenthesizer___closed__7 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__7); -l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1); -l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__2); -l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__3); -l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__4); -l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__5); -l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__6); -l_Lean_Parser_Tactic_matchAlt___closed__1 = _init_l_Lean_Parser_Tactic_matchAlt___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___closed__1); -l_Lean_Parser_Tactic_matchAlt___closed__2 = _init_l_Lean_Parser_Tactic_matchAlt___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___closed__2); -l_Lean_Parser_Tactic_matchAlt___closed__3 = _init_l_Lean_Parser_Tactic_matchAlt___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___closed__3); -l_Lean_Parser_Tactic_matchAlt___closed__4 = _init_l_Lean_Parser_Tactic_matchAlt___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___closed__4); -l_Lean_Parser_Tactic_matchAlt___closed__5 = _init_l_Lean_Parser_Tactic_matchAlt___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___closed__5); -l_Lean_Parser_Tactic_matchAlt___closed__6 = _init_l_Lean_Parser_Tactic_matchAlt___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt___closed__6); -l_Lean_Parser_Tactic_matchAlt = _init_l_Lean_Parser_Tactic_matchAlt(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt); -l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__1); -l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__2); -l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__3); -l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__4); -l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__5); -l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__6); -l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___elambda__1___closed__7); -l_Lean_Parser_Tactic_matchAlts___closed__1 = _init_l_Lean_Parser_Tactic_matchAlts___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__1); -l_Lean_Parser_Tactic_matchAlts___closed__2 = _init_l_Lean_Parser_Tactic_matchAlts___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__2); -l_Lean_Parser_Tactic_matchAlts___closed__3 = _init_l_Lean_Parser_Tactic_matchAlts___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__3); -l_Lean_Parser_Tactic_matchAlts___closed__4 = _init_l_Lean_Parser_Tactic_matchAlts___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__4); -l_Lean_Parser_Tactic_matchAlts___closed__5 = _init_l_Lean_Parser_Tactic_matchAlts___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__5); -l_Lean_Parser_Tactic_matchAlts___closed__6 = _init_l_Lean_Parser_Tactic_matchAlts___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__6); -l_Lean_Parser_Tactic_matchAlts___closed__7 = _init_l_Lean_Parser_Tactic_matchAlts___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__7); -l_Lean_Parser_Tactic_matchAlts___closed__8 = _init_l_Lean_Parser_Tactic_matchAlts___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts___closed__8); -l_Lean_Parser_Tactic_matchAlts = _init_l_Lean_Parser_Tactic_matchAlts(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts); -l_Lean_Parser_Tactic_match___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__1); -l_Lean_Parser_Tactic_match___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__2); -l_Lean_Parser_Tactic_match___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__3); -l_Lean_Parser_Tactic_match___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__4); -l_Lean_Parser_Tactic_match___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__5); -l_Lean_Parser_Tactic_match___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__6); -l_Lean_Parser_Tactic_match___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__7); -l_Lean_Parser_Tactic_match___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__8); -l_Lean_Parser_Tactic_match___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__9); -l_Lean_Parser_Tactic_match___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_match___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___elambda__1___closed__10); -l_Lean_Parser_Tactic_match___closed__1 = _init_l_Lean_Parser_Tactic_match___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__1); -l_Lean_Parser_Tactic_match___closed__2 = _init_l_Lean_Parser_Tactic_match___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__2); -l_Lean_Parser_Tactic_match___closed__3 = _init_l_Lean_Parser_Tactic_match___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__3); -l_Lean_Parser_Tactic_match___closed__4 = _init_l_Lean_Parser_Tactic_match___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__4); -l_Lean_Parser_Tactic_match___closed__5 = _init_l_Lean_Parser_Tactic_match___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__5); -l_Lean_Parser_Tactic_match___closed__6 = _init_l_Lean_Parser_Tactic_match___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__6); -l_Lean_Parser_Tactic_match___closed__7 = _init_l_Lean_Parser_Tactic_match___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__7); -l_Lean_Parser_Tactic_match___closed__8 = _init_l_Lean_Parser_Tactic_match___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__8); -l_Lean_Parser_Tactic_match___closed__9 = _init_l_Lean_Parser_Tactic_match___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__9); -l_Lean_Parser_Tactic_match___closed__10 = _init_l_Lean_Parser_Tactic_match___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_match___closed__10); -l_Lean_Parser_Tactic_match = _init_l_Lean_Parser_Tactic_match(); -lean_mark_persistent(l_Lean_Parser_Tactic_match); -res = l___regBuiltinParser_Lean_Parser_Tactic_match(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_matchAlt_formatter___closed__1 = _init_l_Lean_Parser_Tactic_matchAlt_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt_formatter___closed__1); -l_Lean_Parser_Tactic_matchAlt_formatter___closed__2 = _init_l_Lean_Parser_Tactic_matchAlt_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt_formatter___closed__2); -l_Lean_Parser_Tactic_matchAlt_formatter___closed__3 = _init_l_Lean_Parser_Tactic_matchAlt_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt_formatter___closed__3); -l_Lean_Parser_Tactic_matchAlts_formatter___closed__1 = _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_formatter___closed__1); -l_Lean_Parser_Tactic_matchAlts_formatter___closed__2 = _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_formatter___closed__2); -l_Lean_Parser_Tactic_matchAlts_formatter___closed__3 = _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_formatter___closed__3); -l_Lean_Parser_Tactic_matchAlts_formatter___closed__4 = _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_formatter___closed__4); -l_Lean_Parser_Tactic_matchAlts_formatter___closed__5 = _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_formatter___closed__5); -l_Lean_Parser_Tactic_matchAlts_formatter___closed__6 = _init_l_Lean_Parser_Tactic_matchAlts_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_formatter___closed__6); -l_Lean_Parser_Tactic_match_formatter___closed__1 = _init_l_Lean_Parser_Tactic_match_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__1); -l_Lean_Parser_Tactic_match_formatter___closed__2 = _init_l_Lean_Parser_Tactic_match_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__2); -l_Lean_Parser_Tactic_match_formatter___closed__3 = _init_l_Lean_Parser_Tactic_match_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__3); -l_Lean_Parser_Tactic_match_formatter___closed__4 = _init_l_Lean_Parser_Tactic_match_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__4); -l_Lean_Parser_Tactic_match_formatter___closed__5 = _init_l_Lean_Parser_Tactic_match_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__5); -l_Lean_Parser_Tactic_match_formatter___closed__6 = _init_l_Lean_Parser_Tactic_match_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__6); -l_Lean_Parser_Tactic_match_formatter___closed__7 = _init_l_Lean_Parser_Tactic_match_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__7); -l_Lean_Parser_Tactic_match_formatter___closed__8 = _init_l_Lean_Parser_Tactic_match_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_formatter___closed__8); -l___regBuiltin_Lean_Parser_Tactic_match_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_match_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_match_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_match_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__1); -l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__2); -l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__3); -l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__1); -l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__2); -l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__3); -l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__4); -l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__5); -l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__6); -l_Lean_Parser_Tactic_match_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_parenthesizer___closed__1); -l_Lean_Parser_Tactic_match_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_parenthesizer___closed__2); -l_Lean_Parser_Tactic_match_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_parenthesizer___closed__3); -l_Lean_Parser_Tactic_match_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_parenthesizer___closed__4); -l_Lean_Parser_Tactic_match_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_parenthesizer___closed__5); -l_Lean_Parser_Tactic_match_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_parenthesizer___closed__6); -l_Lean_Parser_Tactic_match_parenthesizer___closed__7 = _init_l_Lean_Parser_Tactic_match_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_match_parenthesizer___closed__7); -l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_match_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1); -l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2); -l_Lean_Parser_Tactic_introMatch___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___elambda__1___closed__3); -l_Lean_Parser_Tactic_introMatch___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___elambda__1___closed__4); -l_Lean_Parser_Tactic_introMatch___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___elambda__1___closed__5); -l_Lean_Parser_Tactic_introMatch___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___elambda__1___closed__6); -l_Lean_Parser_Tactic_introMatch___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___elambda__1___closed__7); -l_Lean_Parser_Tactic_introMatch___closed__1 = _init_l_Lean_Parser_Tactic_introMatch___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___closed__1); -l_Lean_Parser_Tactic_introMatch___closed__2 = _init_l_Lean_Parser_Tactic_introMatch___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___closed__2); -l_Lean_Parser_Tactic_introMatch___closed__3 = _init_l_Lean_Parser_Tactic_introMatch___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___closed__3); -l_Lean_Parser_Tactic_introMatch___closed__4 = _init_l_Lean_Parser_Tactic_introMatch___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___closed__4); -l_Lean_Parser_Tactic_introMatch___closed__5 = _init_l_Lean_Parser_Tactic_introMatch___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___closed__5); -l_Lean_Parser_Tactic_introMatch___closed__6 = _init_l_Lean_Parser_Tactic_introMatch___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch___closed__6); -l_Lean_Parser_Tactic_introMatch = _init_l_Lean_Parser_Tactic_introMatch(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch); -res = l___regBuiltinParser_Lean_Parser_Tactic_introMatch(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_introMatch_formatter___closed__1 = _init_l_Lean_Parser_Tactic_introMatch_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch_formatter___closed__1); -l_Lean_Parser_Tactic_introMatch_formatter___closed__2 = _init_l_Lean_Parser_Tactic_introMatch_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch_formatter___closed__2); -l_Lean_Parser_Tactic_introMatch_formatter___closed__3 = _init_l_Lean_Parser_Tactic_introMatch_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch_formatter___closed__3); -l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_introMatch_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1); -l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__2); -l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_introMatch_parenthesizer___closed__3); -l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_withIds___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_withIds___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds___elambda__1___closed__1); -l_Lean_Parser_Tactic_withIds___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_withIds___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds___elambda__1___closed__2); -l_Lean_Parser_Tactic_withIds___closed__1 = _init_l_Lean_Parser_Tactic_withIds___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds___closed__1); -l_Lean_Parser_Tactic_withIds___closed__2 = _init_l_Lean_Parser_Tactic_withIds___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds___closed__2); -l_Lean_Parser_Tactic_withIds___closed__3 = _init_l_Lean_Parser_Tactic_withIds___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds___closed__3); -l_Lean_Parser_Tactic_withIds___closed__4 = _init_l_Lean_Parser_Tactic_withIds___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds___closed__4); -l_Lean_Parser_Tactic_withIds = _init_l_Lean_Parser_Tactic_withIds(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds); -l_Lean_Parser_Tactic_injection___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__1); -l_Lean_Parser_Tactic_injection___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__2); -l_Lean_Parser_Tactic_injection___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__3); -l_Lean_Parser_Tactic_injection___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__4); -l_Lean_Parser_Tactic_injection___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__5); -l_Lean_Parser_Tactic_injection___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__6); -l_Lean_Parser_Tactic_injection___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__7); -l_Lean_Parser_Tactic_injection___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__8); -l_Lean_Parser_Tactic_injection___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__9); -l_Lean_Parser_Tactic_injection___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__10); -l_Lean_Parser_Tactic_injection___elambda__1___closed__11 = _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___elambda__1___closed__11); -l_Lean_Parser_Tactic_injection___closed__1 = _init_l_Lean_Parser_Tactic_injection___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__1); -l_Lean_Parser_Tactic_injection___closed__2 = _init_l_Lean_Parser_Tactic_injection___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__2); -l_Lean_Parser_Tactic_injection___closed__3 = _init_l_Lean_Parser_Tactic_injection___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__3); -l_Lean_Parser_Tactic_injection___closed__4 = _init_l_Lean_Parser_Tactic_injection___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__4); -l_Lean_Parser_Tactic_injection___closed__5 = _init_l_Lean_Parser_Tactic_injection___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__5); -l_Lean_Parser_Tactic_injection___closed__6 = _init_l_Lean_Parser_Tactic_injection___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__6); -l_Lean_Parser_Tactic_injection___closed__7 = _init_l_Lean_Parser_Tactic_injection___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__7); -l_Lean_Parser_Tactic_injection___closed__8 = _init_l_Lean_Parser_Tactic_injection___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection___closed__8); -l_Lean_Parser_Tactic_injection = _init_l_Lean_Parser_Tactic_injection(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection); -res = l___regBuiltinParser_Lean_Parser_Tactic_injection(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_withIds_formatter___closed__1 = _init_l_Lean_Parser_Tactic_withIds_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds_formatter___closed__1); -l_Lean_Parser_Tactic_withIds_formatter___closed__2 = _init_l_Lean_Parser_Tactic_withIds_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds_formatter___closed__2); -l_Lean_Parser_Tactic_injection_formatter___closed__1 = _init_l_Lean_Parser_Tactic_injection_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_formatter___closed__1); -l_Lean_Parser_Tactic_injection_formatter___closed__2 = _init_l_Lean_Parser_Tactic_injection_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_formatter___closed__2); -l_Lean_Parser_Tactic_injection_formatter___closed__3 = _init_l_Lean_Parser_Tactic_injection_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_formatter___closed__3); -l_Lean_Parser_Tactic_injection_formatter___closed__4 = _init_l_Lean_Parser_Tactic_injection_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_formatter___closed__4); -l_Lean_Parser_Tactic_injection_formatter___closed__5 = _init_l_Lean_Parser_Tactic_injection_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_formatter___closed__5); -l_Lean_Parser_Tactic_injection_formatter___closed__6 = _init_l_Lean_Parser_Tactic_injection_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_formatter___closed__6); -l___regBuiltin_Lean_Parser_Tactic_injection_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_injection_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_injection_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_injection_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1); -l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2); -l_Lean_Parser_Tactic_injection_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__1); -l_Lean_Parser_Tactic_injection_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__2); -l_Lean_Parser_Tactic_injection_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__3); -l_Lean_Parser_Tactic_injection_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__4); -l_Lean_Parser_Tactic_injection_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__5); -l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_paren___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___elambda__1___closed__1); -l_Lean_Parser_Tactic_paren___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___elambda__1___closed__2); -l_Lean_Parser_Tactic_paren___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___elambda__1___closed__3); -l_Lean_Parser_Tactic_paren___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___elambda__1___closed__4); -l_Lean_Parser_Tactic_paren___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___elambda__1___closed__5); -l_Lean_Parser_Tactic_paren___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___elambda__1___closed__6); -l_Lean_Parser_Tactic_paren___closed__1 = _init_l_Lean_Parser_Tactic_paren___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___closed__1); -l_Lean_Parser_Tactic_paren___closed__2 = _init_l_Lean_Parser_Tactic_paren___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___closed__2); -l_Lean_Parser_Tactic_paren___closed__3 = _init_l_Lean_Parser_Tactic_paren___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___closed__3); -l_Lean_Parser_Tactic_paren___closed__4 = _init_l_Lean_Parser_Tactic_paren___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___closed__4); -l_Lean_Parser_Tactic_paren___closed__5 = _init_l_Lean_Parser_Tactic_paren___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___closed__5); -l_Lean_Parser_Tactic_paren___closed__6 = _init_l_Lean_Parser_Tactic_paren___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___closed__6); -l_Lean_Parser_Tactic_paren___closed__7 = _init_l_Lean_Parser_Tactic_paren___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren___closed__7); -l_Lean_Parser_Tactic_paren = _init_l_Lean_Parser_Tactic_paren(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren); -res = l___regBuiltinParser_Lean_Parser_Tactic_paren(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_paren_formatter___closed__1 = _init_l_Lean_Parser_Tactic_paren_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_formatter___closed__1); -l_Lean_Parser_Tactic_paren_formatter___closed__2 = _init_l_Lean_Parser_Tactic_paren_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_formatter___closed__2); -l_Lean_Parser_Tactic_paren_formatter___closed__3 = _init_l_Lean_Parser_Tactic_paren_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_formatter___closed__3); -l_Lean_Parser_Tactic_paren_formatter___closed__4 = _init_l_Lean_Parser_Tactic_paren_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_formatter___closed__4); -l___regBuiltin_Lean_Parser_Tactic_paren_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_paren_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_paren_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_paren_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_paren_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__1); -l_Lean_Parser_Tactic_paren_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__2); -l_Lean_Parser_Tactic_paren_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__3); -l_Lean_Parser_Tactic_paren_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__4); -l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Parser_Tactic_nestedTactic = _init_l_Lean_Parser_Tactic_nestedTactic(); lean_mark_persistent(l_Lean_Parser_Tactic_nestedTactic); l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic___closed__1 = _init_l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic___closed__1(); @@ -23110,327 +911,6 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_nestedTactic_parenthesize res = l___regBuiltin_Lean_Parser_Tactic_nestedTactic_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Tactic_orelse___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__1); -l_Lean_Parser_Tactic_orelse___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__2); -l_Lean_Parser_Tactic_orelse___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__3); -l_Lean_Parser_Tactic_orelse___closed__1 = _init_l_Lean_Parser_Tactic_orelse___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__1); -l_Lean_Parser_Tactic_orelse___closed__2 = _init_l_Lean_Parser_Tactic_orelse___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__2); -l_Lean_Parser_Tactic_orelse___closed__3 = _init_l_Lean_Parser_Tactic_orelse___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__3); -l_Lean_Parser_Tactic_orelse___closed__4 = _init_l_Lean_Parser_Tactic_orelse___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__4); -l_Lean_Parser_Tactic_orelse___closed__5 = _init_l_Lean_Parser_Tactic_orelse___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__5); -l_Lean_Parser_Tactic_orelse___closed__6 = _init_l_Lean_Parser_Tactic_orelse___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__6); -l_Lean_Parser_Tactic_orelse___closed__7 = _init_l_Lean_Parser_Tactic_orelse___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__7); -l_Lean_Parser_Tactic_orelse = _init_l_Lean_Parser_Tactic_orelse(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse); -res = l___regBuiltinParser_Lean_Parser_Tactic_orelse(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_orelse_formatter___closed__1 = _init_l_Lean_Parser_Tactic_orelse_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse_formatter___closed__1); -l_Lean_Parser_Tactic_orelse_formatter___closed__2 = _init_l_Lean_Parser_Tactic_orelse_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse_formatter___closed__2); -l___regBuiltin_Lean_Parser_Tactic_orelse_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_orelse_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_orelse_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_orelse_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1); -l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_have___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_have___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___elambda__1___closed__1); -l_Lean_Parser_Tactic_have___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_have___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___elambda__1___closed__2); -l_Lean_Parser_Tactic_have___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_have___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___elambda__1___closed__3); -l_Lean_Parser_Tactic_have___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_have___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___elambda__1___closed__4); -l_Lean_Parser_Tactic_have___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_have___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___elambda__1___closed__5); -l_Lean_Parser_Tactic_have___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_have___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___elambda__1___closed__6); -l_Lean_Parser_Tactic_have___closed__1 = _init_l_Lean_Parser_Tactic_have___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___closed__1); -l_Lean_Parser_Tactic_have___closed__2 = _init_l_Lean_Parser_Tactic_have___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___closed__2); -l_Lean_Parser_Tactic_have___closed__3 = _init_l_Lean_Parser_Tactic_have___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___closed__3); -l_Lean_Parser_Tactic_have___closed__4 = _init_l_Lean_Parser_Tactic_have___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___closed__4); -l_Lean_Parser_Tactic_have___closed__5 = _init_l_Lean_Parser_Tactic_have___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_have___closed__5); -l_Lean_Parser_Tactic_have = _init_l_Lean_Parser_Tactic_have(); -lean_mark_persistent(l_Lean_Parser_Tactic_have); -res = l___regBuiltinParser_Lean_Parser_Tactic_have(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_have_formatter___closed__1 = _init_l_Lean_Parser_Tactic_have_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_have_formatter___closed__1); -l_Lean_Parser_Tactic_have_formatter___closed__2 = _init_l_Lean_Parser_Tactic_have_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_have_formatter___closed__2); -l___regBuiltin_Lean_Parser_Tactic_have_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_have_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_have_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_have_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_have_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_have_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_have_parenthesizer___closed__1); -l_Lean_Parser_Tactic_have_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_have_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_have_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_have_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_suffices___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___elambda__1___closed__1); -l_Lean_Parser_Tactic_suffices___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___elambda__1___closed__2); -l_Lean_Parser_Tactic_suffices___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___elambda__1___closed__3); -l_Lean_Parser_Tactic_suffices___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___elambda__1___closed__4); -l_Lean_Parser_Tactic_suffices___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___elambda__1___closed__5); -l_Lean_Parser_Tactic_suffices___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___elambda__1___closed__6); -l_Lean_Parser_Tactic_suffices___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___elambda__1___closed__7); -l_Lean_Parser_Tactic_suffices___closed__1 = _init_l_Lean_Parser_Tactic_suffices___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___closed__1); -l_Lean_Parser_Tactic_suffices___closed__2 = _init_l_Lean_Parser_Tactic_suffices___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___closed__2); -l_Lean_Parser_Tactic_suffices___closed__3 = _init_l_Lean_Parser_Tactic_suffices___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___closed__3); -l_Lean_Parser_Tactic_suffices___closed__4 = _init_l_Lean_Parser_Tactic_suffices___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___closed__4); -l_Lean_Parser_Tactic_suffices___closed__5 = _init_l_Lean_Parser_Tactic_suffices___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices___closed__5); -l_Lean_Parser_Tactic_suffices = _init_l_Lean_Parser_Tactic_suffices(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices); -res = l___regBuiltinParser_Lean_Parser_Tactic_suffices(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_suffices_formatter___closed__1 = _init_l_Lean_Parser_Tactic_suffices_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices_formatter___closed__1); -l_Lean_Parser_Tactic_suffices_formatter___closed__2 = _init_l_Lean_Parser_Tactic_suffices_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices_formatter___closed__2); -l___regBuiltin_Lean_Parser_Tactic_suffices_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_suffices_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_suffices_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_suffices_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_suffices_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_suffices_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices_parenthesizer___closed__1); -l_Lean_Parser_Tactic_suffices_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_suffices_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_suffices_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_show___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_show___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___elambda__1___closed__1); -l_Lean_Parser_Tactic_show___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_show___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___elambda__1___closed__2); -l_Lean_Parser_Tactic_show___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_show___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___elambda__1___closed__3); -l_Lean_Parser_Tactic_show___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_show___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___elambda__1___closed__4); -l_Lean_Parser_Tactic_show___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_show___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___elambda__1___closed__5); -l_Lean_Parser_Tactic_show___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_show___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___elambda__1___closed__6); -l_Lean_Parser_Tactic_show___closed__1 = _init_l_Lean_Parser_Tactic_show___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___closed__1); -l_Lean_Parser_Tactic_show___closed__2 = _init_l_Lean_Parser_Tactic_show___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___closed__2); -l_Lean_Parser_Tactic_show___closed__3 = _init_l_Lean_Parser_Tactic_show___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___closed__3); -l_Lean_Parser_Tactic_show___closed__4 = _init_l_Lean_Parser_Tactic_show___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___closed__4); -l_Lean_Parser_Tactic_show___closed__5 = _init_l_Lean_Parser_Tactic_show___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___closed__5); -l_Lean_Parser_Tactic_show___closed__6 = _init_l_Lean_Parser_Tactic_show___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_show___closed__6); -l_Lean_Parser_Tactic_show = _init_l_Lean_Parser_Tactic_show(); -lean_mark_persistent(l_Lean_Parser_Tactic_show); -res = l___regBuiltinParser_Lean_Parser_Tactic_show(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_show_formatter___closed__1 = _init_l_Lean_Parser_Tactic_show_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_show_formatter___closed__1); -l_Lean_Parser_Tactic_show_formatter___closed__2 = _init_l_Lean_Parser_Tactic_show_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_show_formatter___closed__2); -l_Lean_Parser_Tactic_show_formatter___closed__3 = _init_l_Lean_Parser_Tactic_show_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_show_formatter___closed__3); -l___regBuiltin_Lean_Parser_Tactic_show_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_show_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_show_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_show_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_show_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_show_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_show_parenthesizer___closed__1); -l_Lean_Parser_Tactic_show_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_show_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_show_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_let___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_let___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___elambda__1___closed__1); -l_Lean_Parser_Tactic_let___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_let___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___elambda__1___closed__2); -l_Lean_Parser_Tactic_let___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_let___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___elambda__1___closed__3); -l_Lean_Parser_Tactic_let___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_let___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___elambda__1___closed__4); -l_Lean_Parser_Tactic_let___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_let___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___elambda__1___closed__5); -l_Lean_Parser_Tactic_let___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_let___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___elambda__1___closed__6); -l_Lean_Parser_Tactic_let___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_let___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___elambda__1___closed__7); -l_Lean_Parser_Tactic_let___closed__1 = _init_l_Lean_Parser_Tactic_let___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___closed__1); -l_Lean_Parser_Tactic_let___closed__2 = _init_l_Lean_Parser_Tactic_let___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___closed__2); -l_Lean_Parser_Tactic_let___closed__3 = _init_l_Lean_Parser_Tactic_let___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___closed__3); -l_Lean_Parser_Tactic_let___closed__4 = _init_l_Lean_Parser_Tactic_let___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___closed__4); -l_Lean_Parser_Tactic_let___closed__5 = _init_l_Lean_Parser_Tactic_let___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_let___closed__5); -l_Lean_Parser_Tactic_let = _init_l_Lean_Parser_Tactic_let(); -lean_mark_persistent(l_Lean_Parser_Tactic_let); -res = l___regBuiltinParser_Lean_Parser_Tactic_let(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_let_formatter___closed__1 = _init_l_Lean_Parser_Tactic_let_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_formatter___closed__1); -l_Lean_Parser_Tactic_let_formatter___closed__2 = _init_l_Lean_Parser_Tactic_let_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_formatter___closed__2); -l___regBuiltin_Lean_Parser_Tactic_let_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_let_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_let_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_let_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_let_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_let_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_parenthesizer___closed__1); -l_Lean_Parser_Tactic_let_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_let_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_let_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1); -l_Lean_Parser_Tactic_let_x21___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___elambda__1___closed__2); -l_Lean_Parser_Tactic_let_x21___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___elambda__1___closed__3); -l_Lean_Parser_Tactic_let_x21___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___elambda__1___closed__4); -l_Lean_Parser_Tactic_let_x21___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___elambda__1___closed__5); -l_Lean_Parser_Tactic_let_x21___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___elambda__1___closed__6); -l_Lean_Parser_Tactic_let_x21___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___elambda__1___closed__7); -l_Lean_Parser_Tactic_let_x21___closed__1 = _init_l_Lean_Parser_Tactic_let_x21___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___closed__1); -l_Lean_Parser_Tactic_let_x21___closed__2 = _init_l_Lean_Parser_Tactic_let_x21___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___closed__2); -l_Lean_Parser_Tactic_let_x21___closed__3 = _init_l_Lean_Parser_Tactic_let_x21___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___closed__3); -l_Lean_Parser_Tactic_let_x21___closed__4 = _init_l_Lean_Parser_Tactic_let_x21___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___closed__4); -l_Lean_Parser_Tactic_let_x21___closed__5 = _init_l_Lean_Parser_Tactic_let_x21___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21___closed__5); -l_Lean_Parser_Tactic_let_x21 = _init_l_Lean_Parser_Tactic_let_x21(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21); -res = l___regBuiltinParser_Lean_Parser_Tactic_let_x21(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_let_x21_formatter___closed__1 = _init_l_Lean_Parser_Tactic_let_x21_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21_formatter___closed__1); -l_Lean_Parser_Tactic_let_x21_formatter___closed__2 = _init_l_Lean_Parser_Tactic_let_x21_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21_formatter___closed__2); -l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_let_x21_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1); -l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_let_x21_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_letrec___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___elambda__1___closed__1); -l_Lean_Parser_Tactic_letrec___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___elambda__1___closed__2); -l_Lean_Parser_Tactic_letrec___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___elambda__1___closed__3); -l_Lean_Parser_Tactic_letrec___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___elambda__1___closed__4); -l_Lean_Parser_Tactic_letrec___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_letrec___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___elambda__1___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(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__2); -l_Lean_Parser_Tactic_letrec___closed__3 = _init_l_Lean_Parser_Tactic_letrec___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__3); -l_Lean_Parser_Tactic_letrec___closed__4 = _init_l_Lean_Parser_Tactic_letrec___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__4); -l_Lean_Parser_Tactic_letrec___closed__5 = _init_l_Lean_Parser_Tactic_letrec___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__5); -l_Lean_Parser_Tactic_letrec = _init_l_Lean_Parser_Tactic_letrec(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec); -res = l___regBuiltinParser_Lean_Parser_Tactic_letrec(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_letrec_formatter___closed__1 = _init_l_Lean_Parser_Tactic_letrec_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec_formatter___closed__1); -l_Lean_Parser_Tactic_letrec_formatter___closed__2 = _init_l_Lean_Parser_Tactic_letrec_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec_formatter___closed__2); -l___regBuiltin_Lean_Parser_Tactic_letrec_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_letrec_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_letrec_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_letrec_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_letrec_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_letrec_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec_parenthesizer___closed__1); -l_Lean_Parser_Tactic_letrec_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_letrec_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_letrec_parenthesizer___closed__2); -l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_letrec_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 02dd4cf18c..fd4e47604c 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -66,6 +66,7 @@ lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_let_x2a_formatter___closed__2; lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_funImplicitBinder_formatter___closed__3; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr___closed__4; lean_object* l_Lean_Parser_Term_sufficesDecl_parenthesizer___closed__1; @@ -140,7 +141,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_sorry_formatter(lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__2; lean_object* l_Lean_Parser_Term_ensureExpectedType; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__6; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_have___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__1; @@ -605,7 +605,6 @@ lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_paren_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_seq1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___closed__3; lean_object* l_Lean_Parser_Term_dollarProj_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -624,7 +623,6 @@ extern lean_object* l_myMacro____x40_Init_Tactics___hyg_508____closed__4; lean_object* l_Lean_Parser_Term_letRecDecls; lean_object* l_Lean_Parser_Term_quotedName___closed__5; lean_object* l_Lean_Parser_Term_attributes___closed__7; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14; lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_optIdent___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__6; @@ -637,6 +635,7 @@ lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_byTactic___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_let_x2a_formatter___closed__1; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__3; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; lean_object* l_Lean_Parser_Term_hole___closed__2; lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__4; @@ -667,6 +666,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_letrec(lean_object*); lean_object* l_Lean_Parser_Term_decide; lean_object* l___regBuiltin_Lean_Parser_Term_subst_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer(lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14; lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_stateRefT_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_unreachable(lean_object*); @@ -1459,6 +1459,7 @@ lean_object* l_Lean_Parser_Term_explicit_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_app_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_typeOf___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_not___elambda__1___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__31; lean_object* l_Lean_Parser_Term_dbgTrace___closed__8; lean_object* l_Lean_Parser_Term_byTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__5; @@ -2363,6 +2364,7 @@ lean_object* l_Lean_Parser_Term_arrow_parenthesizer___closed__4; uint8_t l_Lean_Parser_Term_isIdent(lean_object*); lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_proj(lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; lean_object* l_Lean_Parser_Term_explicit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quotSeq; lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__6; @@ -2394,6 +2396,7 @@ lean_object* l_Lean_Parser_Term_dbgTrace_parenthesizer___closed__3; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__14; lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_show(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__28; lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__7; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__8; @@ -2723,7 +2726,6 @@ lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_syntheticHole_formatter___closed__1; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_optExprPrecedence___closed__2; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; lean_object* l_Lean_Parser_Term_letIdLhs___closed__4; lean_object* l_Lean_Parser_Term_typeAscription_formatter___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_formatter___closed__1; @@ -2928,7 +2930,6 @@ lean_object* l_Lean_Parser_Term_optExprPrecedence; lean_object* l___regBuiltinParser_Lean_Parser_Term_prop(lean_object*); lean_object* l_Lean_Parser_Term_panic___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__6; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__6; @@ -2987,6 +2988,7 @@ lean_object* l_Lean_Parser_Term_basicFun_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_macroDollarArg_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12; lean_object* l_Lean_Parser_Term_tparser_x21___closed__1; lean_object* l_Lean_Parser_Term_proj_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__3; @@ -3137,6 +3139,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_arrow(lean_object*); lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_namedPattern(lean_object*); lean_object* l_Lean_Parser_Term_attrInstance___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__30; lean_object* l_Lean_Parser_Term_typeAscription___closed__6; lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_haveDecl___closed__6; @@ -3387,6 +3390,7 @@ lean_object* l_Lean_Parser_Term_binderIdent___elambda__1(lean_object*, lean_obje lean_object* l_Lean_Parser_Term_parser_x21_formatter___closed__5; lean_object* l_Lean_Parser_Term_simpleBinder___closed__6; lean_object* l_Lean_Parser_Term_ensureTypeOf___closed__6; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_borrowed(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__11; @@ -3396,10 +3400,10 @@ lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__4; lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_Parser_Term_bracketedBinder_formatter(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; lean_object* l_Lean_Parser_Term_let_x21_formatter___closed__2; lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__29; 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*); @@ -5297,7 +5301,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5339,7 +5343,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5640,7 +5644,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5672,7 +5676,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -12361,7 +12365,7 @@ lean_object* l_Lean_Parser_Term_optSemicolon_formatter(lean_object* x_1, lean_ob _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -12672,7 +12676,7 @@ lean_object* l_Lean_Parser_Term_optSemicolon_parenthesizer(lean_object* x_1, lea _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -15438,7 +15442,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_formatter___closed__16() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__12; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__12; x_2 = l_Lean_Parser_Term_structInst_formatter___closed__15; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -15840,7 +15844,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__14; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__14; x_2 = l_Lean_Parser_Term_structInst_parenthesizer___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -19919,7 +19923,7 @@ static lean_object* _init_l_Lean_Parser_Term_forall_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; x_2 = l_Lean_Parser_Term_forall_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -20175,7 +20179,7 @@ static lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__5() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; x_2 = l_Lean_Parser_Term_forall_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -21602,7 +21606,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -21638,7 +21642,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -21706,7 +21710,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__15() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__14; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -22117,7 +22121,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__5 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -22153,7 +22157,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__8 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -22211,7 +22215,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__1 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__26; x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__12; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -23649,7 +23653,7 @@ static lean_object* _init_l_Lean_Parser_Term_basicFun_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; x_2 = l_Lean_Parser_Term_basicFun_formatter___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -23984,7 +23988,7 @@ static lean_object* _init_l_Lean_Parser_Term_basicFun_parenthesizer___closed__2( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; x_2 = l_Lean_Parser_Term_basicFun_parenthesizer___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -27349,7 +27353,7 @@ static lean_object* _init_l_Lean_Parser_Term_letIdLhs_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; x_2 = l_Lean_Parser_Term_letIdLhs_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -27791,7 +27795,7 @@ static lean_object* _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; x_2 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -30148,7 +30152,7 @@ static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__3( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__18; x_2 = l_Lean_Parser_Term_attrInstance_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -30543,7 +30547,7 @@ static lean_object* _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_571____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__20; x_2 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -42738,6 +42742,46 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_matchDiscr; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_match_formatter___closed__3; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_match_parenthesizer___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407_(lean_object* x_1) { _start: { @@ -42889,396 +42933,490 @@ lean_inc(x_61); lean_dec(x_60); x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__27; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_55, x_62, x_61); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_64 = lean_ctor_get(x_63, 1); +lean_inc(x_64); +lean_dec(x_63); +x_65 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__28; +x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__29; +x_67 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_65, x_66, x_64); +if (lean_obj_tag(x_67) == 0) +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_67, 1); +lean_inc(x_68); +lean_dec(x_67); +x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__30; +x_70 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_65, x_69, x_68); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_70, 1); +lean_inc(x_71); +lean_dec(x_70); +x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__31; +x_73 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_65, x_72, x_71); +return x_73; +} +else +{ +uint8_t x_74; +x_74 = !lean_is_exclusive(x_70); +if (x_74 == 0) +{ +return x_70; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_70, 0); +x_76 = lean_ctor_get(x_70, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_70); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +else +{ +uint8_t x_78; +x_78 = !lean_is_exclusive(x_67); +if (x_78 == 0) +{ +return x_67; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_67, 0); +x_80 = lean_ctor_get(x_67, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_67); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +return x_81; +} +} +} +else +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_63); +if (x_82 == 0) +{ return x_63; } else { -uint8_t x_64; -x_64 = !lean_is_exclusive(x_60); -if (x_64 == 0) +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_63, 0); +x_84 = lean_ctor_get(x_63, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_63); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +else +{ +uint8_t x_86; +x_86 = !lean_is_exclusive(x_60); +if (x_86 == 0) { return x_60; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_60, 0); -x_66 = lean_ctor_get(x_60, 1); -lean_inc(x_66); -lean_inc(x_65); +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_60, 0); +x_88 = lean_ctor_get(x_60, 1); +lean_inc(x_88); +lean_inc(x_87); lean_dec(x_60); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -return x_67; +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 { -uint8_t x_68; -x_68 = !lean_is_exclusive(x_57); -if (x_68 == 0) +uint8_t x_90; +x_90 = !lean_is_exclusive(x_57); +if (x_90 == 0) { return x_57; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_57, 0); -x_70 = lean_ctor_get(x_57, 1); -lean_inc(x_70); -lean_inc(x_69); +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_57, 0); +x_92 = lean_ctor_get(x_57, 1); +lean_inc(x_92); +lean_inc(x_91); lean_dec(x_57); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -return x_71; +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +return x_93; } } } else { -uint8_t x_72; -x_72 = !lean_is_exclusive(x_53); -if (x_72 == 0) +uint8_t x_94; +x_94 = !lean_is_exclusive(x_53); +if (x_94 == 0) { return x_53; } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_53, 0); -x_74 = lean_ctor_get(x_53, 1); -lean_inc(x_74); -lean_inc(x_73); +lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_95 = lean_ctor_get(x_53, 0); +x_96 = lean_ctor_get(x_53, 1); +lean_inc(x_96); +lean_inc(x_95); lean_dec(x_53); -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_73); -lean_ctor_set(x_75, 1, x_74); -return x_75; +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_95); +lean_ctor_set(x_97, 1, x_96); +return x_97; } } } else { -uint8_t x_76; -x_76 = !lean_is_exclusive(x_50); -if (x_76 == 0) +uint8_t x_98; +x_98 = !lean_is_exclusive(x_50); +if (x_98 == 0) { return x_50; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_50, 0); -x_78 = lean_ctor_get(x_50, 1); -lean_inc(x_78); -lean_inc(x_77); +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_50, 0); +x_100 = lean_ctor_get(x_50, 1); +lean_inc(x_100); +lean_inc(x_99); lean_dec(x_50); -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); -return x_79; +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +return x_101; } } } else { -uint8_t x_80; -x_80 = !lean_is_exclusive(x_47); -if (x_80 == 0) +uint8_t x_102; +x_102 = !lean_is_exclusive(x_47); +if (x_102 == 0) { return x_47; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = lean_ctor_get(x_47, 0); -x_82 = lean_ctor_get(x_47, 1); -lean_inc(x_82); -lean_inc(x_81); +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_47, 0); +x_104 = lean_ctor_get(x_47, 1); +lean_inc(x_104); +lean_inc(x_103); lean_dec(x_47); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -return x_83; +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; } } } else { -uint8_t x_84; -x_84 = !lean_is_exclusive(x_43); -if (x_84 == 0) +uint8_t x_106; +x_106 = !lean_is_exclusive(x_43); +if (x_106 == 0) { return x_43; } else { -lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_85 = lean_ctor_get(x_43, 0); -x_86 = lean_ctor_get(x_43, 1); -lean_inc(x_86); -lean_inc(x_85); +lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_107 = lean_ctor_get(x_43, 0); +x_108 = lean_ctor_get(x_43, 1); +lean_inc(x_108); +lean_inc(x_107); lean_dec(x_43); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_86); -return x_87; +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +return x_109; } } } else { -uint8_t x_88; -x_88 = !lean_is_exclusive(x_40); -if (x_88 == 0) +uint8_t x_110; +x_110 = !lean_is_exclusive(x_40); +if (x_110 == 0) { return x_40; } else { -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_40, 0); -x_90 = lean_ctor_get(x_40, 1); -lean_inc(x_90); -lean_inc(x_89); +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_40, 0); +x_112 = lean_ctor_get(x_40, 1); +lean_inc(x_112); +lean_inc(x_111); lean_dec(x_40); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_90); -return x_91; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +return x_113; } } } else { -uint8_t x_92; -x_92 = !lean_is_exclusive(x_37); -if (x_92 == 0) +uint8_t x_114; +x_114 = !lean_is_exclusive(x_37); +if (x_114 == 0) { return x_37; } else { -lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_37, 0); -x_94 = lean_ctor_get(x_37, 1); -lean_inc(x_94); -lean_inc(x_93); +lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_115 = lean_ctor_get(x_37, 0); +x_116 = lean_ctor_get(x_37, 1); +lean_inc(x_116); +lean_inc(x_115); lean_dec(x_37); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_93); -lean_ctor_set(x_95, 1, x_94); -return x_95; +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +return x_117; } } } else { -uint8_t x_96; -x_96 = !lean_is_exclusive(x_33); -if (x_96 == 0) +uint8_t x_118; +x_118 = !lean_is_exclusive(x_33); +if (x_118 == 0) { return x_33; } else { -lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_97 = lean_ctor_get(x_33, 0); -x_98 = lean_ctor_get(x_33, 1); -lean_inc(x_98); -lean_inc(x_97); +lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_119 = lean_ctor_get(x_33, 0); +x_120 = lean_ctor_get(x_33, 1); +lean_inc(x_120); +lean_inc(x_119); lean_dec(x_33); -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_97); -lean_ctor_set(x_99, 1, x_98); -return x_99; +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_119); +lean_ctor_set(x_121, 1, x_120); +return x_121; } } } else { -uint8_t x_100; -x_100 = !lean_is_exclusive(x_30); -if (x_100 == 0) +uint8_t x_122; +x_122 = !lean_is_exclusive(x_30); +if (x_122 == 0) { return x_30; } else { -lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_101 = lean_ctor_get(x_30, 0); -x_102 = lean_ctor_get(x_30, 1); -lean_inc(x_102); -lean_inc(x_101); +lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_123 = lean_ctor_get(x_30, 0); +x_124 = lean_ctor_get(x_30, 1); +lean_inc(x_124); +lean_inc(x_123); lean_dec(x_30); -x_103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_103, 0, x_101); -lean_ctor_set(x_103, 1, x_102); -return x_103; +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_123); +lean_ctor_set(x_125, 1, x_124); +return x_125; } } } else { -uint8_t x_104; -x_104 = !lean_is_exclusive(x_27); -if (x_104 == 0) +uint8_t x_126; +x_126 = !lean_is_exclusive(x_27); +if (x_126 == 0) { return x_27; } else { -lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_105 = lean_ctor_get(x_27, 0); -x_106 = lean_ctor_get(x_27, 1); -lean_inc(x_106); -lean_inc(x_105); +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_27, 0); +x_128 = lean_ctor_get(x_27, 1); +lean_inc(x_128); +lean_inc(x_127); lean_dec(x_27); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_105); -lean_ctor_set(x_107, 1, x_106); -return x_107; +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_127); +lean_ctor_set(x_129, 1, x_128); +return x_129; } } } else { -uint8_t x_108; -x_108 = !lean_is_exclusive(x_23); -if (x_108 == 0) +uint8_t x_130; +x_130 = !lean_is_exclusive(x_23); +if (x_130 == 0) { return x_23; } else { -lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_109 = lean_ctor_get(x_23, 0); -x_110 = lean_ctor_get(x_23, 1); -lean_inc(x_110); -lean_inc(x_109); +lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_131 = lean_ctor_get(x_23, 0); +x_132 = lean_ctor_get(x_23, 1); +lean_inc(x_132); +lean_inc(x_131); lean_dec(x_23); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_109); -lean_ctor_set(x_111, 1, x_110); -return x_111; +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_131); +lean_ctor_set(x_133, 1, x_132); +return x_133; } } } else { -uint8_t x_112; -x_112 = !lean_is_exclusive(x_20); -if (x_112 == 0) +uint8_t x_134; +x_134 = !lean_is_exclusive(x_20); +if (x_134 == 0) { return x_20; } else { -lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_113 = lean_ctor_get(x_20, 0); -x_114 = lean_ctor_get(x_20, 1); -lean_inc(x_114); -lean_inc(x_113); +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_20, 0); +x_136 = lean_ctor_get(x_20, 1); +lean_inc(x_136); +lean_inc(x_135); lean_dec(x_20); -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_113); -lean_ctor_set(x_115, 1, x_114); -return x_115; +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +return x_137; } } } else { -uint8_t x_116; -x_116 = !lean_is_exclusive(x_17); -if (x_116 == 0) +uint8_t x_138; +x_138 = !lean_is_exclusive(x_17); +if (x_138 == 0) { return x_17; } else { -lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_117 = lean_ctor_get(x_17, 0); -x_118 = lean_ctor_get(x_17, 1); -lean_inc(x_118); -lean_inc(x_117); +lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_17, 0); +x_140 = lean_ctor_get(x_17, 1); +lean_inc(x_140); +lean_inc(x_139); lean_dec(x_17); -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_117); -lean_ctor_set(x_119, 1, x_118); -return x_119; +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_139); +lean_ctor_set(x_141, 1, x_140); +return x_141; } } } else { -uint8_t x_120; -x_120 = !lean_is_exclusive(x_13); -if (x_120 == 0) +uint8_t x_142; +x_142 = !lean_is_exclusive(x_13); +if (x_142 == 0) { return x_13; } else { -lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_121 = lean_ctor_get(x_13, 0); -x_122 = lean_ctor_get(x_13, 1); -lean_inc(x_122); -lean_inc(x_121); +lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_143 = lean_ctor_get(x_13, 0); +x_144 = lean_ctor_get(x_13, 1); +lean_inc(x_144); +lean_inc(x_143); lean_dec(x_13); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_121); -lean_ctor_set(x_123, 1, x_122); -return x_123; +x_145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +return x_145; } } } else { -uint8_t x_124; -x_124 = !lean_is_exclusive(x_9); -if (x_124 == 0) +uint8_t x_146; +x_146 = !lean_is_exclusive(x_9); +if (x_146 == 0) { return x_9; } else { -lean_object* x_125; lean_object* x_126; lean_object* x_127; -x_125 = lean_ctor_get(x_9, 0); -x_126 = lean_ctor_get(x_9, 1); -lean_inc(x_126); -lean_inc(x_125); +lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_147 = lean_ctor_get(x_9, 0); +x_148 = lean_ctor_get(x_9, 1); +lean_inc(x_148); +lean_inc(x_147); lean_dec(x_9); -x_127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_127, 0, x_125); -lean_ctor_set(x_127, 1, x_126); -return x_127; +x_149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_149, 0, x_147); +lean_ctor_set(x_149, 1, x_148); +return x_149; } } } else { -uint8_t x_128; -x_128 = !lean_is_exclusive(x_5); -if (x_128 == 0) +uint8_t x_150; +x_150 = !lean_is_exclusive(x_5); +if (x_150 == 0) { return x_5; } else { -lean_object* x_129; lean_object* x_130; lean_object* x_131; -x_129 = lean_ctor_get(x_5, 0); -x_130 = lean_ctor_get(x_5, 1); -lean_inc(x_130); -lean_inc(x_129); +lean_object* x_151; lean_object* x_152; lean_object* x_153; +x_151 = lean_ctor_get(x_5, 0); +x_152 = lean_ctor_get(x_5, 1); +lean_inc(x_152); +lean_inc(x_151); lean_dec(x_5); -x_131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_131, 0, x_129); -lean_ctor_set(x_131, 1, x_130); -return x_131; +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_151); +lean_ctor_set(x_153, 1, x_152); +return x_153; } } } @@ -49431,6 +49569,14 @@ l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__26 = _init_l_ lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__26); l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__27(); lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__27); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__28(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__28); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__29(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__29); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__30(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__30); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__31(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407____closed__31); res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3407_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res);