diff --git a/stage0/src/Init.lean b/stage0/src/Init.lean index d87f6604ad..54741d4ed8 100644 --- a/stage0/src/Init.lean +++ b/stage0/src/Init.lean @@ -18,3 +18,4 @@ import Init.Meta import Init.NotationExtra import Init.SimpLemmas import Init.Hints +import Init.Conv diff --git a/stage0/src/Init/Conv.lean b/stage0/src/Init/Conv.lean new file mode 100644 index 0000000000..a3b0a290f5 --- /dev/null +++ b/stage0/src/Init/Conv.lean @@ -0,0 +1,26 @@ +/- +Copyright (c) 2021 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura + +Notation for operators defined at Prelude.lean +-/ +prelude +import Init.Notation + +namespace Lean.Parser.Tactic + +declare_syntax_cat conv (behavior := both) + +syntax convSeq1Indented := withPosition((colGe conv ";"?)+) +syntax convSeqBracketed := "{" (conv ";"?)+ "}" +syntax convSeq := convSeq1Indented <|> convSeqBracketed + +syntax "skip " : conv +syntax "lhs" : conv +syntax "rhs" : conv +syntax "whnf" : conv +syntax "congr" : conv +syntax "conv " (" at " ident)? (" in " term)? " => " convSeq : tactic + +end Lean.Parser.Tactic diff --git a/stage0/src/Lean/Elab/InfoTree.lean b/stage0/src/Lean/Elab/InfoTree.lean index 3379a5be60..d914c04bde 100644 --- a/stage0/src/Lean/Elab/InfoTree.lean +++ b/stage0/src/Lean/Elab/InfoTree.lean @@ -78,6 +78,7 @@ structure TacticInfo extends ElabInfo where goalsBefore : List MVarId mctxAfter : MetavarContext goalsAfter : List MVarId + inConv : Bool deriving Inhabited structure MacroExpansionInfo where @@ -188,17 +189,17 @@ def FieldInfo.format (ctx : ContextInfo) (info : FieldInfo) : IO Format := do ctx.runMetaM info.lctx do return f!"{info.fieldName} : {← Meta.ppExpr (← Meta.inferType info.val)} := {← Meta.ppExpr info.val} @ {formatStxRange ctx info.stx}" -def ContextInfo.ppGoals (ctx : ContextInfo) (goals : List MVarId) : IO Format := +def ContextInfo.ppGoals (ctx : ContextInfo) (goals : List MVarId) (inConv : Bool) : IO Format := if goals.isEmpty then return "no goals" else - ctx.runMetaM {} (return Std.Format.prefixJoin "\n" (← goals.mapM Meta.ppGoal)) + ctx.runMetaM {} (return Std.Format.prefixJoin "\n" (← goals.mapM (Meta.ppGoal . inConv))) def TacticInfo.format (ctx : ContextInfo) (info : TacticInfo) : IO Format := do let ctxB := { ctx with mctx := info.mctxBefore } let ctxA := { ctx with mctx := info.mctxAfter } - let goalsBefore ← ctxB.ppGoals info.goalsBefore - let goalsAfter ← ctxA.ppGoals info.goalsAfter + let goalsBefore ← ctxB.ppGoals info.goalsBefore info.inConv + let goalsAfter ← ctxA.ppGoals info.goalsAfter info.inConv return f!"Tactic @ {formatElabInfo ctx info.toElabInfo}\n{info.stx}\nbefore {goalsBefore}\nafter {goalsAfter}" def MacroExpansionInfo.format (ctx : ContextInfo) (info : MacroExpansionInfo) : IO Format := do diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index 34716cc4dd..ce12c3a178 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -195,6 +195,7 @@ elab_stx_quot Parser.Term.attr.quot elab_stx_quot Parser.Term.prio.quot elab_stx_quot Parser.Term.doElem.quot elab_stx_quot Parser.Term.dynamicQuot +-- elab_stx_quot Parser.Term.conv.quot /- match -/ diff --git a/stage0/src/Lean/Elab/Tactic/Basic.lean b/stage0/src/Lean/Elab/Tactic/Basic.lean index c75a16989b..4d51c255e4 100644 --- a/stage0/src/Lean/Elab/Tactic/Basic.lean +++ b/stage0/src/Lean/Elab/Tactic/Basic.lean @@ -39,6 +39,8 @@ structure Context where main : MVarId -- declaration name of the executing elaborator, used by `mkTacticInfo` to persist it in the info tree elaborator : Name + -- `true` when in `conv` tactic mode. This flag is only used to pretty print the goals showing just the left-hand-side + inConv : Bool := false structure State where goals : List MVarId @@ -119,6 +121,7 @@ def mkTacticInfo (mctxBefore : MetavarContext) (goalsBefore : List MVarId) (stx stx := stx mctxAfter := (← getMCtx) goalsAfter := (← getUnsolvedGoals) + inConv := (← read).inConv } def mkInitialTacticInfo (stx : Syntax) : TacticM (TacticM Info) := do diff --git a/stage0/src/Lean/Meta/PPGoal.lean b/stage0/src/Lean/Meta/PPGoal.lean index 956271a93b..84e7a840e3 100644 --- a/stage0/src/Lean/Meta/PPGoal.lean +++ b/stage0/src/Lean/Meta/PPGoal.lean @@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ import Lean.Meta.InferType +import Lean.Meta.MatchUtil namespace Lean.Meta @@ -143,7 +144,7 @@ end ToHide private def addLine (fmt : Format) : Format := if fmt.isNil then fmt else fmt ++ Format.line -def ppGoal (mvarId : MVarId) : MetaM Format := do +def ppGoal (mvarId : MVarId) (convGoal := false) : MetaM Format := do match (← getMCtx).findDecl? mvarId with | none => pure "unknown goal" | some mvarDecl => do @@ -200,7 +201,14 @@ def ppGoal (mvarId : MVarId) : MetaM Format := do ppVars varNames prevType? fmt localDecl let fmt ← pushPending varNames type? fmt let fmt := addLine fmt - let typeFmt ← ppExpr mvarDecl.type + let typeFmt ← + if convGoal then + if let some (_, lhs, _) ← matchEq? mvarDecl.type then + ppExpr lhs + else + ppExpr mvarDecl.type + else + ppExpr mvarDecl.type let fmt := fmt ++ "⊢ " ++ Format.nest indent typeFmt match mvarDecl.userName with | Name.anonymous => pure fmt diff --git a/stage0/src/Lean/Parser/Term.lean b/stage0/src/Lean/Parser/Term.lean index 4b7db28d8c..91b0ac6c55 100644 --- a/stage0/src/Lean/Parser/Term.lean +++ b/stage0/src/Lean/Parser/Term.lean @@ -26,6 +26,9 @@ builtin_initialize @[inline] def tacticParser (rbp : Nat := 0) : Parser := categoryParser `tactic rbp +@[inline] def convParser (rbp : Nat := 0) : Parser := + categoryParser `conv rbp + namespace Tactic def tacticSeq1Indented : Parser := @@ -242,6 +245,7 @@ def bracketedBinderF := bracketedBinder -- no default arg @[builtinTermParser] def bracketedBinder.quot : Parser := leading_parser "`(bracketedBinder|" >> incQuotDepth (evalInsideQuot ``bracketedBinderF bracketedBinder) >> ")" @[builtinTermParser] def matchDiscr.quot : Parser := leading_parser "`(matchDiscr|" >> incQuotDepth (evalInsideQuot ``matchDiscr matchDiscr) >> ")" @[builtinTermParser] def attr.quot : Parser := leading_parser "`(attr|" >> incQuotDepth attrParser >> ")" +@[builtinTermParser] def conv.quot : Parser := leading_parser "`(conv|" >> incQuotDepth convParser >> ")" @[builtinTermParser] def panic := leading_parser:leadPrec "panic! " >> termParser @[builtinTermParser] def unreachable := leading_parser:leadPrec "unreachable!" diff --git a/stage0/stdlib/Init.c b/stage0/stdlib/Init.c index 55451224d2..b28153a882 100644 --- a/stage0/stdlib/Init.c +++ b/stage0/stdlib/Init.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init -// Imports: Init.Prelude Init.Notation Init.Core Init.Control Init.Data.Basic Init.WF Init.Data Init.System Init.Util Init.Fix Init.Meta Init.NotationExtra Init.SimpLemmas Init.Hints +// Imports: Init.Prelude Init.Notation Init.Core Init.Control Init.Data.Basic Init.WF Init.Data Init.System Init.Util Init.Fix Init.Meta Init.NotationExtra Init.SimpLemmas Init.Hints Init.Conv #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -27,6 +27,7 @@ lean_object* initialize_Init_Meta(lean_object*); lean_object* initialize_Init_NotationExtra(lean_object*); lean_object* initialize_Init_SimpLemmas(lean_object*); lean_object* initialize_Init_Hints(lean_object*); +lean_object* initialize_Init_Conv(lean_object*); static bool _G_initialized = false; lean_object* initialize_Init(lean_object* w) { lean_object * res; @@ -74,6 +75,9 @@ lean_dec_ref(res); res = initialize_Init_Hints(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Conv(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/Init/Conv.c b/stage0/stdlib/Init/Conv.c new file mode 100644 index 0000000000..8cdc817db4 --- /dev/null +++ b/stage0/stdlib/Init/Conv.c @@ -0,0 +1,1633 @@ +// Lean compiler output +// Module: Init.Conv +// Imports: Init.Notation +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +static lean_object* l_Lean_Parser_Tactic_convCongr___closed__3; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__12; +static lean_object* l_Lean_Parser_Tactic_convCongr___closed__5; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__12; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__10; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__20; +lean_object* lean_name_mk_string(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__14; +static lean_object* l_Lean_Parser_Tactic_convCongr___closed__1; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__20; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__18; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__5; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__15; +static lean_object* l_Lean_Parser_Tactic_convSkip___closed__1; +lean_object* l_Lean_Parser_Tactic_convSeqBracketed; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__1; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__10; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__23; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__21; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__22; +static lean_object* l_Lean_Parser_Tactic_convWhnf___closed__2; +static lean_object* l_Lean_Parser_Tactic_convSkip___closed__2; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__13; +static lean_object* l_Lean_Parser_Tactic_convRhs___closed__5; +static lean_object* l_Lean_Parser_Tactic_convRhs___closed__1; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__9; +static lean_object* l_Lean_Parser_Tactic_convSkip___closed__4; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__8; +lean_object* l_Lean_Parser_Tactic_convRhs; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__4; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__6; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__2; +static lean_object* l_Lean_Parser_Tactic_convLhs___closed__1; +lean_object* l_Lean_Parser_Tactic_convSkip; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__5; +static lean_object* l_Lean_Parser_Tactic_convRhs___closed__4; +static lean_object* l_Lean_Parser_Tactic_convSeq___closed__4; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__22; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__17; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__8; +static lean_object* l_Lean_Parser_Tactic_convLhs___closed__4; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__4; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__7; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__5; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__24; +static lean_object* l_Lean_Parser_Tactic_convLhs___closed__3; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__1; +static lean_object* l_Lean_Parser_Tactic_convLhs___closed__2; +static lean_object* l_Lean_Parser_Tactic_convSkip___closed__3; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__16; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__7; +static lean_object* l_Lean_Parser_Tactic_convRhs___closed__2; +static lean_object* l_Lean_Parser_Tactic_convWhnf___closed__5; +static lean_object* l_Lean_Parser_Tactic_convWhnf___closed__3; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__18; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__3; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__10; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__18; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__14; +lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e__; +static lean_object* l_Lean_Parser_Tactic_convSeq___closed__5; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__15; +static lean_object* l_Lean_Parser_Tactic_convSeq___closed__3; +static lean_object* l_Lean_Parser_Tactic_convSeq___closed__1; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__3; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__14; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__7; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__5; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__16; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__15; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__3; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__2; +lean_object* l_Lean_Parser_Tactic_convSeq1Indented; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__19; +static lean_object* l_Lean_Parser_Tactic_convSeq___closed__6; +lean_object* l_Lean_Parser_Tactic_convSeq; +lean_object* l_Lean_Parser_Tactic_conv_quot; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__11; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__2; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__6; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__25; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__6; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__6; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__9; +static lean_object* l_Lean_Parser_Tactic_convSeq___closed__2; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__21; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__3; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__12; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__13; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__10; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__1; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__23; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__13; +lean_object* l_Lean_Parser_Tactic_convLhs; +lean_object* l_Lean_Parser_Tactic_convWhnf; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__9; +static lean_object* l_Lean_Parser_Tactic_convWhnf___closed__4; +lean_object* l_Lean_Parser_Tactic_convCongr; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__7; +static lean_object* l_Lean_Parser_Tactic_convLhs___closed__5; +static lean_object* l_Lean_Parser_Tactic_convCongr___closed__2; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__17; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__8; +static lean_object* l_Lean_Parser_Tactic_convSeqBracketed___closed__11; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__4; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__21; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__16; +static lean_object* l_Lean_Parser_Tactic_convRhs___closed__3; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__20; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__17; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__1; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__11; +static lean_object* l_Lean_Parser_Tactic_convCongr___closed__4; +static lean_object* l_Lean_Parser_Tactic_convSeq1Indented___closed__19; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__19; +static lean_object* l_Lean_Parser_Tactic_convWhnf___closed__1; +static lean_object* l_Lean_Parser_Tactic_convSkip___closed__5; +static lean_object* l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__11; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__9; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__8; +static lean_object* l_Lean_Parser_Tactic_conv_quot___closed__4; +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lean"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___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_Tactic_conv_quot___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Parser"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__2; +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Term"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__4; +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("quot"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__6; +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__7; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("andthen"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___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_Tactic_conv_quot___closed__9; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("`(conv|"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__11; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("incQuotDepth"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__13; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("conv"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__15; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__16; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(7, 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_conv_quot___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__14; +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__17; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(")"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__19; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__18; +x_3 = l_Lean_Parser_Tactic_conv_quot___closed__20; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__12; +x_3 = l_Lean_Parser_Tactic_conv_quot___closed__21; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__8; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_conv_quot___closed__22; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_conv_quot() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__23; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Tactic"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__4; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convSeq1Indented"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("withPosition"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("many1"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__7; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("colGe"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___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_Tactic_convSeq1Indented___closed__9; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__10; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___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_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__11; +x_3 = l_Lean_Parser_Tactic_conv_quot___closed__17; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("optional"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__13; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(";"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__15; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__14; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__16; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__12; +x_3 = l_Lean_Parser_Tactic_convSeq1Indented___closed__17; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__8; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__18; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__6; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__19; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__3; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented___closed__4; +x_3 = l_Lean_Parser_Tactic_convSeq1Indented___closed__20; +x_4 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq1Indented() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__21; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convSeqBracketed"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convSeqBracketed___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("{"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_convSeqBracketed___closed__3; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___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_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_conv_quot___closed__17; +x_3 = l_Lean_Parser_Tactic_convSeq1Indented___closed__17; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__8; +x_2 = l_Lean_Parser_Tactic_convSeqBracketed___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___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_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_convSeqBracketed___closed__4; +x_3 = l_Lean_Parser_Tactic_convSeqBracketed___closed__6; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("}"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_convSeqBracketed___closed__8; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___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_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_convSeqBracketed___closed__7; +x_3 = l_Lean_Parser_Tactic_convSeqBracketed___closed__9; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed___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_convSeqBracketed___closed__1; +x_2 = l_Lean_Parser_Tactic_convSeqBracketed___closed__2; +x_3 = l_Lean_Parser_Tactic_convSeqBracketed___closed__10; +x_4 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeqBracketed() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convSeqBracketed___closed__11; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convSeq"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convSeq___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("orelse"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_convSeq___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq___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_convSeq___closed__4; +x_2 = l_Lean_Parser_Tactic_convSeq1Indented; +x_3 = l_Lean_Parser_Tactic_convSeqBracketed; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq___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_convSeq___closed__1; +x_2 = l_Lean_Parser_Tactic_convSeq___closed__2; +x_3 = l_Lean_Parser_Tactic_convSeq___closed__5; +x_4 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSeq() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convSeq___closed__6; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSkip___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convSkip"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSkip___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convSkip___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSkip___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("skip "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSkip___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSkip___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSkip___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_convSkip___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_convSkip___closed__4; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convSkip() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convSkip___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convLhs___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convLhs"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convLhs___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convLhs___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convLhs___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("lhs"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convLhs___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convLhs___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convLhs___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_convLhs___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_convLhs___closed__4; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convLhs() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convLhs___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convRhs___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convRhs"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convRhs___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convRhs___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convRhs___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("rhs"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convRhs___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convRhs___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convRhs___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_convRhs___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_convRhs___closed__4; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convRhs() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convRhs___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convWhnf___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convWhnf"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convWhnf___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convWhnf___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convWhnf___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("whnf"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convWhnf___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convWhnf___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convWhnf___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_convWhnf___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_convWhnf___closed__4; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convWhnf() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convWhnf___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convCongr___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("convCongr"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convCongr___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_convCongr___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convCongr___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("congr"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convCongr___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convCongr___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convCongr___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_convCongr___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_convCongr___closed__4; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_convCongr() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_convCongr___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tacticConvAt__In_=>_"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__2; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("conv "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" at "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__5; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ident"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__7; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__8; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____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_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__6; +x_3 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__9; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__14; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__10; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____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_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__4; +x_3 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__11; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" in "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__13; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("term"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__15; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__16; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(7, 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_tacticConvAt____In___x3d_x3e_____closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__14; +x_3 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__17; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_convSeq1Indented___closed__14; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__18; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__12; +x_3 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__19; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" => "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__21; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__20; +x_3 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__22; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_conv_quot___closed__10; +x_2 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__23; +x_3 = l_Lean_Parser_Tactic_convSeq; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__24; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e__() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__25; +return x_1; +} +} +lean_object* initialize_Init_Notation(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Init_Conv(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Notation(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Parser_Tactic_conv_quot___closed__1 = _init_l_Lean_Parser_Tactic_conv_quot___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__1); +l_Lean_Parser_Tactic_conv_quot___closed__2 = _init_l_Lean_Parser_Tactic_conv_quot___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__2); +l_Lean_Parser_Tactic_conv_quot___closed__3 = _init_l_Lean_Parser_Tactic_conv_quot___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__3); +l_Lean_Parser_Tactic_conv_quot___closed__4 = _init_l_Lean_Parser_Tactic_conv_quot___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__4); +l_Lean_Parser_Tactic_conv_quot___closed__5 = _init_l_Lean_Parser_Tactic_conv_quot___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__5); +l_Lean_Parser_Tactic_conv_quot___closed__6 = _init_l_Lean_Parser_Tactic_conv_quot___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__6); +l_Lean_Parser_Tactic_conv_quot___closed__7 = _init_l_Lean_Parser_Tactic_conv_quot___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__7); +l_Lean_Parser_Tactic_conv_quot___closed__8 = _init_l_Lean_Parser_Tactic_conv_quot___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__8); +l_Lean_Parser_Tactic_conv_quot___closed__9 = _init_l_Lean_Parser_Tactic_conv_quot___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__9); +l_Lean_Parser_Tactic_conv_quot___closed__10 = _init_l_Lean_Parser_Tactic_conv_quot___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__10); +l_Lean_Parser_Tactic_conv_quot___closed__11 = _init_l_Lean_Parser_Tactic_conv_quot___closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__11); +l_Lean_Parser_Tactic_conv_quot___closed__12 = _init_l_Lean_Parser_Tactic_conv_quot___closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__12); +l_Lean_Parser_Tactic_conv_quot___closed__13 = _init_l_Lean_Parser_Tactic_conv_quot___closed__13(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__13); +l_Lean_Parser_Tactic_conv_quot___closed__14 = _init_l_Lean_Parser_Tactic_conv_quot___closed__14(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__14); +l_Lean_Parser_Tactic_conv_quot___closed__15 = _init_l_Lean_Parser_Tactic_conv_quot___closed__15(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__15); +l_Lean_Parser_Tactic_conv_quot___closed__16 = _init_l_Lean_Parser_Tactic_conv_quot___closed__16(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__16); +l_Lean_Parser_Tactic_conv_quot___closed__17 = _init_l_Lean_Parser_Tactic_conv_quot___closed__17(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__17); +l_Lean_Parser_Tactic_conv_quot___closed__18 = _init_l_Lean_Parser_Tactic_conv_quot___closed__18(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__18); +l_Lean_Parser_Tactic_conv_quot___closed__19 = _init_l_Lean_Parser_Tactic_conv_quot___closed__19(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__19); +l_Lean_Parser_Tactic_conv_quot___closed__20 = _init_l_Lean_Parser_Tactic_conv_quot___closed__20(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__20); +l_Lean_Parser_Tactic_conv_quot___closed__21 = _init_l_Lean_Parser_Tactic_conv_quot___closed__21(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__21); +l_Lean_Parser_Tactic_conv_quot___closed__22 = _init_l_Lean_Parser_Tactic_conv_quot___closed__22(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__22); +l_Lean_Parser_Tactic_conv_quot___closed__23 = _init_l_Lean_Parser_Tactic_conv_quot___closed__23(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot___closed__23); +l_Lean_Parser_Tactic_conv_quot = _init_l_Lean_Parser_Tactic_conv_quot(); +lean_mark_persistent(l_Lean_Parser_Tactic_conv_quot); +l_Lean_Parser_Tactic_convSeq1Indented___closed__1 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__1); +l_Lean_Parser_Tactic_convSeq1Indented___closed__2 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__2); +l_Lean_Parser_Tactic_convSeq1Indented___closed__3 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__3); +l_Lean_Parser_Tactic_convSeq1Indented___closed__4 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__4); +l_Lean_Parser_Tactic_convSeq1Indented___closed__5 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__5); +l_Lean_Parser_Tactic_convSeq1Indented___closed__6 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__6); +l_Lean_Parser_Tactic_convSeq1Indented___closed__7 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__7); +l_Lean_Parser_Tactic_convSeq1Indented___closed__8 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__8); +l_Lean_Parser_Tactic_convSeq1Indented___closed__9 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__9); +l_Lean_Parser_Tactic_convSeq1Indented___closed__10 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__10); +l_Lean_Parser_Tactic_convSeq1Indented___closed__11 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__11); +l_Lean_Parser_Tactic_convSeq1Indented___closed__12 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__12); +l_Lean_Parser_Tactic_convSeq1Indented___closed__13 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__13(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__13); +l_Lean_Parser_Tactic_convSeq1Indented___closed__14 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__14(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__14); +l_Lean_Parser_Tactic_convSeq1Indented___closed__15 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__15(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__15); +l_Lean_Parser_Tactic_convSeq1Indented___closed__16 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__16(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__16); +l_Lean_Parser_Tactic_convSeq1Indented___closed__17 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__17(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__17); +l_Lean_Parser_Tactic_convSeq1Indented___closed__18 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__18(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__18); +l_Lean_Parser_Tactic_convSeq1Indented___closed__19 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__19(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__19); +l_Lean_Parser_Tactic_convSeq1Indented___closed__20 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__20(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__20); +l_Lean_Parser_Tactic_convSeq1Indented___closed__21 = _init_l_Lean_Parser_Tactic_convSeq1Indented___closed__21(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented___closed__21); +l_Lean_Parser_Tactic_convSeq1Indented = _init_l_Lean_Parser_Tactic_convSeq1Indented(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq1Indented); +l_Lean_Parser_Tactic_convSeqBracketed___closed__1 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__1); +l_Lean_Parser_Tactic_convSeqBracketed___closed__2 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__2); +l_Lean_Parser_Tactic_convSeqBracketed___closed__3 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__3); +l_Lean_Parser_Tactic_convSeqBracketed___closed__4 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__4); +l_Lean_Parser_Tactic_convSeqBracketed___closed__5 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__5); +l_Lean_Parser_Tactic_convSeqBracketed___closed__6 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__6); +l_Lean_Parser_Tactic_convSeqBracketed___closed__7 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__7); +l_Lean_Parser_Tactic_convSeqBracketed___closed__8 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__8); +l_Lean_Parser_Tactic_convSeqBracketed___closed__9 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__9); +l_Lean_Parser_Tactic_convSeqBracketed___closed__10 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__10); +l_Lean_Parser_Tactic_convSeqBracketed___closed__11 = _init_l_Lean_Parser_Tactic_convSeqBracketed___closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed___closed__11); +l_Lean_Parser_Tactic_convSeqBracketed = _init_l_Lean_Parser_Tactic_convSeqBracketed(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeqBracketed); +l_Lean_Parser_Tactic_convSeq___closed__1 = _init_l_Lean_Parser_Tactic_convSeq___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq___closed__1); +l_Lean_Parser_Tactic_convSeq___closed__2 = _init_l_Lean_Parser_Tactic_convSeq___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq___closed__2); +l_Lean_Parser_Tactic_convSeq___closed__3 = _init_l_Lean_Parser_Tactic_convSeq___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq___closed__3); +l_Lean_Parser_Tactic_convSeq___closed__4 = _init_l_Lean_Parser_Tactic_convSeq___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq___closed__4); +l_Lean_Parser_Tactic_convSeq___closed__5 = _init_l_Lean_Parser_Tactic_convSeq___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq___closed__5); +l_Lean_Parser_Tactic_convSeq___closed__6 = _init_l_Lean_Parser_Tactic_convSeq___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq___closed__6); +l_Lean_Parser_Tactic_convSeq = _init_l_Lean_Parser_Tactic_convSeq(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSeq); +l_Lean_Parser_Tactic_convSkip___closed__1 = _init_l_Lean_Parser_Tactic_convSkip___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSkip___closed__1); +l_Lean_Parser_Tactic_convSkip___closed__2 = _init_l_Lean_Parser_Tactic_convSkip___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSkip___closed__2); +l_Lean_Parser_Tactic_convSkip___closed__3 = _init_l_Lean_Parser_Tactic_convSkip___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSkip___closed__3); +l_Lean_Parser_Tactic_convSkip___closed__4 = _init_l_Lean_Parser_Tactic_convSkip___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSkip___closed__4); +l_Lean_Parser_Tactic_convSkip___closed__5 = _init_l_Lean_Parser_Tactic_convSkip___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSkip___closed__5); +l_Lean_Parser_Tactic_convSkip = _init_l_Lean_Parser_Tactic_convSkip(); +lean_mark_persistent(l_Lean_Parser_Tactic_convSkip); +l_Lean_Parser_Tactic_convLhs___closed__1 = _init_l_Lean_Parser_Tactic_convLhs___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convLhs___closed__1); +l_Lean_Parser_Tactic_convLhs___closed__2 = _init_l_Lean_Parser_Tactic_convLhs___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convLhs___closed__2); +l_Lean_Parser_Tactic_convLhs___closed__3 = _init_l_Lean_Parser_Tactic_convLhs___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convLhs___closed__3); +l_Lean_Parser_Tactic_convLhs___closed__4 = _init_l_Lean_Parser_Tactic_convLhs___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convLhs___closed__4); +l_Lean_Parser_Tactic_convLhs___closed__5 = _init_l_Lean_Parser_Tactic_convLhs___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convLhs___closed__5); +l_Lean_Parser_Tactic_convLhs = _init_l_Lean_Parser_Tactic_convLhs(); +lean_mark_persistent(l_Lean_Parser_Tactic_convLhs); +l_Lean_Parser_Tactic_convRhs___closed__1 = _init_l_Lean_Parser_Tactic_convRhs___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convRhs___closed__1); +l_Lean_Parser_Tactic_convRhs___closed__2 = _init_l_Lean_Parser_Tactic_convRhs___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convRhs___closed__2); +l_Lean_Parser_Tactic_convRhs___closed__3 = _init_l_Lean_Parser_Tactic_convRhs___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convRhs___closed__3); +l_Lean_Parser_Tactic_convRhs___closed__4 = _init_l_Lean_Parser_Tactic_convRhs___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convRhs___closed__4); +l_Lean_Parser_Tactic_convRhs___closed__5 = _init_l_Lean_Parser_Tactic_convRhs___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convRhs___closed__5); +l_Lean_Parser_Tactic_convRhs = _init_l_Lean_Parser_Tactic_convRhs(); +lean_mark_persistent(l_Lean_Parser_Tactic_convRhs); +l_Lean_Parser_Tactic_convWhnf___closed__1 = _init_l_Lean_Parser_Tactic_convWhnf___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convWhnf___closed__1); +l_Lean_Parser_Tactic_convWhnf___closed__2 = _init_l_Lean_Parser_Tactic_convWhnf___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convWhnf___closed__2); +l_Lean_Parser_Tactic_convWhnf___closed__3 = _init_l_Lean_Parser_Tactic_convWhnf___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convWhnf___closed__3); +l_Lean_Parser_Tactic_convWhnf___closed__4 = _init_l_Lean_Parser_Tactic_convWhnf___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convWhnf___closed__4); +l_Lean_Parser_Tactic_convWhnf___closed__5 = _init_l_Lean_Parser_Tactic_convWhnf___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convWhnf___closed__5); +l_Lean_Parser_Tactic_convWhnf = _init_l_Lean_Parser_Tactic_convWhnf(); +lean_mark_persistent(l_Lean_Parser_Tactic_convWhnf); +l_Lean_Parser_Tactic_convCongr___closed__1 = _init_l_Lean_Parser_Tactic_convCongr___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_convCongr___closed__1); +l_Lean_Parser_Tactic_convCongr___closed__2 = _init_l_Lean_Parser_Tactic_convCongr___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_convCongr___closed__2); +l_Lean_Parser_Tactic_convCongr___closed__3 = _init_l_Lean_Parser_Tactic_convCongr___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_convCongr___closed__3); +l_Lean_Parser_Tactic_convCongr___closed__4 = _init_l_Lean_Parser_Tactic_convCongr___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_convCongr___closed__4); +l_Lean_Parser_Tactic_convCongr___closed__5 = _init_l_Lean_Parser_Tactic_convCongr___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_convCongr___closed__5); +l_Lean_Parser_Tactic_convCongr = _init_l_Lean_Parser_Tactic_convCongr(); +lean_mark_persistent(l_Lean_Parser_Tactic_convCongr); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__1 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__1); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__2 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__2); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__3 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__3); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__4 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__4); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__5 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__5); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__6 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__6); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__7 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__7); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__8 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__8); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__9 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__9); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__10 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__10); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__11 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__11); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__12 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__12); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__13 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__13(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__13); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__14 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__14(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__14); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__15 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__15(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__15); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__16 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__16(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__16); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__17 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__17(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__17); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__18 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__18(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__18); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__19 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__19(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__19); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__20 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__20(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__20); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__21 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__21(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__21); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__22 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__22(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__22); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__23 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__23(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__23); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__24 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__24(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__24); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__25 = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__25(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e_____closed__25); +l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e__ = _init_l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e__(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticConvAt____In___x3d_x3e__); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Elab/InfoTree.c b/stage0/stdlib/Lean/Elab/InfoTree.c index 349615db65..2a75638d85 100644 --- a/stage0/stdlib/Lean/Elab/InfoTree.c +++ b/stage0/stdlib/Lean/Elab/InfoTree.c @@ -63,6 +63,7 @@ lean_object* l_Lean_Elab_instInhabitedElabInfo; uint8_t l_Lean_Elab_TermInfo_isBinder___default; lean_object* l_Lean_Meta_ppExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_ContextInfo_runMetaM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_InfoTree_findInfo_x3f_match__1(lean_object*); lean_object* l_Lean_Elab_TermInfo_runMetaM(lean_object*); lean_object* l_Lean_Elab_withSaveInfoContext___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -129,7 +130,7 @@ static lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange_f lean_object* l_Lean_Elab_withInfoHole(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_withSaveInfoContext___rarg___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_Meta_ppGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_FieldInfo_format___lambda__1___closed__1; lean_object* l_Lean_Elab_withInfoTreeContext___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_FieldInfo_format___lambda__1___closed__2; @@ -169,7 +170,7 @@ lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange_fmtPos_m lean_object* l_Lean_Elab_resolveGlobalConstNoOverloadWithInfo___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_pushInfoTree___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_InfoTree_substitute_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_ContextInfo_ppGoals(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_ContextInfo_ppGoals(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Elab_withInfoTreeContext___at_Lean_Elab_withInfoContext___spec__1(lean_object*); lean_object* l_Lean_Elab_resolveGlobalConstWithInfos___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange_fmtPos___closed__5; @@ -246,7 +247,7 @@ static lean_object* l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__5; extern lean_object* l_Lean_firstFrontendMacroScope; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_InfoTree_findInfo_x3f___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_CompletionInfo_stx___boxed(lean_object*); -lean_object* l_Lean_Elab_ContextInfo_ppGoals___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_ContextInfo_ppGoals___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Info_toElabInfo_x3f(lean_object*); lean_object* l_Lean_Elab_Info_updateContext_x3f_match__1(lean_object*); lean_object* l_Std_PersistentArray_mapMAux___at_Lean_Elab_withSaveInfoContext___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -324,7 +325,7 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_InfoTree_findInfo_x3f___spe lean_object* l_List_mapM___at_Lean_Elab_InfoTree_format___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_instInhabitedMacroExpansionInfo; lean_object* l_Lean_Elab_TermInfo_runMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_ContextInfo_ppGoals___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_ContextInfo_ppGoals___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_ContextInfo_ppSyntax(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_withSaveInfoContext___spec__3(lean_object*); static lean_object* l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__1; @@ -333,6 +334,7 @@ lean_object* l_Lean_Elab_enableInfoTree___rarg___lambda__1(uint8_t, lean_object* lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_InfoTree_substitute___spec__4(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_resolveGlobalConstNoOverloadWithInfo___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_instMonadInfoTree(lean_object*, lean_object*); +lean_object* l_Lean_Elab_ContextInfo_ppGoals___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_mapM___at_Lean_Elab_withSaveInfoContext___spec__1(lean_object*); static lean_object* l_Lean_Elab_ContextInfo_runMetaM___rarg___closed__2; lean_object* l_Lean_Elab_withInfoContext_x27___rarg___lambda__4(lean_object*, lean_object*, lean_object*); @@ -374,7 +376,7 @@ lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatElabInfo___boxed( lean_object* l_Lean_Elab_withInfoTreeContext___rarg___lambda__2(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatElabInfo___closed__1; static lean_object* l_Lean_Elab_ContextInfo_mctx___default___closed__2; -lean_object* l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_ContextInfo_runMetaM___rarg___closed__5; lean_object* l_Lean_Elab_pushInfoTree(lean_object*); lean_object* l_Lean_Elab_withMacroExpansionInfo___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -950,17 +952,19 @@ return x_1; static lean_object* _init_l_Lean_Elab_instInhabitedTacticInfo___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = lean_box(0); x_2 = l_Lean_Elab_instInhabitedElabInfo___closed__1; x_3 = l_Lean_Elab_ContextInfo_mctx___default___closed__4; -x_4 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_4, 0, x_2); -lean_ctor_set(x_4, 1, x_3); -lean_ctor_set(x_4, 2, x_1); -lean_ctor_set(x_4, 3, x_3); -lean_ctor_set(x_4, 4, x_1); -return x_4; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 5, 1); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_1); +lean_ctor_set(x_5, 3, x_3); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set_uint8(x_5, sizeof(void*)*5, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_instInhabitedTacticInfo() { @@ -4092,231 +4096,231 @@ lean_dec(x_3); return x_9; } } -lean_object* l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -if (lean_obj_tag(x_1) == 0) +if (lean_obj_tag(x_2) == 0) { -lean_object* x_7; lean_object* x_8; +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_7 = lean_box(0); -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_7); -lean_ctor_set(x_8, 1, x_6); -return x_8; +x_8 = lean_box(0); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; } else { -uint8_t x_9; -x_9 = !lean_is_exclusive(x_1); -if (x_9 == 0) +uint8_t x_10; +x_10 = !lean_is_exclusive(x_2); +if (x_10 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_ctor_get(x_1, 0); -x_11 = lean_ctor_get(x_1, 1); +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_2, 0); +x_12 = lean_ctor_get(x_2, 1); +lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_2); -x_12 = l_Lean_Meta_ppGoal(x_10, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_12) == 0) +x_13 = l_Lean_Meta_ppGoal(x_11, x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_13) == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); -lean_dec(x_12); -x_15 = l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(x_11, x_2, x_3, x_4, x_5, x_14); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -x_17 = lean_ctor_get(x_15, 0); -lean_ctor_set(x_1, 1, x_17); -lean_ctor_set(x_1, 0, x_13); -lean_ctor_set(x_15, 0, x_1); -return x_15; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_15, 0); -x_19 = lean_ctor_get(x_15, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_15); -lean_ctor_set(x_1, 1, x_18); -lean_ctor_set(x_1, 0, x_13); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_19); -return x_20; -} -} -else -{ -uint8_t x_21; +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); lean_dec(x_13); -lean_free_object(x_1); -x_21 = !lean_is_exclusive(x_15); -if (x_21 == 0) +x_16 = l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(x_1, x_12, x_3, x_4, x_5, x_6, x_15); +if (lean_obj_tag(x_16) == 0) { -return x_15; +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_ctor_set(x_2, 1, x_18); +lean_ctor_set(x_2, 0, x_14); +lean_ctor_set(x_16, 0, x_2); +return x_16; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_15, 0); -x_23 = lean_ctor_get(x_15, 1); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_16, 0); +x_20 = lean_ctor_get(x_16, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_16); +lean_ctor_set(x_2, 1, x_19); +lean_ctor_set(x_2, 0, x_14); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_2); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +uint8_t x_22; +lean_dec(x_14); +lean_free_object(x_2); +x_22 = !lean_is_exclusive(x_16); +if (x_22 == 0) +{ +return x_16; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_16, 0); +x_24 = lean_ctor_get(x_16, 1); +lean_inc(x_24); lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_15); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -return x_24; +lean_dec(x_16); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } } else { -uint8_t x_25; -lean_free_object(x_1); -lean_dec(x_11); +uint8_t x_26; +lean_free_object(x_2); +lean_dec(x_12); +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_25 = !lean_is_exclusive(x_12); -if (x_25 == 0) +x_26 = !lean_is_exclusive(x_13); +if (x_26 == 0) { -return x_12; +return x_13; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_12, 0); -x_27 = lean_ctor_get(x_12, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_13, 0); +x_28 = lean_ctor_get(x_13, 1); +lean_inc(x_28); lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_12); -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; +lean_dec(x_13); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; } } } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_1, 0); -x_30 = lean_ctor_get(x_1, 1); +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_2, 0); +x_31 = lean_ctor_get(x_2, 1); +lean_inc(x_31); lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_1); +lean_dec(x_2); +lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_2); -x_31 = l_Lean_Meta_ppGoal(x_29, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_31) == 0) +x_32 = l_Lean_Meta_ppGoal(x_30, x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_32) == 0) { -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_31, 1); +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_32, 0); lean_inc(x_33); -lean_dec(x_31); -x_34 = l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(x_30, x_2, x_3, x_4, x_5, x_33); -if (lean_obj_tag(x_34) == 0) -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -if (lean_is_exclusive(x_34)) { - lean_ctor_release(x_34, 0); - lean_ctor_release(x_34, 1); - x_37 = x_34; -} else { - lean_dec_ref(x_34); - x_37 = lean_box(0); -} -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_32); -lean_ctor_set(x_38, 1, x_35); -if (lean_is_scalar(x_37)) { - x_39 = lean_alloc_ctor(0, 2, 0); -} else { - x_39 = x_37; -} -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_36); -return x_39; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); lean_dec(x_32); -x_40 = lean_ctor_get(x_34, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_34, 1); +x_35 = l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(x_1, x_31, x_3, x_4, x_5, x_6, x_34); +if (lean_obj_tag(x_35) == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_35, 1); +lean_inc(x_37); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + x_38 = x_35; +} else { + lean_dec_ref(x_35); + x_38 = lean_box(0); +} +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_33); +lean_ctor_set(x_39, 1, x_36); +if (lean_is_scalar(x_38)) { + x_40 = lean_alloc_ctor(0, 2, 0); +} else { + x_40 = x_38; +} +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_37); +return x_40; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_33); +x_41 = lean_ctor_get(x_35, 0); lean_inc(x_41); -if (lean_is_exclusive(x_34)) { - lean_ctor_release(x_34, 0); - lean_ctor_release(x_34, 1); - x_42 = x_34; +x_42 = lean_ctor_get(x_35, 1); +lean_inc(x_42); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + x_43 = x_35; } else { - lean_dec_ref(x_34); - x_42 = lean_box(0); + lean_dec_ref(x_35); + x_43 = lean_box(0); } -if (lean_is_scalar(x_42)) { - x_43 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_43)) { + x_44 = lean_alloc_ctor(1, 2, 0); } else { - x_43 = x_42; + x_44 = x_43; } -lean_ctor_set(x_43, 0, x_40); -lean_ctor_set(x_43, 1, x_41); -return x_43; +lean_ctor_set(x_44, 0, x_41); +lean_ctor_set(x_44, 1, x_42); +return x_44; } } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -lean_dec(x_30); +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_31); +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_44 = lean_ctor_get(x_31, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_31, 1); +x_45 = lean_ctor_get(x_32, 0); lean_inc(x_45); -if (lean_is_exclusive(x_31)) { - lean_ctor_release(x_31, 0); - lean_ctor_release(x_31, 1); - x_46 = x_31; +x_46 = lean_ctor_get(x_32, 1); +lean_inc(x_46); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + x_47 = x_32; } else { - lean_dec_ref(x_31); - x_46 = lean_box(0); + lean_dec_ref(x_32); + x_47 = lean_box(0); } -if (lean_is_scalar(x_46)) { - x_47 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_47)) { + x_48 = lean_alloc_ctor(1, 2, 0); } else { - x_47 = x_46; + x_48 = x_47; } -lean_ctor_set(x_47, 0, x_44); -lean_ctor_set(x_47, 1, x_45); -return x_47; +lean_ctor_set(x_48, 0, x_45); +lean_ctor_set(x_48, 1, x_46); +return x_48; } } } @@ -4368,62 +4372,62 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Elab_ContextInfo_ppGoals___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_Elab_ContextInfo_ppGoals___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_7; -x_7 = l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_7) == 0) +lean_object* x_8; +x_8 = l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) { -uint8_t x_8; -x_8 = !lean_is_exclusive(x_7); -if (x_8 == 0) +uint8_t x_9; +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) { -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_ctor_get(x_7, 0); -x_10 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; -x_11 = l_Std_Format_prefixJoin___at_Lean_Elab_ContextInfo_ppGoals___spec__2(x_10, x_9); -lean_dec(x_9); -lean_ctor_set(x_7, 0, x_11); -return x_7; +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; +x_12 = l_Std_Format_prefixJoin___at_Lean_Elab_ContextInfo_ppGoals___spec__2(x_11, x_10); +lean_dec(x_10); +lean_ctor_set(x_8, 0, x_12); +return x_8; } else { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = lean_ctor_get(x_7, 0); -x_13 = lean_ctor_get(x_7, 1); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_13 = lean_ctor_get(x_8, 0); +x_14 = lean_ctor_get(x_8, 1); +lean_inc(x_14); lean_inc(x_13); -lean_inc(x_12); -lean_dec(x_7); -x_14 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; -x_15 = l_Std_Format_prefixJoin___at_Lean_Elab_ContextInfo_ppGoals___spec__2(x_14, x_12); -lean_dec(x_12); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_13); -return x_16; +lean_dec(x_8); +x_15 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; +x_16 = l_Std_Format_prefixJoin___at_Lean_Elab_ContextInfo_ppGoals___spec__2(x_15, x_13); +lean_dec(x_13); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_14); +return x_17; } } else { -uint8_t x_17; -x_17 = !lean_is_exclusive(x_7); -if (x_17 == 0) +uint8_t x_18; +x_18 = !lean_is_exclusive(x_8); +if (x_18 == 0) { -return x_7; +return x_8; } else { -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_7, 0); -x_19 = lean_ctor_get(x_7, 1); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_8, 0); +x_20 = lean_ctor_get(x_8, 1); +lean_inc(x_20); lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_7); -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); -return x_20; +lean_dec(x_8); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; } } } @@ -4458,32 +4462,44 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Elab_ContextInfo_ppGoals(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Elab_ContextInfo_ppGoals(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { _start: { -uint8_t x_4; -x_4 = l_List_isEmpty___rarg(x_2); -if (x_4 == 0) +uint8_t x_5; +x_5 = l_List_isEmpty___rarg(x_2); +if (x_5 == 0) { -lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = lean_alloc_closure((void*)(l_Lean_Elab_ContextInfo_ppGoals___lambda__1), 6, 1); -lean_closure_set(x_5, 0, x_2); -x_6 = l_Lean_Elab_ContextInfo_ppGoals___closed__1; -x_7 = l_Lean_Elab_ContextInfo_runMetaM___rarg(x_1, x_6, x_5, x_3); -return x_7; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_6 = lean_box(x_3); +x_7 = lean_alloc_closure((void*)(l_Lean_Elab_ContextInfo_ppGoals___lambda__1___boxed), 7, 2); +lean_closure_set(x_7, 0, x_6); +lean_closure_set(x_7, 1, x_2); +x_8 = l_Lean_Elab_ContextInfo_ppGoals___closed__1; +x_9 = l_Lean_Elab_ContextInfo_runMetaM___rarg(x_1, x_8, x_7, x_4); +return x_9; } else { -lean_object* x_8; lean_object* x_9; +lean_object* x_10; lean_object* x_11; lean_dec(x_2); -x_8 = l_Lean_Elab_ContextInfo_ppGoals___closed__3; -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_9, 1, x_3); -return x_9; +x_10 = l_Lean_Elab_ContextInfo_ppGoals___closed__3; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_4); +return x_11; } } } +lean_object* l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_1); +lean_dec(x_1); +x_9 = l_List_mapM___at_Lean_Elab_ContextInfo_ppGoals___spec__1(x_8, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} lean_object* l_Std_Format_prefixJoin___at_Lean_Elab_ContextInfo_ppGoals___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { @@ -4493,13 +4509,25 @@ lean_dec(x_2); return x_3; } } -lean_object* l_Lean_Elab_ContextInfo_ppGoals___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Elab_ContextInfo_ppGoals___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_4; -x_4 = l_Lean_Elab_ContextInfo_ppGoals(x_1, x_2, x_3); +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_1); lean_dec(x_1); -return x_4; +x_9 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1(x_8, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +lean_object* l_Lean_Elab_ContextInfo_ppGoals___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; lean_object* x_6; +x_5 = lean_unbox(x_3); +lean_dec(x_3); +x_6 = l_Lean_Elab_ContextInfo_ppGoals(x_1, x_2, x_5, x_4); +lean_dec(x_1); +return x_6; } } static lean_object* _init_l_Lean_Elab_TacticInfo_format___closed__1() { @@ -4559,7 +4587,7 @@ return x_2; lean_object* l_Lean_Elab_TacticInfo_format(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_object* x_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; uint8_t x_14; lean_object* x_15; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_1, 3); @@ -4595,174 +4623,175 @@ lean_ctor_set(x_12, 4, x_7); lean_ctor_set(x_12, 5, x_8); x_13 = lean_ctor_get(x_2, 2); lean_inc(x_13); -x_14 = l_Lean_Elab_ContextInfo_ppGoals(x_10, x_13, x_3); +x_14 = lean_ctor_get_uint8(x_2, sizeof(void*)*5); +x_15 = l_Lean_Elab_ContextInfo_ppGoals(x_10, x_13, x_14, x_3); lean_dec(x_10); -if (lean_obj_tag(x_14) == 0) +if (lean_obj_tag(x_15) == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); -lean_dec(x_14); -x_17 = lean_ctor_get(x_2, 4); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = l_Lean_Elab_ContextInfo_ppGoals(x_12, x_17, x_16); -lean_dec(x_12); -if (lean_obj_tag(x_18) == 0) -{ -uint8_t x_19; -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_20 = lean_ctor_get(x_18, 0); -x_21 = lean_ctor_get(x_2, 0); -lean_inc(x_21); -lean_dec(x_2); -lean_inc(x_21); -x_22 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatElabInfo(x_1, x_21); -x_23 = l_Lean_Elab_TacticInfo_format___closed__2; -x_24 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_22); -x_25 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; -x_26 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_26, 0, x_24); -lean_ctor_set(x_26, 1, x_25); -x_27 = lean_ctor_get(x_21, 1); -lean_inc(x_27); -lean_dec(x_21); -x_28 = lean_box(0); -x_29 = 0; -x_30 = lean_unsigned_to_nat(0u); -x_31 = l_Lean_Syntax_formatStxAux(x_28, x_29, x_30, x_27); -x_32 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_32, 0, x_26); -lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_Elab_TacticInfo_format___closed__4; -x_34 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_34, 0, x_32); -lean_ctor_set(x_34, 1, x_33); -x_35 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_15); -x_36 = l_Lean_Elab_TacticInfo_format___closed__6; -x_37 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_36); -x_38 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_20); -x_39 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange_fmtPos___closed__7; -x_40 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); -lean_ctor_set(x_18, 0, x_40); -return x_18; -} -else -{ -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; uint8_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_41 = lean_ctor_get(x_18, 0); -x_42 = lean_ctor_get(x_18, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_18); -x_43 = lean_ctor_get(x_2, 0); -lean_inc(x_43); -lean_dec(x_2); -lean_inc(x_43); -x_44 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatElabInfo(x_1, x_43); -x_45 = l_Lean_Elab_TacticInfo_format___closed__2; -x_46 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_44); -x_47 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; -x_48 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_48, 0, x_46); -lean_ctor_set(x_48, 1, x_47); -x_49 = lean_ctor_get(x_43, 1); -lean_inc(x_49); -lean_dec(x_43); -x_50 = lean_box(0); -x_51 = 0; -x_52 = lean_unsigned_to_nat(0u); -x_53 = l_Lean_Syntax_formatStxAux(x_50, x_51, x_52, x_49); -x_54 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_54, 0, x_48); -lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_Elab_TacticInfo_format___closed__4; -x_56 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -x_57 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_57, 0, x_56); -lean_ctor_set(x_57, 1, x_15); -x_58 = l_Lean_Elab_TacticInfo_format___closed__6; -x_59 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -x_60 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_60, 0, x_59); -lean_ctor_set(x_60, 1, x_41); -x_61 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange_fmtPos___closed__7; -x_62 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_62, 0, x_60); -lean_ctor_set(x_62, 1, x_61); -x_63 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_42); -return x_63; -} -} -else -{ -uint8_t x_64; lean_dec(x_15); +x_18 = lean_ctor_get(x_2, 4); +lean_inc(x_18); +x_19 = l_Lean_Elab_ContextInfo_ppGoals(x_12, x_18, x_14, x_17); +lean_dec(x_12); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; 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; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_21 = lean_ctor_get(x_19, 0); +x_22 = lean_ctor_get(x_2, 0); +lean_inc(x_22); lean_dec(x_2); -x_64 = !lean_is_exclusive(x_18); -if (x_64 == 0) -{ -return x_18; +lean_inc(x_22); +x_23 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatElabInfo(x_1, x_22); +x_24 = l_Lean_Elab_TacticInfo_format___closed__2; +x_25 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +x_26 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; +x_27 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +x_28 = lean_ctor_get(x_22, 1); +lean_inc(x_28); +lean_dec(x_22); +x_29 = lean_box(0); +x_30 = 0; +x_31 = lean_unsigned_to_nat(0u); +x_32 = l_Lean_Syntax_formatStxAux(x_29, x_30, x_31, x_28); +x_33 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_33, 0, x_27); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_Elab_TacticInfo_format___closed__4; +x_35 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +x_36 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_16); +x_37 = l_Lean_Elab_TacticInfo_format___closed__6; +x_38 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_21); +x_40 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange_fmtPos___closed__7; +x_41 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_19, 0, x_41); +return x_19; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_18, 0); -x_66 = lean_ctor_get(x_18, 1); +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; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_42 = lean_ctor_get(x_19, 0); +x_43 = lean_ctor_get(x_19, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_19); +x_44 = lean_ctor_get(x_2, 0); +lean_inc(x_44); +lean_dec(x_2); +lean_inc(x_44); +x_45 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatElabInfo(x_1, x_44); +x_46 = l_Lean_Elab_TacticInfo_format___closed__2; +x_47 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_45); +x_48 = l_Lean_Elab_ContextInfo_ppGoals___lambda__1___closed__2; +x_49 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_ctor_get(x_44, 1); +lean_inc(x_50); +lean_dec(x_44); +x_51 = lean_box(0); +x_52 = 0; +x_53 = lean_unsigned_to_nat(0u); +x_54 = l_Lean_Syntax_formatStxAux(x_51, x_52, x_53, x_50); +x_55 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_55, 0, x_49); +lean_ctor_set(x_55, 1, x_54); +x_56 = l_Lean_Elab_TacticInfo_format___closed__4; +x_57 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +x_58 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_16); +x_59 = l_Lean_Elab_TacticInfo_format___closed__6; +x_60 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); +x_61 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_42); +x_62 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange_fmtPos___closed__7; +x_63 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_43); +return x_64; +} +} +else +{ +uint8_t x_65; +lean_dec(x_16); +lean_dec(x_2); +x_65 = !lean_is_exclusive(x_19); +if (x_65 == 0) +{ +return x_19; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_19, 0); +x_67 = lean_ctor_get(x_19, 1); +lean_inc(x_67); lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_18); -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; +lean_dec(x_19); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_67); +return x_68; } } } else { -uint8_t x_68; +uint8_t x_69; lean_dec(x_12); lean_dec(x_2); -x_68 = !lean_is_exclusive(x_14); -if (x_68 == 0) +x_69 = !lean_is_exclusive(x_15); +if (x_69 == 0) { -return x_14; +return x_15; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_14, 0); -x_70 = lean_ctor_get(x_14, 1); +lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_70 = lean_ctor_get(x_15, 0); +x_71 = lean_ctor_get(x_15, 1); +lean_inc(x_71); lean_inc(x_70); -lean_inc(x_69); -lean_dec(x_14); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -return x_71; +lean_dec(x_15); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +return x_72; } } } @@ -8341,7 +8370,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__4; x_2 = l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__5; -x_3 = lean_unsigned_to_nat(340u); +x_3 = lean_unsigned_to_nat(341u); x_4 = lean_unsigned_to_nat(2u); x_5 = l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index b94fe9b09c..4ed0e2fd85 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -30901,7 +30901,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_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__5; -x_3 = lean_unsigned_to_nat(496u); +x_3 = lean_unsigned_to_nat(497u); x_4 = lean_unsigned_to_nat(12u); x_5 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 240382913a..0e3bf83a07 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -135,6 +135,7 @@ lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___closed__2; lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_saveState(lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744____closed__1; lean_object* l_Lean_Elab_Tactic_tryCatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_getFVarId___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_tacticElabAttribute___closed__11; @@ -172,7 +173,6 @@ lean_object* l_Lean_Elab_Tactic_withCaseRef___rarg___lambda__1___boxed(lean_obje lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719____closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_getFVarIds___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_closeUsingOrAdmit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticInfo___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*); @@ -370,7 +370,7 @@ static lean_object* l_Lean_Elab_Tactic_evalTacticAux___lambda__4___closed__1; lean_object* l_Lean_Elab_Tactic_closeMainGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__7___rarg(lean_object*); lean_object* l_Lean_Elab_Tactic_tryTactic___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719_(lean_object*); +lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744_(lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_throwNoGoalsToBeSolved___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tacticElabAttribute___lambda__8(lean_object*); @@ -389,6 +389,7 @@ lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Tactic_expandTacticMacroFns_l lean_object* l_Lean_Elab_Tactic_evalTacticAux___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tryTactic_x3f___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_throwError___at_Lean_Elab_Tactic_throwNoGoalsToBeSolved___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Elab_Tactic_Context_inConv___default; static lean_object* l_Lean_Elab_Tactic_tacticElabAttribute___closed__15; lean_object* l_Lean_Elab_Tactic_evalTacticAux___lambda__4___boxed__const__1; lean_object* l_Lean_Elab_Tactic_replaceMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -917,6 +918,14 @@ x_11 = l_Lean_Meta_withPPInaccessibleNames___at_Lean_Elab_Term_reportUnsolvedGoa return x_11; } } +static uint8_t _init_l_Lean_Elab_Tactic_Context_inConv___default() { +_start: +{ +uint8_t x_1; +x_1 = 0; +return x_1; +} +} static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedState() { _start: { @@ -1644,7 +1653,7 @@ lean_dec(x_56); x_59 = !lean_is_exclusive(x_57); if (x_59 == 0) { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_107; +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; uint8_t x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_108; x_60 = lean_ctor_get(x_57, 1); lean_dec(x_60); x_61 = lean_box(0); @@ -1654,401 +1663,405 @@ x_63 = lean_ctor_get(x_62, 1); lean_inc(x_63); lean_dec(x_62); x_64 = lean_box(0); +x_65 = 0; lean_inc(x_1); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_1); -lean_ctor_set(x_65, 1, x_64); -x_66 = lean_alloc_ctor(1, 2, 0); +x_66 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_66, 0, x_1); -lean_ctor_set(x_66, 1, x_61); -x_67 = lean_st_ref_get(x_8, x_63); -x_68 = lean_ctor_get(x_67, 1); -lean_inc(x_68); -lean_dec(x_67); -x_69 = lean_st_mk_ref(x_66, x_68); -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_69, 1); +lean_ctor_set(x_66, 1, x_64); +lean_ctor_set_uint8(x_66, sizeof(void*)*2, x_65); +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_1); +lean_ctor_set(x_67, 1, x_61); +x_68 = lean_st_ref_get(x_8, x_63); +x_69 = lean_ctor_get(x_68, 1); +lean_inc(x_69); +lean_dec(x_68); +x_70 = lean_st_mk_ref(x_67, x_69); +x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); -lean_dec(x_69); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +lean_dec(x_70); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_70); -lean_inc(x_65); -x_107 = lean_apply_9(x_2, x_65, x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_71); -if (lean_obj_tag(x_107) == 0) +lean_inc(x_71); +lean_inc(x_66); +x_108 = lean_apply_9(x_2, x_66, x_71, x_3, x_4, x_5, x_6, x_7, x_8, x_72); +if (lean_obj_tag(x_108) == 0) { -lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_108 = lean_ctor_get(x_107, 1); -lean_inc(x_108); -lean_dec(x_107); -x_109 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_65, x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_108); +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_109 = lean_ctor_get(x_108, 1); +lean_inc(x_109); +lean_dec(x_108); +x_110 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_66, x_71, x_3, x_4, x_5, x_6, x_7, x_8, x_109); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_65); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); +lean_dec(x_66); +x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); -lean_dec(x_109); -x_72 = x_110; +x_112 = lean_ctor_get(x_110, 1); +lean_inc(x_112); +lean_dec(x_110); x_73 = x_111; -goto block_106; +x_74 = x_112; +goto block_107; } else { -lean_object* x_112; lean_object* x_113; uint8_t x_114; -x_112 = lean_ctor_get(x_107, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_107, 1); +lean_object* x_113; lean_object* x_114; uint8_t x_115; +x_113 = lean_ctor_get(x_108, 0); lean_inc(x_113); -lean_dec(x_107); -x_114 = l_Lean_Elab_isAbortTacticException(x_112); -if (x_114 == 0) +x_114 = lean_ctor_get(x_108, 1); +lean_inc(x_114); +lean_dec(x_108); +x_115 = l_Lean_Elab_isAbortTacticException(x_113); +if (x_115 == 0) { -lean_dec(x_70); -lean_dec(x_65); +lean_dec(x_71); +lean_dec(x_66); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -x_29 = x_112; -x_30 = x_113; +x_29 = x_113; +x_30 = x_114; goto block_53; } else { -lean_object* x_115; lean_object* x_116; lean_object* x_117; -lean_dec(x_112); -x_115 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_65, x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_113); +lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_dec(x_113); +x_116 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_66, x_71, x_3, x_4, x_5, x_6, x_7, x_8, x_114); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_65); -x_116 = lean_ctor_get(x_115, 0); -lean_inc(x_116); -x_117 = lean_ctor_get(x_115, 1); +lean_dec(x_66); +x_117 = lean_ctor_get(x_116, 0); lean_inc(x_117); -lean_dec(x_115); -x_72 = x_116; +x_118 = lean_ctor_get(x_116, 1); +lean_inc(x_118); +lean_dec(x_116); x_73 = x_117; -goto block_106; +x_74 = x_118; +goto block_107; } } -block_106: +block_107: { -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_74 = lean_st_ref_get(x_8, x_73); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = lean_st_ref_get(x_70, x_75); -lean_dec(x_70); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = lean_st_ref_get(x_8, x_77); +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; +x_75 = lean_st_ref_get(x_8, x_74); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_77 = lean_st_ref_get(x_71, x_76); +lean_dec(x_71); +x_78 = lean_ctor_get(x_77, 1); +lean_inc(x_78); +lean_dec(x_77); +x_79 = lean_st_ref_get(x_8, x_78); lean_dec(x_8); -x_79 = lean_ctor_get(x_78, 1); -lean_inc(x_79); -lean_dec(x_78); -x_80 = lean_st_ref_take(x_4, x_79); -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); +x_80 = lean_ctor_get(x_79, 1); +lean_inc(x_80); +lean_dec(x_79); +x_81 = lean_st_ref_take(x_4, x_80); +x_82 = lean_ctor_get(x_81, 0); lean_inc(x_82); -lean_dec(x_80); -x_83 = !lean_is_exclusive(x_81); -if (x_83 == 0) +x_83 = lean_ctor_get(x_81, 1); +lean_inc(x_83); +lean_dec(x_81); +x_84 = !lean_is_exclusive(x_82); +if (x_84 == 0) { -lean_object* x_84; lean_object* x_85; uint8_t x_86; -x_84 = lean_ctor_get(x_81, 1); -lean_dec(x_84); -lean_ctor_set(x_81, 1, x_28); -x_85 = lean_st_ref_set(x_4, x_81, x_82); -lean_dec(x_4); -x_86 = !lean_is_exclusive(x_85); -if (x_86 == 0) -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_85, 0); -lean_dec(x_87); -x_88 = lean_box(0); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_72); -lean_ctor_set(x_89, 1, x_88); -lean_ctor_set(x_85, 0, x_89); -x_10 = x_85; -goto block_22; -} -else -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_90 = lean_ctor_get(x_85, 1); -lean_inc(x_90); +lean_object* x_85; lean_object* x_86; uint8_t x_87; +x_85 = lean_ctor_get(x_82, 1); lean_dec(x_85); -x_91 = lean_box(0); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_72); -lean_ctor_set(x_92, 1, x_91); +lean_ctor_set(x_82, 1, x_28); +x_86 = lean_st_ref_set(x_4, x_82, x_83); +lean_dec(x_4); +x_87 = !lean_is_exclusive(x_86); +if (x_87 == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_86, 0); +lean_dec(x_88); +x_89 = lean_box(0); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_73); +lean_ctor_set(x_90, 1, x_89); +lean_ctor_set(x_86, 0, x_90); +x_10 = x_86; +goto block_22; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_91 = lean_ctor_get(x_86, 1); +lean_inc(x_91); +lean_dec(x_86); +x_92 = lean_box(0); x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_90); -x_10 = x_93; +lean_ctor_set(x_93, 0, x_73); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_91); +x_10 = x_94; goto block_22; } } else { -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_94 = lean_ctor_get(x_81, 0); -x_95 = lean_ctor_get(x_81, 2); -x_96 = lean_ctor_get(x_81, 3); -x_97 = lean_ctor_get(x_81, 4); -x_98 = lean_ctor_get(x_81, 5); +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_95 = lean_ctor_get(x_82, 0); +x_96 = lean_ctor_get(x_82, 2); +x_97 = lean_ctor_get(x_82, 3); +x_98 = lean_ctor_get(x_82, 4); +x_99 = lean_ctor_get(x_82, 5); +lean_inc(x_99); lean_inc(x_98); lean_inc(x_97); lean_inc(x_96); lean_inc(x_95); -lean_inc(x_94); -lean_dec(x_81); -x_99 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_99, 0, x_94); -lean_ctor_set(x_99, 1, x_28); -lean_ctor_set(x_99, 2, x_95); -lean_ctor_set(x_99, 3, x_96); -lean_ctor_set(x_99, 4, x_97); -lean_ctor_set(x_99, 5, x_98); -x_100 = lean_st_ref_set(x_4, x_99, x_82); +lean_dec(x_82); +x_100 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_100, 0, x_95); +lean_ctor_set(x_100, 1, x_28); +lean_ctor_set(x_100, 2, x_96); +lean_ctor_set(x_100, 3, x_97); +lean_ctor_set(x_100, 4, x_98); +lean_ctor_set(x_100, 5, x_99); +x_101 = lean_st_ref_set(x_4, x_100, x_83); lean_dec(x_4); -x_101 = lean_ctor_get(x_100, 1); -lean_inc(x_101); -if (lean_is_exclusive(x_100)) { - lean_ctor_release(x_100, 0); - lean_ctor_release(x_100, 1); - x_102 = x_100; +x_102 = lean_ctor_get(x_101, 1); +lean_inc(x_102); +if (lean_is_exclusive(x_101)) { + lean_ctor_release(x_101, 0); + lean_ctor_release(x_101, 1); + x_103 = x_101; } else { - lean_dec_ref(x_100); - x_102 = lean_box(0); + lean_dec_ref(x_101); + x_103 = lean_box(0); } -x_103 = lean_box(0); -x_104 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_104, 0, x_72); -lean_ctor_set(x_104, 1, x_103); -if (lean_is_scalar(x_102)) { - x_105 = lean_alloc_ctor(0, 2, 0); +x_104 = lean_box(0); +x_105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_105, 0, x_73); +lean_ctor_set(x_105, 1, x_104); +if (lean_is_scalar(x_103)) { + x_106 = lean_alloc_ctor(0, 2, 0); } else { - x_105 = x_102; + x_106 = x_103; } -lean_ctor_set(x_105, 0, x_104); -lean_ctor_set(x_105, 1, x_101); -x_10 = x_105; +lean_ctor_set(x_106, 0, x_105); +lean_ctor_set(x_106, 1, x_102); +x_10 = x_106; goto block_22; } } } else { -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_160; -x_118 = lean_ctor_get(x_57, 0); -x_119 = lean_ctor_get(x_57, 2); -x_120 = lean_ctor_get(x_57, 3); -x_121 = lean_ctor_get(x_57, 4); -x_122 = lean_ctor_get(x_57, 5); +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_162; +x_119 = lean_ctor_get(x_57, 0); +x_120 = lean_ctor_get(x_57, 2); +x_121 = lean_ctor_get(x_57, 3); +x_122 = lean_ctor_get(x_57, 4); +x_123 = lean_ctor_get(x_57, 5); +lean_inc(x_123); lean_inc(x_122); lean_inc(x_121); lean_inc(x_120); lean_inc(x_119); -lean_inc(x_118); lean_dec(x_57); -x_123 = lean_box(0); -x_124 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_124, 0, x_118); -lean_ctor_set(x_124, 1, x_123); -lean_ctor_set(x_124, 2, x_119); -lean_ctor_set(x_124, 3, x_120); -lean_ctor_set(x_124, 4, x_121); -lean_ctor_set(x_124, 5, x_122); -x_125 = lean_st_ref_set(x_4, x_124, x_58); -x_126 = lean_ctor_get(x_125, 1); -lean_inc(x_126); -lean_dec(x_125); -x_127 = lean_box(0); +x_124 = lean_box(0); +x_125 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_125, 0, x_119); +lean_ctor_set(x_125, 1, x_124); +lean_ctor_set(x_125, 2, x_120); +lean_ctor_set(x_125, 3, x_121); +lean_ctor_set(x_125, 4, x_122); +lean_ctor_set(x_125, 5, x_123); +x_126 = lean_st_ref_set(x_4, x_125, x_58); +x_127 = lean_ctor_get(x_126, 1); +lean_inc(x_127); +lean_dec(x_126); +x_128 = lean_box(0); +x_129 = 0; lean_inc(x_1); -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_1); -lean_ctor_set(x_128, 1, x_127); -x_129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_129, 0, x_1); -lean_ctor_set(x_129, 1, x_123); -x_130 = lean_st_ref_get(x_8, x_126); -x_131 = lean_ctor_get(x_130, 1); -lean_inc(x_131); -lean_dec(x_130); -x_132 = lean_st_mk_ref(x_129, x_131); -x_133 = lean_ctor_get(x_132, 0); +x_130 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_130, 0, x_1); +lean_ctor_set(x_130, 1, x_128); +lean_ctor_set_uint8(x_130, sizeof(void*)*2, x_129); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_1); +lean_ctor_set(x_131, 1, x_124); +x_132 = lean_st_ref_get(x_8, x_127); +x_133 = lean_ctor_get(x_132, 1); lean_inc(x_133); -x_134 = lean_ctor_get(x_132, 1); -lean_inc(x_134); lean_dec(x_132); +x_134 = lean_st_mk_ref(x_131, x_133); +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); +x_136 = lean_ctor_get(x_134, 1); +lean_inc(x_136); +lean_dec(x_134); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_133); -lean_inc(x_128); -x_160 = lean_apply_9(x_2, x_128, x_133, x_3, x_4, x_5, x_6, x_7, x_8, x_134); -if (lean_obj_tag(x_160) == 0) +lean_inc(x_135); +lean_inc(x_130); +x_162 = lean_apply_9(x_2, x_130, x_135, x_3, x_4, x_5, x_6, x_7, x_8, x_136); +if (lean_obj_tag(x_162) == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; -x_161 = lean_ctor_get(x_160, 1); -lean_inc(x_161); -lean_dec(x_160); -x_162 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_128, x_133, x_3, x_4, x_5, x_6, x_7, x_8, x_161); +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_163 = lean_ctor_get(x_162, 1); +lean_inc(x_163); +lean_dec(x_162); +x_164 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_130, x_135, x_3, x_4, x_5, x_6, x_7, x_8, x_163); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_128); -x_163 = lean_ctor_get(x_162, 0); -lean_inc(x_163); -x_164 = lean_ctor_get(x_162, 1); -lean_inc(x_164); -lean_dec(x_162); -x_135 = x_163; -x_136 = x_164; -goto block_159; +lean_dec(x_130); +x_165 = lean_ctor_get(x_164, 0); +lean_inc(x_165); +x_166 = lean_ctor_get(x_164, 1); +lean_inc(x_166); +lean_dec(x_164); +x_137 = x_165; +x_138 = x_166; +goto block_161; } else { -lean_object* x_165; lean_object* x_166; uint8_t x_167; -x_165 = lean_ctor_get(x_160, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_160, 1); -lean_inc(x_166); -lean_dec(x_160); -x_167 = l_Lean_Elab_isAbortTacticException(x_165); -if (x_167 == 0) +lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_167 = lean_ctor_get(x_162, 0); +lean_inc(x_167); +x_168 = lean_ctor_get(x_162, 1); +lean_inc(x_168); +lean_dec(x_162); +x_169 = l_Lean_Elab_isAbortTacticException(x_167); +if (x_169 == 0) { -lean_dec(x_133); -lean_dec(x_128); +lean_dec(x_135); +lean_dec(x_130); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -x_29 = x_165; -x_30 = x_166; +x_29 = x_167; +x_30 = x_168; goto block_53; } else { -lean_object* x_168; lean_object* x_169; lean_object* x_170; -lean_dec(x_165); -x_168 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_128, x_133, x_3, x_4, x_5, x_6, x_7, x_8, x_166); +lean_object* x_170; lean_object* x_171; lean_object* x_172; +lean_dec(x_167); +x_170 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_130, x_135, x_3, x_4, x_5, x_6, x_7, x_8, x_168); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_128); -x_169 = lean_ctor_get(x_168, 0); -lean_inc(x_169); -x_170 = lean_ctor_get(x_168, 1); -lean_inc(x_170); -lean_dec(x_168); -x_135 = x_169; -x_136 = x_170; -goto block_159; +lean_dec(x_130); +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +x_172 = lean_ctor_get(x_170, 1); +lean_inc(x_172); +lean_dec(x_170); +x_137 = x_171; +x_138 = x_172; +goto block_161; } } -block_159: +block_161: { -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_137 = lean_st_ref_get(x_8, x_136); -x_138 = lean_ctor_get(x_137, 1); -lean_inc(x_138); -lean_dec(x_137); -x_139 = lean_st_ref_get(x_133, x_138); -lean_dec(x_133); +lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_139 = lean_st_ref_get(x_8, x_138); x_140 = lean_ctor_get(x_139, 1); lean_inc(x_140); lean_dec(x_139); -x_141 = lean_st_ref_get(x_8, x_140); -lean_dec(x_8); +x_141 = lean_st_ref_get(x_135, x_140); +lean_dec(x_135); x_142 = lean_ctor_get(x_141, 1); lean_inc(x_142); lean_dec(x_141); -x_143 = lean_st_ref_take(x_4, x_142); -x_144 = lean_ctor_get(x_143, 0); +x_143 = lean_st_ref_get(x_8, x_142); +lean_dec(x_8); +x_144 = lean_ctor_get(x_143, 1); lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); -lean_inc(x_145); lean_dec(x_143); -x_146 = lean_ctor_get(x_144, 0); +x_145 = lean_st_ref_take(x_4, x_144); +x_146 = lean_ctor_get(x_145, 0); lean_inc(x_146); -x_147 = lean_ctor_get(x_144, 2); +x_147 = lean_ctor_get(x_145, 1); lean_inc(x_147); -x_148 = lean_ctor_get(x_144, 3); +lean_dec(x_145); +x_148 = lean_ctor_get(x_146, 0); lean_inc(x_148); -x_149 = lean_ctor_get(x_144, 4); +x_149 = lean_ctor_get(x_146, 2); lean_inc(x_149); -x_150 = lean_ctor_get(x_144, 5); +x_150 = lean_ctor_get(x_146, 3); lean_inc(x_150); -if (lean_is_exclusive(x_144)) { - lean_ctor_release(x_144, 0); - lean_ctor_release(x_144, 1); - lean_ctor_release(x_144, 2); - lean_ctor_release(x_144, 3); - lean_ctor_release(x_144, 4); - lean_ctor_release(x_144, 5); - x_151 = x_144; +x_151 = lean_ctor_get(x_146, 4); +lean_inc(x_151); +x_152 = lean_ctor_get(x_146, 5); +lean_inc(x_152); +if (lean_is_exclusive(x_146)) { + lean_ctor_release(x_146, 0); + lean_ctor_release(x_146, 1); + lean_ctor_release(x_146, 2); + lean_ctor_release(x_146, 3); + lean_ctor_release(x_146, 4); + lean_ctor_release(x_146, 5); + x_153 = x_146; } else { - lean_dec_ref(x_144); - x_151 = lean_box(0); + lean_dec_ref(x_146); + x_153 = lean_box(0); } -if (lean_is_scalar(x_151)) { - x_152 = lean_alloc_ctor(0, 6, 0); +if (lean_is_scalar(x_153)) { + x_154 = lean_alloc_ctor(0, 6, 0); } else { - x_152 = x_151; + x_154 = x_153; } -lean_ctor_set(x_152, 0, x_146); -lean_ctor_set(x_152, 1, x_28); -lean_ctor_set(x_152, 2, x_147); -lean_ctor_set(x_152, 3, x_148); -lean_ctor_set(x_152, 4, x_149); -lean_ctor_set(x_152, 5, x_150); -x_153 = lean_st_ref_set(x_4, x_152, x_145); +lean_ctor_set(x_154, 0, x_148); +lean_ctor_set(x_154, 1, x_28); +lean_ctor_set(x_154, 2, x_149); +lean_ctor_set(x_154, 3, x_150); +lean_ctor_set(x_154, 4, x_151); +lean_ctor_set(x_154, 5, x_152); +x_155 = lean_st_ref_set(x_4, x_154, x_147); lean_dec(x_4); -x_154 = lean_ctor_get(x_153, 1); -lean_inc(x_154); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - lean_ctor_release(x_153, 1); - x_155 = x_153; +x_156 = lean_ctor_get(x_155, 1); +lean_inc(x_156); +if (lean_is_exclusive(x_155)) { + lean_ctor_release(x_155, 0); + lean_ctor_release(x_155, 1); + x_157 = x_155; } else { - lean_dec_ref(x_153); - x_155 = lean_box(0); + lean_dec_ref(x_155); + x_157 = lean_box(0); } -x_156 = lean_box(0); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_135); -lean_ctor_set(x_157, 1, x_156); -if (lean_is_scalar(x_155)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_158 = lean_box(0); +x_159 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_159, 0, x_137); +lean_ctor_set(x_159, 1, x_158); +if (lean_is_scalar(x_157)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_155; + x_160 = x_157; } -lean_ctor_set(x_158, 0, x_157); -lean_ctor_set(x_158, 1, x_154); -x_10 = x_158; +lean_ctor_set(x_160, 0, x_159); +lean_ctor_set(x_160, 1, x_156); +x_10 = x_160; goto block_22; } } @@ -3015,49 +3028,53 @@ x_19 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x x_20 = !lean_is_exclusive(x_19); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; x_21 = lean_ctor_get(x_19, 0); x_22 = lean_ctor_get(x_4, 1); lean_inc(x_22); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_3); -x_24 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_1); -lean_ctor_set(x_24, 2, x_2); -lean_ctor_set(x_24, 3, x_18); -lean_ctor_set(x_24, 4, x_21); -x_25 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_19, 0, x_25); +x_24 = lean_ctor_get_uint8(x_4, sizeof(void*)*2); +x_25 = lean_alloc_ctor(0, 5, 1); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_1); +lean_ctor_set(x_25, 2, x_2); +lean_ctor_set(x_25, 3, x_18); +lean_ctor_set(x_25, 4, x_21); +lean_ctor_set_uint8(x_25, sizeof(void*)*5, x_24); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_19, 0, x_26); return x_19; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_26 = lean_ctor_get(x_19, 0); -x_27 = lean_ctor_get(x_19, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_19); -x_28 = lean_ctor_get(x_4, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_27 = lean_ctor_get(x_19, 0); +x_28 = lean_ctor_get(x_19, 1); lean_inc(x_28); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_29, 1, x_3); -x_30 = lean_alloc_ctor(0, 5, 0); +lean_inc(x_27); +lean_dec(x_19); +x_29 = lean_ctor_get(x_4, 1); +lean_inc(x_29); +x_30 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_1); -lean_ctor_set(x_30, 2, x_2); -lean_ctor_set(x_30, 3, x_18); -lean_ctor_set(x_30, 4, x_26); -x_31 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_31, 0, x_30); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_27); -return x_32; +lean_ctor_set(x_30, 1, x_3); +x_31 = lean_ctor_get_uint8(x_4, sizeof(void*)*2); +x_32 = lean_alloc_ctor(0, 5, 1); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_1); +lean_ctor_set(x_32, 2, x_2); +lean_ctor_set(x_32, 3, x_18); +lean_ctor_set(x_32, 4, x_27); +lean_ctor_set_uint8(x_32, sizeof(void*)*5, x_31); +x_33 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_33, 0, x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_28); +return x_34; } } } @@ -4682,7 +4699,7 @@ return x_19; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; x_20 = lean_ctor_get(x_3, 0); lean_inc(x_20); x_21 = lean_ctor_get(x_3, 1); @@ -4697,21 +4714,23 @@ lean_inc(x_24); lean_dec(x_20); x_25 = lean_ctor_get(x_4, 0); lean_inc(x_25); -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); +x_26 = lean_ctor_get_uint8(x_4, sizeof(void*)*2); +x_27 = lean_ctor_get(x_24, 1); +lean_inc(x_27); lean_dec(x_24); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); +x_28 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_28, 0, x_25); +lean_ctor_set(x_28, 1, x_27); +lean_ctor_set_uint8(x_28, sizeof(void*)*2, x_26); lean_inc(x_2); -x_28 = l_Lean_Elab_Tactic_mkInitialTacticInfo(x_2, x_27, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); +x_29 = l_Lean_Elab_Tactic_mkInitialTacticInfo(x_2, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); -lean_dec(x_28); -x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_withTacticInfoContext___rarg___lambda__1), 11, 1); -lean_closure_set(x_31, 0, x_29); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec(x_29); +x_32 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_withTacticInfoContext___rarg___lambda__1), 11, 1); +lean_closure_set(x_32, 0, x_30); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); @@ -4719,8 +4738,8 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_32 = l_Lean_Elab_withInfoTreeContext___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop___spec__3(x_23, x_31, x_27, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_30); -if (lean_obj_tag(x_32) == 0) +x_33 = l_Lean_Elab_withInfoTreeContext___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop___spec__3(x_23, x_32, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_31); +if (lean_obj_tag(x_33) == 0) { lean_dec(x_21); lean_dec(x_11); @@ -4733,18 +4752,18 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -return x_32; +return x_33; } else { -lean_object* x_33; -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -if (lean_obj_tag(x_33) == 0) +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) { if (lean_obj_tag(x_21) == 0) { -uint8_t x_34; +uint8_t x_35; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -4755,59 +4774,59 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_34 = !lean_is_exclusive(x_32); -if (x_34 == 0) +x_35 = !lean_is_exclusive(x_33); +if (x_35 == 0) { -lean_object* x_35; -x_35 = lean_ctor_get(x_32, 0); -lean_dec(x_35); -return x_32; +lean_object* x_36; +x_36 = lean_ctor_get(x_33, 0); +lean_dec(x_36); +return x_33; } else { -lean_object* x_36; lean_object* x_37; -x_36 = lean_ctor_get(x_32, 1); -lean_inc(x_36); -lean_dec(x_32); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_33); -lean_ctor_set(x_37, 1, x_36); -return x_37; -} -} -else -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_33, 1); +lean_inc(x_37); +lean_dec(x_33); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_34); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_34); +x_39 = lean_ctor_get(x_33, 1); +lean_inc(x_39); lean_dec(x_33); -x_38 = lean_ctor_get(x_32, 1); -lean_inc(x_38); -lean_dec(x_32); lean_inc(x_1); -x_39 = l_Lean_Elab_Tactic_SavedState_restore(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_38); -x_40 = lean_ctor_get(x_39, 1); -lean_inc(x_40); -lean_dec(x_39); +x_40 = l_Lean_Elab_Tactic_SavedState_restore(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_39); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +lean_dec(x_40); x_3 = x_21; -x_12 = x_40; +x_12 = x_41; goto _start; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_32); -if (x_42 == 0) +uint8_t x_43; +x_43 = !lean_is_exclusive(x_33); +if (x_43 == 0) { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; -x_43 = lean_ctor_get(x_32, 1); -x_44 = lean_ctor_get(x_32, 0); -lean_dec(x_44); +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_44 = lean_ctor_get(x_33, 1); x_45 = lean_ctor_get(x_33, 0); -lean_inc(x_45); -x_46 = l_Lean_Elab_unsupportedSyntaxExceptionId; -x_47 = lean_nat_dec_eq(x_45, x_46); lean_dec(x_45); -if (x_47 == 0) +x_46 = lean_ctor_get(x_34, 0); +lean_inc(x_46); +x_47 = l_Lean_Elab_unsupportedSyntaxExceptionId; +x_48 = lean_nat_dec_eq(x_46, x_47); +lean_dec(x_46); +if (x_48 == 0) { lean_dec(x_21); lean_dec(x_11); @@ -4820,37 +4839,37 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -return x_32; +return x_33; } else { -lean_object* x_48; lean_object* x_49; -lean_free_object(x_32); -lean_dec(x_33); +lean_object* x_49; lean_object* x_50; +lean_free_object(x_33); +lean_dec(x_34); lean_inc(x_1); -x_48 = l_Lean_Elab_Tactic_SavedState_restore(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_43); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); +x_49 = l_Lean_Elab_Tactic_SavedState_restore(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_44); +x_50 = lean_ctor_get(x_49, 1); +lean_inc(x_50); +lean_dec(x_49); x_3 = x_21; -x_12 = x_49; +x_12 = x_50; goto _start; } } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; -x_51 = lean_ctor_get(x_32, 1); -lean_inc(x_51); -lean_dec(x_32); -x_52 = lean_ctor_get(x_33, 0); +lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_52 = lean_ctor_get(x_33, 1); lean_inc(x_52); -x_53 = l_Lean_Elab_unsupportedSyntaxExceptionId; -x_54 = lean_nat_dec_eq(x_52, x_53); -lean_dec(x_52); -if (x_54 == 0) +lean_dec(x_33); +x_53 = lean_ctor_get(x_34, 0); +lean_inc(x_53); +x_54 = l_Lean_Elab_unsupportedSyntaxExceptionId; +x_55 = lean_nat_dec_eq(x_53, x_54); +lean_dec(x_53); +if (x_55 == 0) { -lean_object* x_55; +lean_object* x_56; lean_dec(x_21); lean_dec(x_11); lean_dec(x_10); @@ -4862,22 +4881,22 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_33); -lean_ctor_set(x_55, 1, x_51); -return x_55; +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_34); +lean_ctor_set(x_56, 1, x_52); +return x_56; } else { -lean_object* x_56; lean_object* x_57; -lean_dec(x_33); +lean_object* x_57; lean_object* x_58; +lean_dec(x_34); lean_inc(x_1); -x_56 = l_Lean_Elab_Tactic_SavedState_restore(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_51); -x_57 = lean_ctor_get(x_56, 1); -lean_inc(x_57); -lean_dec(x_56); +x_57 = l_Lean_Elab_Tactic_SavedState_restore(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_52); +x_58 = lean_ctor_get(x_57, 1); +lean_inc(x_58); +lean_dec(x_57); x_3 = x_21; -x_12 = x_57; +x_12 = x_58; goto _start; } } @@ -6009,7 +6028,7 @@ return x_18; } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; x_19 = lean_ctor_get(x_2, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_2, 1); @@ -6030,21 +6049,23 @@ lean_inc(x_26); lean_dec(x_19); x_27 = lean_ctor_get(x_3, 0); lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); +x_28 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); lean_dec(x_26); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); +x_30 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_30, 0, x_27); +lean_ctor_set(x_30, 1, x_29); +lean_ctor_set_uint8(x_30, sizeof(void*)*2, x_28); lean_inc(x_1); -x_30 = l_Lean_Elab_Tactic_mkInitialTacticInfo(x_1, x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); +x_31 = l_Lean_Elab_Tactic_mkInitialTacticInfo(x_1, x_30, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22); +x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); -lean_dec(x_30); -x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_withTacticInfoContext___rarg___lambda__1), 11, 1); -lean_closure_set(x_33, 0, x_31); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_withTacticInfoContext___rarg___lambda__1), 11, 1); +lean_closure_set(x_34, 0, x_32); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -6052,8 +6073,8 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_34 = l_Lean_Elab_withInfoTreeContext___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop___spec__3(x_25, x_33, x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_32); -if (lean_obj_tag(x_34) == 0) +x_35 = l_Lean_Elab_withInfoTreeContext___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop___spec__3(x_25, x_34, x_30, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); +if (lean_obj_tag(x_35) == 0) { lean_dec(x_20); lean_dec(x_10); @@ -6065,24 +6086,24 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -return x_34; +return x_35; } else { -uint8_t x_35; -x_35 = !lean_is_exclusive(x_34); -if (x_35 == 0) +uint8_t x_36; +x_36 = !lean_is_exclusive(x_35); +if (x_36 == 0) { -lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_36 = lean_ctor_get(x_34, 0); -x_37 = lean_ctor_get(x_34, 1); -x_38 = l_List_isEmpty___rarg(x_20); -if (x_38 == 0) +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = lean_ctor_get(x_35, 0); +x_38 = lean_ctor_get(x_35, 1); +x_39 = l_List_isEmpty___rarg(x_20); +if (x_39 == 0) { -lean_free_object(x_34); -lean_dec(x_36); +lean_free_object(x_35); +lean_dec(x_37); x_2 = x_20; -x_11 = x_37; +x_11 = x_38; goto _start; } else @@ -6097,28 +6118,28 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -return x_34; +return x_35; } } else { -lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_40 = lean_ctor_get(x_34, 0); -x_41 = lean_ctor_get(x_34, 1); +lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_41 = lean_ctor_get(x_35, 0); +x_42 = lean_ctor_get(x_35, 1); +lean_inc(x_42); lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_34); -x_42 = l_List_isEmpty___rarg(x_20); -if (x_42 == 0) +lean_dec(x_35); +x_43 = l_List_isEmpty___rarg(x_20); +if (x_43 == 0) { -lean_dec(x_40); +lean_dec(x_41); x_2 = x_20; -x_11 = x_41; +x_11 = x_42; goto _start; } else { -lean_object* x_44; +lean_object* x_45; lean_dec(x_20); lean_dec(x_10); lean_dec(x_9); @@ -6129,10 +6150,10 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_41); -return x_44; +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_42); +return x_45; } } } @@ -13326,7 +13347,7 @@ lean_dec(x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -13336,11 +13357,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719_(lean_object* x_1) { +lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -13422,6 +13443,7 @@ l_Lean_Elab_Term_reportUnsolvedGoals___closed__7 = _init_l_Lean_Elab_Term_report lean_mark_persistent(l_Lean_Elab_Term_reportUnsolvedGoals___closed__7); l_Lean_Elab_Term_reportUnsolvedGoals___closed__8 = _init_l_Lean_Elab_Term_reportUnsolvedGoals___closed__8(); lean_mark_persistent(l_Lean_Elab_Term_reportUnsolvedGoals___closed__8); +l_Lean_Elab_Tactic_Context_inConv___default = _init_l_Lean_Elab_Tactic_Context_inConv___default(); l_Lean_Elab_Tactic_instInhabitedState = _init_l_Lean_Elab_Tactic_instInhabitedState(); lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedState); l_Lean_Elab_Tactic_instMonadTacticM___closed__1 = _init_l_Lean_Elab_Tactic_instMonadTacticM___closed__1(); @@ -13638,9 +13660,9 @@ l_Lean_Elab_Tactic_getFVarIds___boxed__const__1 = _init_l_Lean_Elab_Tactic_getFV lean_mark_persistent(l_Lean_Elab_Tactic_getFVarIds___boxed__const__1); l_Lean_Elab_Tactic_withCaseRef___rarg___closed__1 = _init_l_Lean_Elab_Tactic_withCaseRef___rarg___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_withCaseRef___rarg___closed__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719____closed__1); -res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2719_(lean_io_mk_world()); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744____closed__1); +res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_2744_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 9033c35ff9..ad7fd8daa6 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -366,7 +366,7 @@ lean_object* l_Lean_throwKernelException___at_Lean_Elab_Term_evalExpr___spec__4( lean_object* l_Lean_Elab_Term_mkFreshIdent___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isMonadApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_Meta_ppGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveLocalName_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___boxed(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits___spec__5(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -10953,9 +10953,10 @@ return x_11; lean_object* l_Lean_Elab_Term_ppGoal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_9; -x_9 = l_Lean_Meta_ppGoal(x_1, x_4, x_5, x_6, x_7, x_8); -return x_9; +uint8_t x_9; lean_object* x_10; +x_9 = 0; +x_10 = l_Lean_Meta_ppGoal(x_1, x_9, x_4, x_5, x_6, x_7, x_8); +return x_10; } } lean_object* l_Lean_Elab_Term_ppGoal___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) { diff --git a/stage0/stdlib/Lean/Meta/IndPredBelow.c b/stage0/stdlib/Lean/Meta/IndPredBelow.c index ee4a48afa5..5ad536a128 100644 --- a/stage0/stdlib/Lean/Meta/IndPredBelow.c +++ b/stage0/stdlib/Lean/Meta/IndPredBelow.c @@ -164,7 +164,7 @@ extern lean_object* l_Lean_levelZero; static lean_object* l_Array_mapIdxM_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__3___lambda__2___closed__5; extern lean_object* l_Lean_ExprStructEq_instBEqExprStructEq; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_Meta_ppGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_IndPredBelow_mkBelow___closed__5; lean_object* l_Array_mapIdxM_map___at_Lean_Meta_IndPredBelow_mkCtorType_addHeaderVars___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getConstInfoCtor___at_Lean_Meta_IndPredBelow_mkConstructor___spec__1___closed__3; @@ -18786,7 +18786,7 @@ lean_inc(x_1); x_28 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_19, x_8, x_9, x_10, x_11, x_27); if (lean_obj_tag(x_28) == 0) { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); @@ -18804,44 +18804,44 @@ x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); x_36 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_66 = lean_st_ref_get(x_11, x_35); -x_67 = lean_ctor_get(x_66, 0); -lean_inc(x_67); -x_68 = lean_ctor_get(x_67, 3); +x_67 = lean_st_ref_get(x_11, x_35); +x_68 = lean_ctor_get(x_67, 0); lean_inc(x_68); -lean_dec(x_67); -x_69 = lean_ctor_get_uint8(x_68, sizeof(void*)*1); +x_69 = lean_ctor_get(x_68, 3); +lean_inc(x_69); lean_dec(x_68); -if (x_69 == 0) +x_70 = lean_ctor_get_uint8(x_69, sizeof(void*)*1); +lean_dec(x_69); +if (x_70 == 0) { -lean_object* x_70; uint8_t x_71; -x_70 = lean_ctor_get(x_66, 1); -lean_inc(x_70); -lean_dec(x_66); -x_71 = 0; -x_37 = x_71; -x_38 = x_70; -goto block_65; +lean_object* x_71; uint8_t x_72; +x_71 = lean_ctor_get(x_67, 1); +lean_inc(x_71); +lean_dec(x_67); +x_72 = 0; +x_37 = x_72; +x_38 = x_71; +goto block_66; } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; -x_72 = lean_ctor_get(x_66, 1); -lean_inc(x_72); -lean_dec(x_66); -x_73 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_36, x_8, x_9, x_10, x_11, x_72); -x_74 = lean_ctor_get(x_73, 0); -lean_inc(x_74); -x_75 = lean_ctor_get(x_73, 1); +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_73 = lean_ctor_get(x_67, 1); +lean_inc(x_73); +lean_dec(x_67); +x_74 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_36, x_8, x_9, x_10, x_11, x_73); +x_75 = lean_ctor_get(x_74, 0); lean_inc(x_75); -lean_dec(x_73); -x_76 = lean_unbox(x_74); +x_76 = lean_ctor_get(x_74, 1); +lean_inc(x_76); lean_dec(x_74); -x_37 = x_76; -x_38 = x_75; -goto block_65; +x_77 = lean_unbox(x_75); +lean_dec(x_75); +x_37 = x_77; +x_38 = x_76; +goto block_66; } -block_65: +block_66: { if (x_37 == 0) { @@ -18882,72 +18882,73 @@ return x_44; } else { -lean_object* x_45; lean_object* x_46; +lean_object* x_45; uint8_t x_46; lean_object* x_47; x_45 = l_Lean_Expr_mvarId_x21(x_34); +x_46 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_46 = l_Lean_Meta_ppGoal(x_45, x_8, x_9, x_10, x_11, x_38); -if (lean_obj_tag(x_46) == 0) +x_47 = l_Lean_Meta_ppGoal(x_45, x_46, x_8, x_9, x_10, x_11, x_38); +if (lean_obj_tag(x_47) == 0) { -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); -lean_dec(x_46); -x_49 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_49, 0, x_47); -x_50 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_51 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_49); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec(x_47); +x_50 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_50, 0, x_48); +x_51 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; x_52 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); -x_53 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_36, x_52, x_8, x_9, x_10, x_11, x_48); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); +x_53 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_51); +x_54 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_36, x_53, x_8, x_9, x_10, x_11, x_49); +x_55 = lean_ctor_get(x_54, 0); lean_inc(x_55); -lean_dec(x_53); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec(x_54); lean_inc(x_3); -x_56 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_34, x_3, x_36, x_1, x_19, x_54, x_8, x_9, x_10, x_11, x_55); -if (lean_obj_tag(x_56) == 0) +x_57 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_34, x_3, x_36, x_1, x_19, x_55, x_8, x_9, x_10, x_11, x_56); +if (lean_obj_tag(x_57) == 0) { lean_dec(x_3); -return x_56; +return x_57; } else { -uint8_t x_57; -x_57 = !lean_is_exclusive(x_56); -if (x_57 == 0) +uint8_t x_58; +x_58 = !lean_is_exclusive(x_57); +if (x_58 == 0) { -lean_object* x_58; -x_58 = lean_ctor_get(x_56, 0); -lean_dec(x_58); -lean_ctor_set_tag(x_56, 0); -lean_ctor_set(x_56, 0, x_3); -return x_56; +lean_object* x_59; +x_59 = lean_ctor_get(x_57, 0); +lean_dec(x_59); +lean_ctor_set_tag(x_57, 0); +lean_ctor_set(x_57, 0, x_3); +return x_57; } else { -lean_object* x_59; lean_object* x_60; -x_59 = lean_ctor_get(x_56, 1); -lean_inc(x_59); -lean_dec(x_56); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_3); -lean_ctor_set(x_60, 1, x_59); -return x_60; +lean_object* x_60; lean_object* x_61; +x_60 = lean_ctor_get(x_57, 1); +lean_inc(x_60); +lean_dec(x_57); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_3); +lean_ctor_set(x_61, 1, x_60); +return x_61; } } } else { -uint8_t x_61; +uint8_t x_62; lean_dec(x_34); lean_dec(x_19); lean_dec(x_11); @@ -18955,26 +18956,26 @@ lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_1); -x_61 = !lean_is_exclusive(x_46); -if (x_61 == 0) +x_62 = !lean_is_exclusive(x_47); +if (x_62 == 0) { -lean_object* x_62; -x_62 = lean_ctor_get(x_46, 0); -lean_dec(x_62); -lean_ctor_set_tag(x_46, 0); -lean_ctor_set(x_46, 0, x_3); -return x_46; +lean_object* x_63; +x_63 = lean_ctor_get(x_47, 0); +lean_dec(x_63); +lean_ctor_set_tag(x_47, 0); +lean_ctor_set(x_47, 0, x_3); +return x_47; } else { -lean_object* x_63; lean_object* x_64; -x_63 = lean_ctor_get(x_46, 1); -lean_inc(x_63); -lean_dec(x_46); -x_64 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_64, 0, x_3); -lean_ctor_set(x_64, 1, x_63); -return x_64; +lean_object* x_64; lean_object* x_65; +x_64 = lean_ctor_get(x_47, 1); +lean_inc(x_64); +lean_dec(x_47); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_3); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } @@ -18982,7 +18983,7 @@ return x_64; } else { -uint8_t x_77; +uint8_t x_78; lean_dec(x_19); lean_dec(x_11); lean_dec(x_10); @@ -18990,23 +18991,23 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_77 = !lean_is_exclusive(x_28); -if (x_77 == 0) +x_78 = !lean_is_exclusive(x_28); +if (x_78 == 0) { return x_28; } else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = lean_ctor_get(x_28, 0); -x_79 = lean_ctor_get(x_28, 1); +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_28, 0); +x_80 = lean_ctor_get(x_28, 1); +lean_inc(x_80); lean_inc(x_79); -lean_inc(x_78); lean_dec(x_28); -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_78); -lean_ctor_set(x_80, 1, x_79); -return x_80; +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; } } } @@ -19015,294 +19016,295 @@ return x_80; } case 1: { -lean_object* x_81; +lean_object* x_82; lean_dec(x_7); lean_dec(x_6); -x_81 = l_Lean_Expr_constName_x3f(x_5); +x_82 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_81) == 0) +if (lean_obj_tag(x_82) == 0) { -lean_object* x_82; +lean_object* x_83; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_82 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_82, 0, x_3); -lean_ctor_set(x_82, 1, x_12); -return x_82; +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_3); +lean_ctor_set(x_83, 1, x_12); +return x_83; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_83 = lean_ctor_get(x_81, 0); -lean_inc(x_83); -lean_dec(x_81); -x_84 = lean_unsigned_to_nat(0u); -x_85 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_84); -if (lean_obj_tag(x_85) == 0) +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_82, 0); +lean_inc(x_84); +lean_dec(x_82); +x_85 = lean_unsigned_to_nat(0u); +x_86 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_85); +if (lean_obj_tag(x_86) == 0) { -lean_object* x_86; -lean_dec(x_83); +lean_object* x_87; +lean_dec(x_84); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_86 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_86, 0, x_3); -lean_ctor_set(x_86, 1, x_12); -return x_86; +x_87 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_87, 0, x_3); +lean_ctor_set(x_87, 1, x_12); +return x_87; } else { -lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; -x_87 = lean_ctor_get(x_85, 0); -lean_inc(x_87); -lean_dec(x_85); -x_88 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_83, x_8, x_9, x_10, x_11, x_12); -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); -x_90 = lean_unbox(x_89); -lean_dec(x_89); -if (x_90 == 0) -{ -uint8_t x_91; -lean_dec(x_87); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_91 = !lean_is_exclusive(x_88); +lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; +x_88 = lean_ctor_get(x_86, 0); +lean_inc(x_88); +lean_dec(x_86); +x_89 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_84, x_8, x_9, x_10, x_11, x_12); +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +x_91 = lean_unbox(x_90); +lean_dec(x_90); if (x_91 == 0) { -lean_object* x_92; -x_92 = lean_ctor_get(x_88, 0); -lean_dec(x_92); -lean_ctor_set(x_88, 0, x_3); -return x_88; +uint8_t x_92; +lean_dec(x_88); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_92 = !lean_is_exclusive(x_89); +if (x_92 == 0) +{ +lean_object* x_93; +x_93 = lean_ctor_get(x_89, 0); +lean_dec(x_93); +lean_ctor_set(x_89, 0, x_3); +return x_89; } else { -lean_object* x_93; lean_object* x_94; -x_93 = lean_ctor_get(x_88, 1); -lean_inc(x_93); -lean_dec(x_88); -x_94 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_94, 0, x_3); -lean_ctor_set(x_94, 1, x_93); -return x_94; +lean_object* x_94; lean_object* x_95; +x_94 = lean_ctor_get(x_89, 1); +lean_inc(x_94); +lean_dec(x_89); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_3); +lean_ctor_set(x_95, 1, x_94); +return x_95; } } else { -lean_object* x_95; lean_object* x_96; -x_95 = lean_ctor_get(x_88, 1); -lean_inc(x_95); -lean_dec(x_88); +lean_object* x_96; lean_object* x_97; +x_96 = lean_ctor_get(x_89, 1); +lean_inc(x_96); +lean_dec(x_89); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_87); +lean_inc(x_88); lean_inc(x_1); -x_96 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_87, x_8, x_9, x_10, x_11, x_95); -if (lean_obj_tag(x_96) == 0) +x_97 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_88, x_8, x_9, x_10, x_11, x_96); +if (lean_obj_tag(x_97) == 0) { -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; -x_97 = lean_ctor_get(x_96, 0); -lean_inc(x_97); -x_98 = lean_ctor_get(x_96, 1); +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; +x_98 = lean_ctor_get(x_97, 0); lean_inc(x_98); -lean_dec(x_96); x_99 = lean_ctor_get(x_97, 1); lean_inc(x_99); lean_dec(x_97); -x_100 = lean_box(0); +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec(x_98); +x_101 = lean_box(0); lean_inc(x_8); -x_101 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_99, x_100, x_8, x_9, x_10, x_11, x_98); -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -x_103 = lean_ctor_get(x_101, 1); +x_102 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_100, x_101, x_8, x_9, x_10, x_11, x_99); +x_103 = lean_ctor_get(x_102, 0); lean_inc(x_103); -lean_dec(x_101); -x_104 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_134 = lean_st_ref_get(x_11, x_103); -x_135 = lean_ctor_get(x_134, 0); -lean_inc(x_135); -x_136 = lean_ctor_get(x_135, 3); -lean_inc(x_136); -lean_dec(x_135); -x_137 = lean_ctor_get_uint8(x_136, sizeof(void*)*1); -lean_dec(x_136); -if (x_137 == 0) -{ -lean_object* x_138; uint8_t x_139; -x_138 = lean_ctor_get(x_134, 1); +x_104 = lean_ctor_get(x_102, 1); +lean_inc(x_104); +lean_dec(x_102); +x_105 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_136 = lean_st_ref_get(x_11, x_104); +x_137 = lean_ctor_get(x_136, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_137, 3); lean_inc(x_138); -lean_dec(x_134); -x_139 = 0; -x_105 = x_139; -x_106 = x_138; -goto block_133; +lean_dec(x_137); +x_139 = lean_ctor_get_uint8(x_138, sizeof(void*)*1); +lean_dec(x_138); +if (x_139 == 0) +{ +lean_object* x_140; uint8_t x_141; +x_140 = lean_ctor_get(x_136, 1); +lean_inc(x_140); +lean_dec(x_136); +x_141 = 0; +x_106 = x_141; +x_107 = x_140; +goto block_135; } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_144; -x_140 = lean_ctor_get(x_134, 1); -lean_inc(x_140); -lean_dec(x_134); -x_141 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_104, x_8, x_9, x_10, x_11, x_140); -x_142 = lean_ctor_get(x_141, 0); +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; +x_142 = lean_ctor_get(x_136, 1); lean_inc(x_142); -x_143 = lean_ctor_get(x_141, 1); -lean_inc(x_143); -lean_dec(x_141); -x_144 = lean_unbox(x_142); -lean_dec(x_142); -x_105 = x_144; -x_106 = x_143; -goto block_133; +lean_dec(x_136); +x_143 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_105, x_8, x_9, x_10, x_11, x_142); +x_144 = lean_ctor_get(x_143, 0); +lean_inc(x_144); +x_145 = lean_ctor_get(x_143, 1); +lean_inc(x_145); +lean_dec(x_143); +x_146 = lean_unbox(x_144); +lean_dec(x_144); +x_106 = x_146; +x_107 = x_145; +goto block_135; } -block_133: +block_135: { -if (x_105 == 0) +if (x_106 == 0) { -lean_object* x_107; lean_object* x_108; -x_107 = lean_box(0); +lean_object* x_108; lean_object* x_109; +x_108 = lean_box(0); lean_inc(x_3); -x_108 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_102, x_3, x_104, x_1, x_87, x_107, x_8, x_9, x_10, x_11, x_106); -if (lean_obj_tag(x_108) == 0) +x_109 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_103, x_3, x_105, x_1, x_88, x_108, x_8, x_9, x_10, x_11, x_107); +if (lean_obj_tag(x_109) == 0) { lean_dec(x_3); -return x_108; +return x_109; } else { -uint8_t x_109; -x_109 = !lean_is_exclusive(x_108); -if (x_109 == 0) +uint8_t x_110; +x_110 = !lean_is_exclusive(x_109); +if (x_110 == 0) { -lean_object* x_110; -x_110 = lean_ctor_get(x_108, 0); -lean_dec(x_110); -lean_ctor_set_tag(x_108, 0); -lean_ctor_set(x_108, 0, x_3); -return x_108; +lean_object* x_111; +x_111 = lean_ctor_get(x_109, 0); +lean_dec(x_111); +lean_ctor_set_tag(x_109, 0); +lean_ctor_set(x_109, 0, x_3); +return x_109; } else { -lean_object* x_111; lean_object* x_112; -x_111 = lean_ctor_get(x_108, 1); -lean_inc(x_111); -lean_dec(x_108); -x_112 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_112, 0, x_3); -lean_ctor_set(x_112, 1, x_111); -return x_112; +lean_object* x_112; lean_object* x_113; +x_112 = lean_ctor_get(x_109, 1); +lean_inc(x_112); +lean_dec(x_109); +x_113 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_113, 0, x_3); +lean_ctor_set(x_113, 1, x_112); +return x_113; } } } else { -lean_object* x_113; lean_object* x_114; -x_113 = l_Lean_Expr_mvarId_x21(x_102); +lean_object* x_114; uint8_t x_115; lean_object* x_116; +x_114 = l_Lean_Expr_mvarId_x21(x_103); +x_115 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_114 = l_Lean_Meta_ppGoal(x_113, x_8, x_9, x_10, x_11, x_106); -if (lean_obj_tag(x_114) == 0) +x_116 = l_Lean_Meta_ppGoal(x_114, x_115, x_8, x_9, x_10, x_11, x_107); +if (lean_obj_tag(x_116) == 0) { -lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -lean_dec(x_114); -x_117 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_117, 0, x_115); -x_118 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_119 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_119, 0, x_118); -lean_ctor_set(x_119, 1, x_117); -x_120 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_120, 0, x_119); -lean_ctor_set(x_120, 1, x_118); -x_121 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_104, x_120, x_8, x_9, x_10, x_11, x_116); -x_122 = lean_ctor_get(x_121, 0); -lean_inc(x_122); -x_123 = lean_ctor_get(x_121, 1); -lean_inc(x_123); -lean_dec(x_121); +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +x_117 = lean_ctor_get(x_116, 0); +lean_inc(x_117); +x_118 = lean_ctor_get(x_116, 1); +lean_inc(x_118); +lean_dec(x_116); +x_119 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_119, 0, x_117); +x_120 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_121 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_119); +x_122 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_120); +x_123 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_105, x_122, x_8, x_9, x_10, x_11, x_118); +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_123, 1); +lean_inc(x_125); +lean_dec(x_123); lean_inc(x_3); -x_124 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_102, x_3, x_104, x_1, x_87, x_122, x_8, x_9, x_10, x_11, x_123); -if (lean_obj_tag(x_124) == 0) +x_126 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_103, x_3, x_105, x_1, x_88, x_124, x_8, x_9, x_10, x_11, x_125); +if (lean_obj_tag(x_126) == 0) { lean_dec(x_3); -return x_124; +return x_126; } else { -uint8_t x_125; -x_125 = !lean_is_exclusive(x_124); -if (x_125 == 0) +uint8_t x_127; +x_127 = !lean_is_exclusive(x_126); +if (x_127 == 0) { -lean_object* x_126; -x_126 = lean_ctor_get(x_124, 0); +lean_object* x_128; +x_128 = lean_ctor_get(x_126, 0); +lean_dec(x_128); +lean_ctor_set_tag(x_126, 0); +lean_ctor_set(x_126, 0, x_3); +return x_126; +} +else +{ +lean_object* x_129; lean_object* x_130; +x_129 = lean_ctor_get(x_126, 1); +lean_inc(x_129); lean_dec(x_126); -lean_ctor_set_tag(x_124, 0); -lean_ctor_set(x_124, 0, x_3); -return x_124; -} -else -{ -lean_object* x_127; lean_object* x_128; -x_127 = lean_ctor_get(x_124, 1); -lean_inc(x_127); -lean_dec(x_124); -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_3); -lean_ctor_set(x_128, 1, x_127); -return x_128; +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_3); +lean_ctor_set(x_130, 1, x_129); +return x_130; } } } else { -uint8_t x_129; -lean_dec(x_102); -lean_dec(x_87); +uint8_t x_131; +lean_dec(x_103); +lean_dec(x_88); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_1); -x_129 = !lean_is_exclusive(x_114); -if (x_129 == 0) +x_131 = !lean_is_exclusive(x_116); +if (x_131 == 0) { -lean_object* x_130; -x_130 = lean_ctor_get(x_114, 0); -lean_dec(x_130); -lean_ctor_set_tag(x_114, 0); -lean_ctor_set(x_114, 0, x_3); -return x_114; +lean_object* x_132; +x_132 = lean_ctor_get(x_116, 0); +lean_dec(x_132); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 0, x_3); +return x_116; } else { -lean_object* x_131; lean_object* x_132; -x_131 = lean_ctor_get(x_114, 1); -lean_inc(x_131); -lean_dec(x_114); -x_132 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_132, 0, x_3); -lean_ctor_set(x_132, 1, x_131); -return x_132; +lean_object* x_133; lean_object* x_134; +x_133 = lean_ctor_get(x_116, 1); +lean_inc(x_133); +lean_dec(x_116); +x_134 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_134, 0, x_3); +lean_ctor_set(x_134, 1, x_133); +return x_134; } } } @@ -19310,31 +19312,31 @@ return x_132; } else { -uint8_t x_145; -lean_dec(x_87); +uint8_t x_147; +lean_dec(x_88); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_145 = !lean_is_exclusive(x_96); -if (x_145 == 0) +x_147 = !lean_is_exclusive(x_97); +if (x_147 == 0) { -return x_96; +return x_97; } else { -lean_object* x_146; lean_object* x_147; lean_object* x_148; -x_146 = lean_ctor_get(x_96, 0); -x_147 = lean_ctor_get(x_96, 1); -lean_inc(x_147); -lean_inc(x_146); -lean_dec(x_96); -x_148 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_148, 0, x_146); -lean_ctor_set(x_148, 1, x_147); -return x_148; +lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_148 = lean_ctor_get(x_97, 0); +x_149 = lean_ctor_get(x_97, 1); +lean_inc(x_149); +lean_inc(x_148); +lean_dec(x_97); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_148); +lean_ctor_set(x_150, 1, x_149); +return x_150; } } } @@ -19343,294 +19345,295 @@ return x_148; } case 2: { -lean_object* x_149; +lean_object* x_151; lean_dec(x_7); lean_dec(x_6); -x_149 = l_Lean_Expr_constName_x3f(x_5); +x_151 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_149) == 0) +if (lean_obj_tag(x_151) == 0) { -lean_object* x_150; +lean_object* x_152; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_150 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_150, 0, x_3); -lean_ctor_set(x_150, 1, x_12); -return x_150; +x_152 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_152, 0, x_3); +lean_ctor_set(x_152, 1, x_12); +return x_152; } else { -lean_object* x_151; lean_object* x_152; lean_object* x_153; -x_151 = lean_ctor_get(x_149, 0); -lean_inc(x_151); -lean_dec(x_149); -x_152 = lean_unsigned_to_nat(0u); -x_153 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_152); -if (lean_obj_tag(x_153) == 0) -{ -lean_object* x_154; +lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_153 = lean_ctor_get(x_151, 0); +lean_inc(x_153); lean_dec(x_151); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_154 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_154, 0, x_3); -lean_ctor_set(x_154, 1, x_12); -return x_154; -} -else +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_154); +if (lean_obj_tag(x_155) == 0) { -lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; -x_155 = lean_ctor_get(x_153, 0); -lean_inc(x_155); +lean_object* x_156; lean_dec(x_153); -x_156 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_151, x_8, x_9, x_10, x_11, x_12); -x_157 = lean_ctor_get(x_156, 0); -lean_inc(x_157); -x_158 = lean_unbox(x_157); -lean_dec(x_157); -if (x_158 == 0) -{ -uint8_t x_159; -lean_dec(x_155); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_159 = !lean_is_exclusive(x_156); -if (x_159 == 0) -{ -lean_object* x_160; -x_160 = lean_ctor_get(x_156, 0); -lean_dec(x_160); +x_156 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_156, 0, x_3); +lean_ctor_set(x_156, 1, x_12); return x_156; } else { -lean_object* x_161; lean_object* x_162; -x_161 = lean_ctor_get(x_156, 1); -lean_inc(x_161); -lean_dec(x_156); -x_162 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_162, 0, x_3); -lean_ctor_set(x_162, 1, x_161); -return x_162; -} +lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; +x_157 = lean_ctor_get(x_155, 0); +lean_inc(x_157); +lean_dec(x_155); +x_158 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_153, x_8, x_9, x_10, x_11, x_12); +x_159 = lean_ctor_get(x_158, 0); +lean_inc(x_159); +x_160 = lean_unbox(x_159); +lean_dec(x_159); +if (x_160 == 0) +{ +uint8_t x_161; +lean_dec(x_157); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_161 = !lean_is_exclusive(x_158); +if (x_161 == 0) +{ +lean_object* x_162; +x_162 = lean_ctor_get(x_158, 0); +lean_dec(x_162); +lean_ctor_set(x_158, 0, x_3); +return x_158; } else { lean_object* x_163; lean_object* x_164; -x_163 = lean_ctor_get(x_156, 1); +x_163 = lean_ctor_get(x_158, 1); lean_inc(x_163); -lean_dec(x_156); +lean_dec(x_158); +x_164 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_164, 0, x_3); +lean_ctor_set(x_164, 1, x_163); +return x_164; +} +} +else +{ +lean_object* x_165; lean_object* x_166; +x_165 = lean_ctor_get(x_158, 1); +lean_inc(x_165); +lean_dec(x_158); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_155); +lean_inc(x_157); lean_inc(x_1); -x_164 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_155, x_8, x_9, x_10, x_11, x_163); -if (lean_obj_tag(x_164) == 0) +x_166 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_157, x_8, x_9, x_10, x_11, x_165); +if (lean_obj_tag(x_166) == 0) { -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_173; lean_object* x_174; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; -x_165 = lean_ctor_get(x_164, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_164, 1); -lean_inc(x_166); -lean_dec(x_164); -x_167 = lean_ctor_get(x_165, 1); +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; uint8_t x_175; lean_object* x_176; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; +x_167 = lean_ctor_get(x_166, 0); lean_inc(x_167); -lean_dec(x_165); -x_168 = lean_box(0); +x_168 = lean_ctor_get(x_166, 1); +lean_inc(x_168); +lean_dec(x_166); +x_169 = lean_ctor_get(x_167, 1); +lean_inc(x_169); +lean_dec(x_167); +x_170 = lean_box(0); lean_inc(x_8); -x_169 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_167, x_168, x_8, x_9, x_10, x_11, x_166); -x_170 = lean_ctor_get(x_169, 0); -lean_inc(x_170); -x_171 = lean_ctor_get(x_169, 1); -lean_inc(x_171); -lean_dec(x_169); -x_172 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_202 = lean_st_ref_get(x_11, x_171); -x_203 = lean_ctor_get(x_202, 0); -lean_inc(x_203); -x_204 = lean_ctor_get(x_203, 3); -lean_inc(x_204); -lean_dec(x_203); -x_205 = lean_ctor_get_uint8(x_204, sizeof(void*)*1); -lean_dec(x_204); -if (x_205 == 0) -{ -lean_object* x_206; uint8_t x_207; -x_206 = lean_ctor_get(x_202, 1); +x_171 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_169, x_170, x_8, x_9, x_10, x_11, x_168); +x_172 = lean_ctor_get(x_171, 0); +lean_inc(x_172); +x_173 = lean_ctor_get(x_171, 1); +lean_inc(x_173); +lean_dec(x_171); +x_174 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_205 = lean_st_ref_get(x_11, x_173); +x_206 = lean_ctor_get(x_205, 0); lean_inc(x_206); -lean_dec(x_202); -x_207 = 0; -x_173 = x_207; -x_174 = x_206; -goto block_201; +x_207 = lean_ctor_get(x_206, 3); +lean_inc(x_207); +lean_dec(x_206); +x_208 = lean_ctor_get_uint8(x_207, sizeof(void*)*1); +lean_dec(x_207); +if (x_208 == 0) +{ +lean_object* x_209; uint8_t x_210; +x_209 = lean_ctor_get(x_205, 1); +lean_inc(x_209); +lean_dec(x_205); +x_210 = 0; +x_175 = x_210; +x_176 = x_209; +goto block_204; } else { -lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; -x_208 = lean_ctor_get(x_202, 1); -lean_inc(x_208); -lean_dec(x_202); -x_209 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_172, x_8, x_9, x_10, x_11, x_208); -x_210 = lean_ctor_get(x_209, 0); -lean_inc(x_210); -x_211 = lean_ctor_get(x_209, 1); +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; +x_211 = lean_ctor_get(x_205, 1); lean_inc(x_211); -lean_dec(x_209); -x_212 = lean_unbox(x_210); -lean_dec(x_210); -x_173 = x_212; -x_174 = x_211; -goto block_201; +lean_dec(x_205); +x_212 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_174, x_8, x_9, x_10, x_11, x_211); +x_213 = lean_ctor_get(x_212, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_212, 1); +lean_inc(x_214); +lean_dec(x_212); +x_215 = lean_unbox(x_213); +lean_dec(x_213); +x_175 = x_215; +x_176 = x_214; +goto block_204; } -block_201: +block_204: { -if (x_173 == 0) +if (x_175 == 0) { -lean_object* x_175; lean_object* x_176; -x_175 = lean_box(0); +lean_object* x_177; lean_object* x_178; +x_177 = lean_box(0); lean_inc(x_3); -x_176 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_170, x_3, x_172, x_1, x_155, x_175, x_8, x_9, x_10, x_11, x_174); -if (lean_obj_tag(x_176) == 0) +x_178 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_172, x_3, x_174, x_1, x_157, x_177, x_8, x_9, x_10, x_11, x_176); +if (lean_obj_tag(x_178) == 0) { lean_dec(x_3); -return x_176; +return x_178; } else { -uint8_t x_177; -x_177 = !lean_is_exclusive(x_176); -if (x_177 == 0) +uint8_t x_179; +x_179 = !lean_is_exclusive(x_178); +if (x_179 == 0) { -lean_object* x_178; -x_178 = lean_ctor_get(x_176, 0); -lean_dec(x_178); -lean_ctor_set_tag(x_176, 0); -lean_ctor_set(x_176, 0, x_3); -return x_176; -} -else -{ -lean_object* x_179; lean_object* x_180; -x_179 = lean_ctor_get(x_176, 1); -lean_inc(x_179); -lean_dec(x_176); -x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_3); -lean_ctor_set(x_180, 1, x_179); -return x_180; -} -} +lean_object* x_180; +x_180 = lean_ctor_get(x_178, 0); +lean_dec(x_180); +lean_ctor_set_tag(x_178, 0); +lean_ctor_set(x_178, 0, x_3); +return x_178; } else { lean_object* x_181; lean_object* x_182; -x_181 = l_Lean_Expr_mvarId_x21(x_170); +x_181 = lean_ctor_get(x_178, 1); +lean_inc(x_181); +lean_dec(x_178); +x_182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_182, 0, x_3); +lean_ctor_set(x_182, 1, x_181); +return x_182; +} +} +} +else +{ +lean_object* x_183; uint8_t x_184; lean_object* x_185; +x_183 = l_Lean_Expr_mvarId_x21(x_172); +x_184 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_182 = l_Lean_Meta_ppGoal(x_181, x_8, x_9, x_10, x_11, x_174); -if (lean_obj_tag(x_182) == 0) +x_185 = l_Lean_Meta_ppGoal(x_183, x_184, x_8, x_9, x_10, x_11, x_176); +if (lean_obj_tag(x_185) == 0) { -lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; -x_183 = lean_ctor_get(x_182, 0); -lean_inc(x_183); -x_184 = lean_ctor_get(x_182, 1); -lean_inc(x_184); -lean_dec(x_182); -x_185 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_185, 0, x_183); -x_186 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_187 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_187, 0, x_186); -lean_ctor_set(x_187, 1, x_185); -x_188 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_188, 0, x_187); -lean_ctor_set(x_188, 1, x_186); -x_189 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_172, x_188, x_8, x_9, x_10, x_11, x_184); -x_190 = lean_ctor_get(x_189, 0); -lean_inc(x_190); -x_191 = lean_ctor_get(x_189, 1); -lean_inc(x_191); -lean_dec(x_189); -lean_inc(x_3); -x_192 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_170, x_3, x_172, x_1, x_155, x_190, x_8, x_9, x_10, x_11, x_191); -if (lean_obj_tag(x_192) == 0) -{ -lean_dec(x_3); -return x_192; -} -else -{ -uint8_t x_193; -x_193 = !lean_is_exclusive(x_192); -if (x_193 == 0) -{ -lean_object* x_194; -x_194 = lean_ctor_get(x_192, 0); -lean_dec(x_194); -lean_ctor_set_tag(x_192, 0); -lean_ctor_set(x_192, 0, x_3); -return x_192; -} -else -{ -lean_object* x_195; lean_object* x_196; -x_195 = lean_ctor_get(x_192, 1); -lean_inc(x_195); +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_185, 1); +lean_inc(x_187); +lean_dec(x_185); +x_188 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_188, 0, x_186); +x_189 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_190 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_188); +x_191 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_189); +x_192 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_174, x_191, x_8, x_9, x_10, x_11, x_187); +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_196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_196, 0, x_3); -lean_ctor_set(x_196, 1, x_195); -return x_196; +lean_inc(x_3); +x_195 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_172, x_3, x_174, x_1, x_157, x_193, x_8, x_9, x_10, x_11, x_194); +if (lean_obj_tag(x_195) == 0) +{ +lean_dec(x_3); +return x_195; +} +else +{ +uint8_t x_196; +x_196 = !lean_is_exclusive(x_195); +if (x_196 == 0) +{ +lean_object* x_197; +x_197 = lean_ctor_get(x_195, 0); +lean_dec(x_197); +lean_ctor_set_tag(x_195, 0); +lean_ctor_set(x_195, 0, x_3); +return x_195; +} +else +{ +lean_object* x_198; lean_object* x_199; +x_198 = lean_ctor_get(x_195, 1); +lean_inc(x_198); +lean_dec(x_195); +x_199 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_199, 0, x_3); +lean_ctor_set(x_199, 1, x_198); +return x_199; } } } else { -uint8_t x_197; -lean_dec(x_170); -lean_dec(x_155); +uint8_t x_200; +lean_dec(x_172); +lean_dec(x_157); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_1); -x_197 = !lean_is_exclusive(x_182); -if (x_197 == 0) +x_200 = !lean_is_exclusive(x_185); +if (x_200 == 0) { -lean_object* x_198; -x_198 = lean_ctor_get(x_182, 0); -lean_dec(x_198); -lean_ctor_set_tag(x_182, 0); -lean_ctor_set(x_182, 0, x_3); -return x_182; +lean_object* x_201; +x_201 = lean_ctor_get(x_185, 0); +lean_dec(x_201); +lean_ctor_set_tag(x_185, 0); +lean_ctor_set(x_185, 0, x_3); +return x_185; } else { -lean_object* x_199; lean_object* x_200; -x_199 = lean_ctor_get(x_182, 1); -lean_inc(x_199); -lean_dec(x_182); -x_200 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_200, 0, x_3); -lean_ctor_set(x_200, 1, x_199); -return x_200; +lean_object* x_202; lean_object* x_203; +x_202 = lean_ctor_get(x_185, 1); +lean_inc(x_202); +lean_dec(x_185); +x_203 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_203, 0, x_3); +lean_ctor_set(x_203, 1, x_202); +return x_203; } } } @@ -19638,31 +19641,31 @@ return x_200; } else { -uint8_t x_213; -lean_dec(x_155); +uint8_t x_216; +lean_dec(x_157); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_213 = !lean_is_exclusive(x_164); -if (x_213 == 0) +x_216 = !lean_is_exclusive(x_166); +if (x_216 == 0) { -return x_164; +return x_166; } else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; -x_214 = lean_ctor_get(x_164, 0); -x_215 = lean_ctor_get(x_164, 1); -lean_inc(x_215); -lean_inc(x_214); -lean_dec(x_164); -x_216 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_216, 0, x_214); -lean_ctor_set(x_216, 1, x_215); -return x_216; +lean_object* x_217; lean_object* x_218; lean_object* x_219; +x_217 = lean_ctor_get(x_166, 0); +x_218 = lean_ctor_get(x_166, 1); +lean_inc(x_218); +lean_inc(x_217); +lean_dec(x_166); +x_219 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_219, 0, x_217); +lean_ctor_set(x_219, 1, x_218); +return x_219; } } } @@ -19671,290 +19674,258 @@ return x_216; } case 3: { -lean_object* x_217; +lean_object* x_220; lean_dec(x_7); lean_dec(x_6); -x_217 = l_Lean_Expr_constName_x3f(x_5); +x_220 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_217) == 0) +if (lean_obj_tag(x_220) == 0) { -lean_object* x_218; +lean_object* x_221; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_218 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_218, 0, x_3); -lean_ctor_set(x_218, 1, x_12); -return x_218; +x_221 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_221, 0, x_3); +lean_ctor_set(x_221, 1, x_12); +return x_221; } else { -lean_object* x_219; lean_object* x_220; lean_object* x_221; -x_219 = lean_ctor_get(x_217, 0); -lean_inc(x_219); -lean_dec(x_217); -x_220 = lean_unsigned_to_nat(0u); -x_221 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_220); -if (lean_obj_tag(x_221) == 0) +lean_object* x_222; lean_object* x_223; lean_object* x_224; +x_222 = lean_ctor_get(x_220, 0); +lean_inc(x_222); +lean_dec(x_220); +x_223 = lean_unsigned_to_nat(0u); +x_224 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_223); +if (lean_obj_tag(x_224) == 0) { -lean_object* x_222; -lean_dec(x_219); +lean_object* x_225; +lean_dec(x_222); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_222 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_222, 0, x_3); -lean_ctor_set(x_222, 1, x_12); -return x_222; +x_225 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_225, 0, x_3); +lean_ctor_set(x_225, 1, x_12); +return x_225; } else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; -x_223 = lean_ctor_get(x_221, 0); -lean_inc(x_223); -lean_dec(x_221); -x_224 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_219, x_8, x_9, x_10, x_11, x_12); -x_225 = lean_ctor_get(x_224, 0); -lean_inc(x_225); -x_226 = lean_unbox(x_225); -lean_dec(x_225); -if (x_226 == 0) -{ -uint8_t x_227; -lean_dec(x_223); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_227 = !lean_is_exclusive(x_224); -if (x_227 == 0) -{ -lean_object* x_228; -x_228 = lean_ctor_get(x_224, 0); +lean_object* x_226; lean_object* x_227; lean_object* x_228; uint8_t x_229; +x_226 = lean_ctor_get(x_224, 0); +lean_inc(x_226); +lean_dec(x_224); +x_227 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_222, x_8, x_9, x_10, x_11, x_12); +x_228 = lean_ctor_get(x_227, 0); +lean_inc(x_228); +x_229 = lean_unbox(x_228); lean_dec(x_228); -lean_ctor_set(x_224, 0, x_3); -return x_224; +if (x_229 == 0) +{ +uint8_t x_230; +lean_dec(x_226); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_230 = !lean_is_exclusive(x_227); +if (x_230 == 0) +{ +lean_object* x_231; +x_231 = lean_ctor_get(x_227, 0); +lean_dec(x_231); +lean_ctor_set(x_227, 0, x_3); +return x_227; } else { -lean_object* x_229; lean_object* x_230; -x_229 = lean_ctor_get(x_224, 1); -lean_inc(x_229); -lean_dec(x_224); -x_230 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_230, 0, x_3); -lean_ctor_set(x_230, 1, x_229); -return x_230; +lean_object* x_232; lean_object* x_233; +x_232 = lean_ctor_get(x_227, 1); +lean_inc(x_232); +lean_dec(x_227); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_3); +lean_ctor_set(x_233, 1, x_232); +return x_233; } } else { -lean_object* x_231; lean_object* x_232; -x_231 = lean_ctor_get(x_224, 1); -lean_inc(x_231); -lean_dec(x_224); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_223); -lean_inc(x_1); -x_232 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_223, x_8, x_9, x_10, x_11, x_231); -if (lean_obj_tag(x_232) == 0) -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; uint8_t x_241; lean_object* x_242; lean_object* x_270; lean_object* x_271; lean_object* x_272; uint8_t x_273; -x_233 = lean_ctor_get(x_232, 0); -lean_inc(x_233); -x_234 = lean_ctor_get(x_232, 1); +lean_object* x_234; lean_object* x_235; +x_234 = lean_ctor_get(x_227, 1); lean_inc(x_234); -lean_dec(x_232); -x_235 = lean_ctor_get(x_233, 1); -lean_inc(x_235); -lean_dec(x_233); -x_236 = lean_box(0); -lean_inc(x_8); -x_237 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_235, x_236, x_8, x_9, x_10, x_11, x_234); -x_238 = lean_ctor_get(x_237, 0); -lean_inc(x_238); -x_239 = lean_ctor_get(x_237, 1); -lean_inc(x_239); -lean_dec(x_237); -x_240 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_270 = lean_st_ref_get(x_11, x_239); -x_271 = lean_ctor_get(x_270, 0); -lean_inc(x_271); -x_272 = lean_ctor_get(x_271, 3); -lean_inc(x_272); -lean_dec(x_271); -x_273 = lean_ctor_get_uint8(x_272, sizeof(void*)*1); -lean_dec(x_272); -if (x_273 == 0) -{ -lean_object* x_274; uint8_t x_275; -x_274 = lean_ctor_get(x_270, 1); -lean_inc(x_274); -lean_dec(x_270); -x_275 = 0; -x_241 = x_275; -x_242 = x_274; -goto block_269; -} -else -{ -lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; uint8_t x_280; -x_276 = lean_ctor_get(x_270, 1); -lean_inc(x_276); -lean_dec(x_270); -x_277 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_240, x_8, x_9, x_10, x_11, x_276); -x_278 = lean_ctor_get(x_277, 0); -lean_inc(x_278); -x_279 = lean_ctor_get(x_277, 1); -lean_inc(x_279); -lean_dec(x_277); -x_280 = lean_unbox(x_278); -lean_dec(x_278); -x_241 = x_280; -x_242 = x_279; -goto block_269; -} -block_269: -{ -if (x_241 == 0) -{ -lean_object* x_243; lean_object* x_244; -x_243 = lean_box(0); -lean_inc(x_3); -x_244 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_238, x_3, x_240, x_1, x_223, x_243, x_8, x_9, x_10, x_11, x_242); -if (lean_obj_tag(x_244) == 0) -{ -lean_dec(x_3); -return x_244; -} -else -{ -uint8_t x_245; -x_245 = !lean_is_exclusive(x_244); -if (x_245 == 0) -{ -lean_object* x_246; -x_246 = lean_ctor_get(x_244, 0); -lean_dec(x_246); -lean_ctor_set_tag(x_244, 0); -lean_ctor_set(x_244, 0, x_3); -return x_244; -} -else -{ -lean_object* x_247; lean_object* x_248; -x_247 = lean_ctor_get(x_244, 1); -lean_inc(x_247); -lean_dec(x_244); -x_248 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_248, 0, x_3); -lean_ctor_set(x_248, 1, x_247); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; -x_249 = l_Lean_Expr_mvarId_x21(x_238); +lean_dec(x_227); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_250 = l_Lean_Meta_ppGoal(x_249, x_8, x_9, x_10, x_11, x_242); -if (lean_obj_tag(x_250) == 0) +lean_inc(x_226); +lean_inc(x_1); +x_235 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_226, x_8, x_9, x_10, x_11, x_234); +if (lean_obj_tag(x_235) == 0) { -lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; -x_251 = lean_ctor_get(x_250, 0); -lean_inc(x_251); -x_252 = lean_ctor_get(x_250, 1); -lean_inc(x_252); -lean_dec(x_250); -x_253 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_253, 0, x_251); -x_254 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_255 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_255, 0, x_254); -lean_ctor_set(x_255, 1, x_253); -x_256 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_256, 0, x_255); -lean_ctor_set(x_256, 1, x_254); -x_257 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_240, x_256, x_8, x_9, x_10, x_11, x_252); -x_258 = lean_ctor_get(x_257, 0); -lean_inc(x_258); -x_259 = lean_ctor_get(x_257, 1); -lean_inc(x_259); -lean_dec(x_257); +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; uint8_t x_244; lean_object* x_245; lean_object* x_274; lean_object* x_275; lean_object* x_276; uint8_t x_277; +x_236 = lean_ctor_get(x_235, 0); +lean_inc(x_236); +x_237 = lean_ctor_get(x_235, 1); +lean_inc(x_237); +lean_dec(x_235); +x_238 = lean_ctor_get(x_236, 1); +lean_inc(x_238); +lean_dec(x_236); +x_239 = lean_box(0); +lean_inc(x_8); +x_240 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_238, x_239, x_8, x_9, x_10, x_11, x_237); +x_241 = lean_ctor_get(x_240, 0); +lean_inc(x_241); +x_242 = lean_ctor_get(x_240, 1); +lean_inc(x_242); +lean_dec(x_240); +x_243 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_274 = lean_st_ref_get(x_11, x_242); +x_275 = lean_ctor_get(x_274, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_275, 3); +lean_inc(x_276); +lean_dec(x_275); +x_277 = lean_ctor_get_uint8(x_276, sizeof(void*)*1); +lean_dec(x_276); +if (x_277 == 0) +{ +lean_object* x_278; uint8_t x_279; +x_278 = lean_ctor_get(x_274, 1); +lean_inc(x_278); +lean_dec(x_274); +x_279 = 0; +x_244 = x_279; +x_245 = x_278; +goto block_273; +} +else +{ +lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; uint8_t x_284; +x_280 = lean_ctor_get(x_274, 1); +lean_inc(x_280); +lean_dec(x_274); +x_281 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_243, x_8, x_9, x_10, x_11, x_280); +x_282 = lean_ctor_get(x_281, 0); +lean_inc(x_282); +x_283 = lean_ctor_get(x_281, 1); +lean_inc(x_283); +lean_dec(x_281); +x_284 = lean_unbox(x_282); +lean_dec(x_282); +x_244 = x_284; +x_245 = x_283; +goto block_273; +} +block_273: +{ +if (x_244 == 0) +{ +lean_object* x_246; lean_object* x_247; +x_246 = lean_box(0); lean_inc(x_3); -x_260 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_238, x_3, x_240, x_1, x_223, x_258, x_8, x_9, x_10, x_11, x_259); -if (lean_obj_tag(x_260) == 0) +x_247 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_241, x_3, x_243, x_1, x_226, x_246, x_8, x_9, x_10, x_11, x_245); +if (lean_obj_tag(x_247) == 0) { lean_dec(x_3); -return x_260; +return x_247; } else { -uint8_t x_261; -x_261 = !lean_is_exclusive(x_260); -if (x_261 == 0) +uint8_t x_248; +x_248 = !lean_is_exclusive(x_247); +if (x_248 == 0) { -lean_object* x_262; -x_262 = lean_ctor_get(x_260, 0); -lean_dec(x_262); -lean_ctor_set_tag(x_260, 0); -lean_ctor_set(x_260, 0, x_3); -return x_260; +lean_object* x_249; +x_249 = lean_ctor_get(x_247, 0); +lean_dec(x_249); +lean_ctor_set_tag(x_247, 0); +lean_ctor_set(x_247, 0, x_3); +return x_247; } else { -lean_object* x_263; lean_object* x_264; -x_263 = lean_ctor_get(x_260, 1); +lean_object* x_250; lean_object* x_251; +x_250 = lean_ctor_get(x_247, 1); +lean_inc(x_250); +lean_dec(x_247); +x_251 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_251, 0, x_3); +lean_ctor_set(x_251, 1, x_250); +return x_251; +} +} +} +else +{ +lean_object* x_252; uint8_t x_253; lean_object* x_254; +x_252 = l_Lean_Expr_mvarId_x21(x_241); +x_253 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_254 = l_Lean_Meta_ppGoal(x_252, x_253, x_8, x_9, x_10, x_11, x_245); +if (lean_obj_tag(x_254) == 0) +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +x_255 = lean_ctor_get(x_254, 0); +lean_inc(x_255); +x_256 = lean_ctor_get(x_254, 1); +lean_inc(x_256); +lean_dec(x_254); +x_257 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_257, 0, x_255); +x_258 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_259 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_259, 0, x_258); +lean_ctor_set(x_259, 1, x_257); +x_260 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_260, 0, x_259); +lean_ctor_set(x_260, 1, x_258); +x_261 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_243, x_260, x_8, x_9, x_10, x_11, x_256); +x_262 = lean_ctor_get(x_261, 0); +lean_inc(x_262); +x_263 = lean_ctor_get(x_261, 1); lean_inc(x_263); -lean_dec(x_260); -x_264 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_264, 0, x_3); -lean_ctor_set(x_264, 1, x_263); +lean_dec(x_261); +lean_inc(x_3); +x_264 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_241, x_3, x_243, x_1, x_226, x_262, x_8, x_9, x_10, x_11, x_263); +if (lean_obj_tag(x_264) == 0) +{ +lean_dec(x_3); return x_264; } -} -} else { uint8_t x_265; -lean_dec(x_238); -lean_dec(x_223); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_1); -x_265 = !lean_is_exclusive(x_250); +x_265 = !lean_is_exclusive(x_264); if (x_265 == 0) { lean_object* x_266; -x_266 = lean_ctor_get(x_250, 0); +x_266 = lean_ctor_get(x_264, 0); lean_dec(x_266); -lean_ctor_set_tag(x_250, 0); -lean_ctor_set(x_250, 0, x_3); -return x_250; +lean_ctor_set_tag(x_264, 0); +lean_ctor_set(x_264, 0, x_3); +return x_264; } else { lean_object* x_267; lean_object* x_268; -x_267 = lean_ctor_get(x_250, 1); +x_267 = lean_ctor_get(x_264, 1); lean_inc(x_267); -lean_dec(x_250); +lean_dec(x_264); x_268 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_268, 0, x_3); lean_ctor_set(x_268, 1, x_267); @@ -19962,35 +19933,68 @@ return x_268; } } } +else +{ +uint8_t x_269; +lean_dec(x_241); +lean_dec(x_226); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_1); +x_269 = !lean_is_exclusive(x_254); +if (x_269 == 0) +{ +lean_object* x_270; +x_270 = lean_ctor_get(x_254, 0); +lean_dec(x_270); +lean_ctor_set_tag(x_254, 0); +lean_ctor_set(x_254, 0, x_3); +return x_254; +} +else +{ +lean_object* x_271; lean_object* x_272; +x_271 = lean_ctor_get(x_254, 1); +lean_inc(x_271); +lean_dec(x_254); +x_272 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_272, 0, x_3); +lean_ctor_set(x_272, 1, x_271); +return x_272; +} +} +} } } else { -uint8_t x_281; -lean_dec(x_223); +uint8_t x_285; +lean_dec(x_226); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_281 = !lean_is_exclusive(x_232); -if (x_281 == 0) +x_285 = !lean_is_exclusive(x_235); +if (x_285 == 0) { -return x_232; +return x_235; } else { -lean_object* x_282; lean_object* x_283; lean_object* x_284; -x_282 = lean_ctor_get(x_232, 0); -x_283 = lean_ctor_get(x_232, 1); -lean_inc(x_283); -lean_inc(x_282); -lean_dec(x_232); -x_284 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_284, 0, x_282); -lean_ctor_set(x_284, 1, x_283); -return x_284; +lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_286 = lean_ctor_get(x_235, 0); +x_287 = lean_ctor_get(x_235, 1); +lean_inc(x_287); +lean_inc(x_286); +lean_dec(x_235); +x_288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_288, 0, x_286); +lean_ctor_set(x_288, 1, x_287); +return x_288; } } } @@ -19999,37 +20003,14 @@ return x_284; } case 4: { -lean_object* x_285; +lean_object* x_289; lean_dec(x_7); lean_dec(x_6); -x_285 = l_Lean_Expr_constName_x3f(x_5); +x_289 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_285) == 0) -{ -lean_object* x_286; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_286 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_286, 0, x_3); -lean_ctor_set(x_286, 1, x_12); -return x_286; -} -else -{ -lean_object* x_287; lean_object* x_288; lean_object* x_289; -x_287 = lean_ctor_get(x_285, 0); -lean_inc(x_287); -lean_dec(x_285); -x_288 = lean_unsigned_to_nat(0u); -x_289 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_288); if (lean_obj_tag(x_289) == 0) { lean_object* x_290; -lean_dec(x_287); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -20043,18 +20024,15 @@ return x_290; } else { -lean_object* x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; +lean_object* x_291; lean_object* x_292; lean_object* x_293; x_291 = lean_ctor_get(x_289, 0); lean_inc(x_291); lean_dec(x_289); -x_292 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_287, x_8, x_9, x_10, x_11, x_12); -x_293 = lean_ctor_get(x_292, 0); -lean_inc(x_293); -x_294 = lean_unbox(x_293); -lean_dec(x_293); -if (x_294 == 0) +x_292 = lean_unsigned_to_nat(0u); +x_293 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_292); +if (lean_obj_tag(x_293) == 0) { -uint8_t x_295; +lean_object* x_294; lean_dec(x_291); lean_dec(x_11); lean_dec(x_10); @@ -20062,231 +20040,258 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_295 = !lean_is_exclusive(x_292); -if (x_295 == 0) -{ -lean_object* x_296; -x_296 = lean_ctor_get(x_292, 0); -lean_dec(x_296); -lean_ctor_set(x_292, 0, x_3); -return x_292; +x_294 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_294, 0, x_3); +lean_ctor_set(x_294, 1, x_12); +return x_294; } else { -lean_object* x_297; lean_object* x_298; -x_297 = lean_ctor_get(x_292, 1); +lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; +x_295 = lean_ctor_get(x_293, 0); +lean_inc(x_295); +lean_dec(x_293); +x_296 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_291, x_8, x_9, x_10, x_11, x_12); +x_297 = lean_ctor_get(x_296, 0); lean_inc(x_297); -lean_dec(x_292); -x_298 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_298, 0, x_3); -lean_ctor_set(x_298, 1, x_297); -return x_298; +x_298 = lean_unbox(x_297); +lean_dec(x_297); +if (x_298 == 0) +{ +uint8_t x_299; +lean_dec(x_295); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_299 = !lean_is_exclusive(x_296); +if (x_299 == 0) +{ +lean_object* x_300; +x_300 = lean_ctor_get(x_296, 0); +lean_dec(x_300); +lean_ctor_set(x_296, 0, x_3); +return x_296; +} +else +{ +lean_object* x_301; lean_object* x_302; +x_301 = lean_ctor_get(x_296, 1); +lean_inc(x_301); +lean_dec(x_296); +x_302 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_302, 0, x_3); +lean_ctor_set(x_302, 1, x_301); +return x_302; } } else { -lean_object* x_299; lean_object* x_300; -x_299 = lean_ctor_get(x_292, 1); -lean_inc(x_299); -lean_dec(x_292); +lean_object* x_303; lean_object* x_304; +x_303 = lean_ctor_get(x_296, 1); +lean_inc(x_303); +lean_dec(x_296); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_291); +lean_inc(x_295); lean_inc(x_1); -x_300 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_291, x_8, x_9, x_10, x_11, x_299); -if (lean_obj_tag(x_300) == 0) +x_304 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_295, x_8, x_9, x_10, x_11, x_303); +if (lean_obj_tag(x_304) == 0) { -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; uint8_t x_309; lean_object* x_310; lean_object* x_338; lean_object* x_339; lean_object* x_340; uint8_t x_341; -x_301 = lean_ctor_get(x_300, 0); -lean_inc(x_301); -x_302 = lean_ctor_get(x_300, 1); -lean_inc(x_302); -lean_dec(x_300); -x_303 = lean_ctor_get(x_301, 1); -lean_inc(x_303); -lean_dec(x_301); -x_304 = lean_box(0); -lean_inc(x_8); -x_305 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_303, x_304, x_8, x_9, x_10, x_11, x_302); -x_306 = lean_ctor_get(x_305, 0); +lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; +x_305 = lean_ctor_get(x_304, 0); +lean_inc(x_305); +x_306 = lean_ctor_get(x_304, 1); lean_inc(x_306); +lean_dec(x_304); x_307 = lean_ctor_get(x_305, 1); lean_inc(x_307); lean_dec(x_305); -x_308 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_338 = lean_st_ref_get(x_11, x_307); -x_339 = lean_ctor_get(x_338, 0); -lean_inc(x_339); -x_340 = lean_ctor_get(x_339, 3); -lean_inc(x_340); -lean_dec(x_339); -x_341 = lean_ctor_get_uint8(x_340, sizeof(void*)*1); -lean_dec(x_340); -if (x_341 == 0) -{ -lean_object* x_342; uint8_t x_343; -x_342 = lean_ctor_get(x_338, 1); -lean_inc(x_342); -lean_dec(x_338); -x_343 = 0; -x_309 = x_343; -x_310 = x_342; -goto block_337; -} -else -{ -lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; -x_344 = lean_ctor_get(x_338, 1); +x_308 = lean_box(0); +lean_inc(x_8); +x_309 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_307, x_308, x_8, x_9, x_10, x_11, x_306); +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_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_343 = lean_st_ref_get(x_11, x_311); +x_344 = lean_ctor_get(x_343, 0); lean_inc(x_344); -lean_dec(x_338); -x_345 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_308, x_8, x_9, x_10, x_11, x_344); -x_346 = lean_ctor_get(x_345, 0); -lean_inc(x_346); -x_347 = lean_ctor_get(x_345, 1); -lean_inc(x_347); +x_345 = lean_ctor_get(x_344, 3); +lean_inc(x_345); +lean_dec(x_344); +x_346 = lean_ctor_get_uint8(x_345, sizeof(void*)*1); lean_dec(x_345); -x_348 = lean_unbox(x_346); -lean_dec(x_346); -x_309 = x_348; -x_310 = x_347; -goto block_337; -} -block_337: +if (x_346 == 0) { -if (x_309 == 0) -{ -lean_object* x_311; lean_object* x_312; -x_311 = lean_box(0); -lean_inc(x_3); -x_312 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_306, x_3, x_308, x_1, x_291, x_311, x_8, x_9, x_10, x_11, x_310); -if (lean_obj_tag(x_312) == 0) -{ -lean_dec(x_3); -return x_312; +lean_object* x_347; uint8_t x_348; +x_347 = lean_ctor_get(x_343, 1); +lean_inc(x_347); +lean_dec(x_343); +x_348 = 0; +x_313 = x_348; +x_314 = x_347; +goto block_342; } else { -uint8_t x_313; -x_313 = !lean_is_exclusive(x_312); +lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; uint8_t x_353; +x_349 = lean_ctor_get(x_343, 1); +lean_inc(x_349); +lean_dec(x_343); +x_350 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_312, x_8, x_9, x_10, x_11, x_349); +x_351 = lean_ctor_get(x_350, 0); +lean_inc(x_351); +x_352 = lean_ctor_get(x_350, 1); +lean_inc(x_352); +lean_dec(x_350); +x_353 = lean_unbox(x_351); +lean_dec(x_351); +x_313 = x_353; +x_314 = x_352; +goto block_342; +} +block_342: +{ if (x_313 == 0) { -lean_object* x_314; -x_314 = lean_ctor_get(x_312, 0); -lean_dec(x_314); -lean_ctor_set_tag(x_312, 0); -lean_ctor_set(x_312, 0, x_3); -return x_312; -} -else -{ lean_object* x_315; lean_object* x_316; -x_315 = lean_ctor_get(x_312, 1); -lean_inc(x_315); -lean_dec(x_312); -x_316 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_316, 0, x_3); -lean_ctor_set(x_316, 1, x_315); +x_315 = lean_box(0); +lean_inc(x_3); +x_316 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_310, x_3, x_312, x_1, x_295, x_315, x_8, x_9, x_10, x_11, x_314); +if (lean_obj_tag(x_316) == 0) +{ +lean_dec(x_3); return x_316; } +else +{ +uint8_t x_317; +x_317 = !lean_is_exclusive(x_316); +if (x_317 == 0) +{ +lean_object* x_318; +x_318 = lean_ctor_get(x_316, 0); +lean_dec(x_318); +lean_ctor_set_tag(x_316, 0); +lean_ctor_set(x_316, 0, x_3); +return x_316; +} +else +{ +lean_object* x_319; lean_object* x_320; +x_319 = lean_ctor_get(x_316, 1); +lean_inc(x_319); +lean_dec(x_316); +x_320 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_320, 0, x_3); +lean_ctor_set(x_320, 1, x_319); +return x_320; +} } } else { -lean_object* x_317; lean_object* x_318; -x_317 = l_Lean_Expr_mvarId_x21(x_306); +lean_object* x_321; uint8_t x_322; lean_object* x_323; +x_321 = l_Lean_Expr_mvarId_x21(x_310); +x_322 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_318 = l_Lean_Meta_ppGoal(x_317, x_8, x_9, x_10, x_11, x_310); -if (lean_obj_tag(x_318) == 0) +x_323 = l_Lean_Meta_ppGoal(x_321, x_322, x_8, x_9, x_10, x_11, x_314); +if (lean_obj_tag(x_323) == 0) { -lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; -x_319 = lean_ctor_get(x_318, 0); -lean_inc(x_319); -x_320 = lean_ctor_get(x_318, 1); -lean_inc(x_320); -lean_dec(x_318); -x_321 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_321, 0, x_319); -x_322 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_323 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_323, 0, x_322); -lean_ctor_set(x_323, 1, x_321); -x_324 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_324, 0, x_323); -lean_ctor_set(x_324, 1, x_322); -x_325 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_308, x_324, x_8, x_9, x_10, x_11, x_320); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -lean_dec(x_325); -lean_inc(x_3); -x_328 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_306, x_3, x_308, x_1, x_291, x_326, x_8, x_9, x_10, x_11, x_327); -if (lean_obj_tag(x_328) == 0) -{ -lean_dec(x_3); -return x_328; -} -else -{ -uint8_t x_329; -x_329 = !lean_is_exclusive(x_328); -if (x_329 == 0) -{ -lean_object* x_330; -x_330 = lean_ctor_get(x_328, 0); -lean_dec(x_330); -lean_ctor_set_tag(x_328, 0); -lean_ctor_set(x_328, 0, x_3); -return x_328; -} -else -{ -lean_object* x_331; lean_object* x_332; -x_331 = lean_ctor_get(x_328, 1); +lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; +x_324 = lean_ctor_get(x_323, 0); +lean_inc(x_324); +x_325 = lean_ctor_get(x_323, 1); +lean_inc(x_325); +lean_dec(x_323); +x_326 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_326, 0, x_324); +x_327 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_328 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_328, 0, x_327); +lean_ctor_set(x_328, 1, x_326); +x_329 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_329, 0, x_328); +lean_ctor_set(x_329, 1, x_327); +x_330 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_312, x_329, x_8, x_9, x_10, x_11, x_325); +x_331 = lean_ctor_get(x_330, 0); lean_inc(x_331); -lean_dec(x_328); -x_332 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_332, 0, x_3); -lean_ctor_set(x_332, 1, x_331); -return x_332; +x_332 = lean_ctor_get(x_330, 1); +lean_inc(x_332); +lean_dec(x_330); +lean_inc(x_3); +x_333 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_310, x_3, x_312, x_1, x_295, x_331, x_8, x_9, x_10, x_11, x_332); +if (lean_obj_tag(x_333) == 0) +{ +lean_dec(x_3); +return x_333; +} +else +{ +uint8_t x_334; +x_334 = !lean_is_exclusive(x_333); +if (x_334 == 0) +{ +lean_object* x_335; +x_335 = lean_ctor_get(x_333, 0); +lean_dec(x_335); +lean_ctor_set_tag(x_333, 0); +lean_ctor_set(x_333, 0, x_3); +return x_333; +} +else +{ +lean_object* x_336; lean_object* x_337; +x_336 = lean_ctor_get(x_333, 1); +lean_inc(x_336); +lean_dec(x_333); +x_337 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_337, 0, x_3); +lean_ctor_set(x_337, 1, x_336); +return x_337; } } } else { -uint8_t x_333; -lean_dec(x_306); -lean_dec(x_291); +uint8_t x_338; +lean_dec(x_310); +lean_dec(x_295); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_1); -x_333 = !lean_is_exclusive(x_318); -if (x_333 == 0) +x_338 = !lean_is_exclusive(x_323); +if (x_338 == 0) { -lean_object* x_334; -x_334 = lean_ctor_get(x_318, 0); -lean_dec(x_334); -lean_ctor_set_tag(x_318, 0); -lean_ctor_set(x_318, 0, x_3); -return x_318; +lean_object* x_339; +x_339 = lean_ctor_get(x_323, 0); +lean_dec(x_339); +lean_ctor_set_tag(x_323, 0); +lean_ctor_set(x_323, 0, x_3); +return x_323; } else { -lean_object* x_335; lean_object* x_336; -x_335 = lean_ctor_get(x_318, 1); -lean_inc(x_335); -lean_dec(x_318); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_3); -lean_ctor_set(x_336, 1, x_335); -return x_336; +lean_object* x_340; lean_object* x_341; +x_340 = lean_ctor_get(x_323, 1); +lean_inc(x_340); +lean_dec(x_323); +x_341 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_341, 0, x_3); +lean_ctor_set(x_341, 1, x_340); +return x_341; } } } @@ -20294,31 +20299,31 @@ return x_336; } else { -uint8_t x_349; -lean_dec(x_291); +uint8_t x_354; +lean_dec(x_295); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_349 = !lean_is_exclusive(x_300); -if (x_349 == 0) +x_354 = !lean_is_exclusive(x_304); +if (x_354 == 0) { -return x_300; +return x_304; } else { -lean_object* x_350; lean_object* x_351; lean_object* x_352; -x_350 = lean_ctor_get(x_300, 0); -x_351 = lean_ctor_get(x_300, 1); -lean_inc(x_351); -lean_inc(x_350); -lean_dec(x_300); -x_352 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_352, 0, x_350); -lean_ctor_set(x_352, 1, x_351); -return x_352; +lean_object* x_355; lean_object* x_356; lean_object* x_357; +x_355 = lean_ctor_get(x_304, 0); +x_356 = lean_ctor_get(x_304, 1); +lean_inc(x_356); +lean_inc(x_355); +lean_dec(x_304); +x_357 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_357, 0, x_355); +lean_ctor_set(x_357, 1, x_356); +return x_357; } } } @@ -20327,311 +20332,312 @@ return x_352; } case 5: { -lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_353 = lean_ctor_get(x_5, 0); -lean_inc(x_353); -x_354 = lean_ctor_get(x_5, 1); -lean_inc(x_354); +lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; +x_358 = lean_ctor_get(x_5, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_5, 1); +lean_inc(x_359); lean_dec(x_5); -x_355 = lean_array_set(x_6, x_7, x_354); -x_356 = lean_unsigned_to_nat(1u); -x_357 = lean_nat_sub(x_7, x_356); +x_360 = lean_array_set(x_6, x_7, x_359); +x_361 = lean_unsigned_to_nat(1u); +x_362 = lean_nat_sub(x_7, x_361); lean_dec(x_7); -x_5 = x_353; -x_6 = x_355; -x_7 = x_357; +x_5 = x_358; +x_6 = x_360; +x_7 = x_362; goto _start; } case 6: { -lean_object* x_359; +lean_object* x_364; lean_dec(x_7); lean_dec(x_6); -x_359 = l_Lean_Expr_constName_x3f(x_5); +x_364 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_359) == 0) +if (lean_obj_tag(x_364) == 0) { -lean_object* x_360; +lean_object* x_365; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_360 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_360, 0, x_3); -lean_ctor_set(x_360, 1, x_12); -return x_360; +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_3); +lean_ctor_set(x_365, 1, x_12); +return x_365; } else { -lean_object* x_361; lean_object* x_362; lean_object* x_363; -x_361 = lean_ctor_get(x_359, 0); -lean_inc(x_361); -lean_dec(x_359); -x_362 = lean_unsigned_to_nat(0u); -x_363 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_362); -if (lean_obj_tag(x_363) == 0) +lean_object* x_366; lean_object* x_367; lean_object* x_368; +x_366 = lean_ctor_get(x_364, 0); +lean_inc(x_366); +lean_dec(x_364); +x_367 = lean_unsigned_to_nat(0u); +x_368 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_367); +if (lean_obj_tag(x_368) == 0) { -lean_object* x_364; -lean_dec(x_361); +lean_object* x_369; +lean_dec(x_366); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_364 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_364, 0, x_3); -lean_ctor_set(x_364, 1, x_12); -return x_364; +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_3); +lean_ctor_set(x_369, 1, x_12); +return x_369; } else { -lean_object* x_365; lean_object* x_366; lean_object* x_367; uint8_t x_368; -x_365 = lean_ctor_get(x_363, 0); -lean_inc(x_365); -lean_dec(x_363); -x_366 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_361, x_8, x_9, x_10, x_11, x_12); -x_367 = lean_ctor_get(x_366, 0); -lean_inc(x_367); -x_368 = lean_unbox(x_367); -lean_dec(x_367); -if (x_368 == 0) +lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; +x_370 = lean_ctor_get(x_368, 0); +lean_inc(x_370); +lean_dec(x_368); +x_371 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_366, x_8, x_9, x_10, x_11, x_12); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_unbox(x_372); +lean_dec(x_372); +if (x_373 == 0) { -uint8_t x_369; -lean_dec(x_365); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_369 = !lean_is_exclusive(x_366); -if (x_369 == 0) -{ -lean_object* x_370; -x_370 = lean_ctor_get(x_366, 0); +uint8_t x_374; lean_dec(x_370); -lean_ctor_set(x_366, 0, x_3); -return x_366; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_374 = !lean_is_exclusive(x_371); +if (x_374 == 0) +{ +lean_object* x_375; +x_375 = lean_ctor_get(x_371, 0); +lean_dec(x_375); +lean_ctor_set(x_371, 0, x_3); +return x_371; } else { -lean_object* x_371; lean_object* x_372; -x_371 = lean_ctor_get(x_366, 1); -lean_inc(x_371); -lean_dec(x_366); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_3); -lean_ctor_set(x_372, 1, x_371); -return x_372; +lean_object* x_376; lean_object* x_377; +x_376 = lean_ctor_get(x_371, 1); +lean_inc(x_376); +lean_dec(x_371); +x_377 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_377, 0, x_3); +lean_ctor_set(x_377, 1, x_376); +return x_377; } } else { -lean_object* x_373; lean_object* x_374; -x_373 = lean_ctor_get(x_366, 1); -lean_inc(x_373); -lean_dec(x_366); +lean_object* x_378; lean_object* x_379; +x_378 = lean_ctor_get(x_371, 1); +lean_inc(x_378); +lean_dec(x_371); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_365); +lean_inc(x_370); lean_inc(x_1); -x_374 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_365, x_8, x_9, x_10, x_11, x_373); -if (lean_obj_tag(x_374) == 0) +x_379 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_370, x_8, x_9, x_10, x_11, x_378); +if (lean_obj_tag(x_379) == 0) { -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; uint8_t x_383; lean_object* x_384; lean_object* x_412; lean_object* x_413; lean_object* x_414; uint8_t x_415; -x_375 = lean_ctor_get(x_374, 0); -lean_inc(x_375); -x_376 = lean_ctor_get(x_374, 1); -lean_inc(x_376); -lean_dec(x_374); -x_377 = lean_ctor_get(x_375, 1); -lean_inc(x_377); -lean_dec(x_375); -x_378 = lean_box(0); -lean_inc(x_8); -x_379 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_377, x_378, x_8, x_9, x_10, x_11, x_376); +lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; lean_object* x_389; lean_object* x_418; lean_object* x_419; lean_object* x_420; uint8_t x_421; x_380 = lean_ctor_get(x_379, 0); lean_inc(x_380); x_381 = lean_ctor_get(x_379, 1); lean_inc(x_381); lean_dec(x_379); -x_382 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_412 = lean_st_ref_get(x_11, x_381); -x_413 = lean_ctor_get(x_412, 0); -lean_inc(x_413); -x_414 = lean_ctor_get(x_413, 3); -lean_inc(x_414); -lean_dec(x_413); -x_415 = lean_ctor_get_uint8(x_414, sizeof(void*)*1); -lean_dec(x_414); -if (x_415 == 0) +x_382 = lean_ctor_get(x_380, 1); +lean_inc(x_382); +lean_dec(x_380); +x_383 = lean_box(0); +lean_inc(x_8); +x_384 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_382, x_383, x_8, x_9, x_10, x_11, x_381); +x_385 = lean_ctor_get(x_384, 0); +lean_inc(x_385); +x_386 = lean_ctor_get(x_384, 1); +lean_inc(x_386); +lean_dec(x_384); +x_387 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_418 = lean_st_ref_get(x_11, x_386); +x_419 = lean_ctor_get(x_418, 0); +lean_inc(x_419); +x_420 = lean_ctor_get(x_419, 3); +lean_inc(x_420); +lean_dec(x_419); +x_421 = lean_ctor_get_uint8(x_420, sizeof(void*)*1); +lean_dec(x_420); +if (x_421 == 0) { -lean_object* x_416; uint8_t x_417; -x_416 = lean_ctor_get(x_412, 1); -lean_inc(x_416); -lean_dec(x_412); -x_417 = 0; -x_383 = x_417; -x_384 = x_416; -goto block_411; +lean_object* x_422; uint8_t x_423; +x_422 = lean_ctor_get(x_418, 1); +lean_inc(x_422); +lean_dec(x_418); +x_423 = 0; +x_388 = x_423; +x_389 = x_422; +goto block_417; } else { -lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; uint8_t x_422; -x_418 = lean_ctor_get(x_412, 1); -lean_inc(x_418); -lean_dec(x_412); -x_419 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_382, x_8, x_9, x_10, x_11, x_418); -x_420 = lean_ctor_get(x_419, 0); -lean_inc(x_420); -x_421 = lean_ctor_get(x_419, 1); -lean_inc(x_421); -lean_dec(x_419); -x_422 = lean_unbox(x_420); -lean_dec(x_420); -x_383 = x_422; -x_384 = x_421; -goto block_411; +lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; uint8_t x_428; +x_424 = lean_ctor_get(x_418, 1); +lean_inc(x_424); +lean_dec(x_418); +x_425 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_387, x_8, x_9, x_10, x_11, x_424); +x_426 = lean_ctor_get(x_425, 0); +lean_inc(x_426); +x_427 = lean_ctor_get(x_425, 1); +lean_inc(x_427); +lean_dec(x_425); +x_428 = lean_unbox(x_426); +lean_dec(x_426); +x_388 = x_428; +x_389 = x_427; +goto block_417; } -block_411: +block_417: { -if (x_383 == 0) +if (x_388 == 0) { -lean_object* x_385; lean_object* x_386; -x_385 = lean_box(0); +lean_object* x_390; lean_object* x_391; +x_390 = lean_box(0); lean_inc(x_3); -x_386 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_380, x_3, x_382, x_1, x_365, x_385, x_8, x_9, x_10, x_11, x_384); -if (lean_obj_tag(x_386) == 0) +x_391 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_385, x_3, x_387, x_1, x_370, x_390, x_8, x_9, x_10, x_11, x_389); +if (lean_obj_tag(x_391) == 0) { lean_dec(x_3); -return x_386; +return x_391; } else { -uint8_t x_387; -x_387 = !lean_is_exclusive(x_386); -if (x_387 == 0) +uint8_t x_392; +x_392 = !lean_is_exclusive(x_391); +if (x_392 == 0) { -lean_object* x_388; -x_388 = lean_ctor_get(x_386, 0); -lean_dec(x_388); -lean_ctor_set_tag(x_386, 0); -lean_ctor_set(x_386, 0, x_3); -return x_386; +lean_object* x_393; +x_393 = lean_ctor_get(x_391, 0); +lean_dec(x_393); +lean_ctor_set_tag(x_391, 0); +lean_ctor_set(x_391, 0, x_3); +return x_391; } else { -lean_object* x_389; lean_object* x_390; -x_389 = lean_ctor_get(x_386, 1); -lean_inc(x_389); -lean_dec(x_386); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_3); -lean_ctor_set(x_390, 1, x_389); -return x_390; +lean_object* x_394; lean_object* x_395; +x_394 = lean_ctor_get(x_391, 1); +lean_inc(x_394); +lean_dec(x_391); +x_395 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_395, 0, x_3); +lean_ctor_set(x_395, 1, x_394); +return x_395; } } } else { -lean_object* x_391; lean_object* x_392; -x_391 = l_Lean_Expr_mvarId_x21(x_380); +lean_object* x_396; uint8_t x_397; lean_object* x_398; +x_396 = l_Lean_Expr_mvarId_x21(x_385); +x_397 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_392 = l_Lean_Meta_ppGoal(x_391, x_8, x_9, x_10, x_11, x_384); -if (lean_obj_tag(x_392) == 0) +x_398 = l_Lean_Meta_ppGoal(x_396, x_397, x_8, x_9, x_10, x_11, x_389); +if (lean_obj_tag(x_398) == 0) { -lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; -x_393 = lean_ctor_get(x_392, 0); -lean_inc(x_393); -x_394 = lean_ctor_get(x_392, 1); -lean_inc(x_394); -lean_dec(x_392); -x_395 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_395, 0, x_393); -x_396 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_397 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_397, 0, x_396); -lean_ctor_set(x_397, 1, x_395); -x_398 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_398, 0, x_397); -lean_ctor_set(x_398, 1, x_396); -x_399 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_382, x_398, x_8, x_9, x_10, x_11, x_394); -x_400 = lean_ctor_get(x_399, 0); +lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; +x_399 = lean_ctor_get(x_398, 0); +lean_inc(x_399); +x_400 = lean_ctor_get(x_398, 1); lean_inc(x_400); -x_401 = lean_ctor_get(x_399, 1); -lean_inc(x_401); -lean_dec(x_399); +lean_dec(x_398); +x_401 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_401, 0, x_399); +x_402 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_403 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_403, 0, x_402); +lean_ctor_set(x_403, 1, x_401); +x_404 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_404, 0, x_403); +lean_ctor_set(x_404, 1, x_402); +x_405 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_387, x_404, x_8, x_9, x_10, x_11, x_400); +x_406 = lean_ctor_get(x_405, 0); +lean_inc(x_406); +x_407 = lean_ctor_get(x_405, 1); +lean_inc(x_407); +lean_dec(x_405); lean_inc(x_3); -x_402 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_380, x_3, x_382, x_1, x_365, x_400, x_8, x_9, x_10, x_11, x_401); -if (lean_obj_tag(x_402) == 0) +x_408 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_385, x_3, x_387, x_1, x_370, x_406, x_8, x_9, x_10, x_11, x_407); +if (lean_obj_tag(x_408) == 0) { lean_dec(x_3); -return x_402; +return x_408; } else { -uint8_t x_403; -x_403 = !lean_is_exclusive(x_402); -if (x_403 == 0) +uint8_t x_409; +x_409 = !lean_is_exclusive(x_408); +if (x_409 == 0) { -lean_object* x_404; -x_404 = lean_ctor_get(x_402, 0); -lean_dec(x_404); -lean_ctor_set_tag(x_402, 0); -lean_ctor_set(x_402, 0, x_3); -return x_402; +lean_object* x_410; +x_410 = lean_ctor_get(x_408, 0); +lean_dec(x_410); +lean_ctor_set_tag(x_408, 0); +lean_ctor_set(x_408, 0, x_3); +return x_408; } else { -lean_object* x_405; lean_object* x_406; -x_405 = lean_ctor_get(x_402, 1); -lean_inc(x_405); -lean_dec(x_402); -x_406 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_406, 0, x_3); -lean_ctor_set(x_406, 1, x_405); -return x_406; -} -} -} -else -{ -uint8_t x_407; -lean_dec(x_380); -lean_dec(x_365); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_1); -x_407 = !lean_is_exclusive(x_392); -if (x_407 == 0) -{ -lean_object* x_408; -x_408 = lean_ctor_get(x_392, 0); +lean_object* x_411; lean_object* x_412; +x_411 = lean_ctor_get(x_408, 1); +lean_inc(x_411); lean_dec(x_408); -lean_ctor_set_tag(x_392, 0); -lean_ctor_set(x_392, 0, x_3); -return x_392; +x_412 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_412, 0, x_3); +lean_ctor_set(x_412, 1, x_411); +return x_412; +} +} } else { -lean_object* x_409; lean_object* x_410; -x_409 = lean_ctor_get(x_392, 1); -lean_inc(x_409); -lean_dec(x_392); -x_410 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_410, 0, x_3); -lean_ctor_set(x_410, 1, x_409); -return x_410; +uint8_t x_413; +lean_dec(x_385); +lean_dec(x_370); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_1); +x_413 = !lean_is_exclusive(x_398); +if (x_413 == 0) +{ +lean_object* x_414; +x_414 = lean_ctor_get(x_398, 0); +lean_dec(x_414); +lean_ctor_set_tag(x_398, 0); +lean_ctor_set(x_398, 0, x_3); +return x_398; +} +else +{ +lean_object* x_415; lean_object* x_416; +x_415 = lean_ctor_get(x_398, 1); +lean_inc(x_415); +lean_dec(x_398); +x_416 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_416, 0, x_3); +lean_ctor_set(x_416, 1, x_415); +return x_416; } } } @@ -20639,31 +20645,31 @@ return x_410; } else { -uint8_t x_423; -lean_dec(x_365); +uint8_t x_429; +lean_dec(x_370); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_423 = !lean_is_exclusive(x_374); -if (x_423 == 0) +x_429 = !lean_is_exclusive(x_379); +if (x_429 == 0) { -return x_374; +return x_379; } else { -lean_object* x_424; lean_object* x_425; lean_object* x_426; -x_424 = lean_ctor_get(x_374, 0); -x_425 = lean_ctor_get(x_374, 1); -lean_inc(x_425); -lean_inc(x_424); -lean_dec(x_374); -x_426 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_426, 0, x_424); -lean_ctor_set(x_426, 1, x_425); -return x_426; +lean_object* x_430; lean_object* x_431; lean_object* x_432; +x_430 = lean_ctor_get(x_379, 0); +x_431 = lean_ctor_get(x_379, 1); +lean_inc(x_431); +lean_inc(x_430); +lean_dec(x_379); +x_432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_432, 0, x_430); +lean_ctor_set(x_432, 1, x_431); +return x_432; } } } @@ -20672,294 +20678,295 @@ return x_426; } case 7: { -lean_object* x_427; +lean_object* x_433; lean_dec(x_7); lean_dec(x_6); -x_427 = l_Lean_Expr_constName_x3f(x_5); +x_433 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_427) == 0) +if (lean_obj_tag(x_433) == 0) { -lean_object* x_428; +lean_object* x_434; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_428 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_428, 0, x_3); -lean_ctor_set(x_428, 1, x_12); -return x_428; -} -else -{ -lean_object* x_429; lean_object* x_430; lean_object* x_431; -x_429 = lean_ctor_get(x_427, 0); -lean_inc(x_429); -lean_dec(x_427); -x_430 = lean_unsigned_to_nat(0u); -x_431 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_430); -if (lean_obj_tag(x_431) == 0) -{ -lean_object* x_432; -lean_dec(x_429); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_432 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_432, 0, x_3); -lean_ctor_set(x_432, 1, x_12); -return x_432; -} -else -{ -lean_object* x_433; lean_object* x_434; lean_object* x_435; uint8_t x_436; -x_433 = lean_ctor_get(x_431, 0); -lean_inc(x_433); -lean_dec(x_431); -x_434 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_429, x_8, x_9, x_10, x_11, x_12); -x_435 = lean_ctor_get(x_434, 0); -lean_inc(x_435); -x_436 = lean_unbox(x_435); -lean_dec(x_435); -if (x_436 == 0) -{ -uint8_t x_437; -lean_dec(x_433); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_437 = !lean_is_exclusive(x_434); -if (x_437 == 0) -{ -lean_object* x_438; -x_438 = lean_ctor_get(x_434, 0); -lean_dec(x_438); +x_434 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_434, 0, x_3); +lean_ctor_set(x_434, 1, x_12); return x_434; } else { -lean_object* x_439; lean_object* x_440; -x_439 = lean_ctor_get(x_434, 1); -lean_inc(x_439); -lean_dec(x_434); -x_440 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_440, 0, x_3); -lean_ctor_set(x_440, 1, x_439); -return x_440; -} -} -else -{ -lean_object* x_441; lean_object* x_442; -x_441 = lean_ctor_get(x_434, 1); -lean_inc(x_441); -lean_dec(x_434); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_433); -lean_inc(x_1); -x_442 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_433, x_8, x_9, x_10, x_11, x_441); -if (lean_obj_tag(x_442) == 0) -{ -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; uint8_t x_451; lean_object* x_452; lean_object* x_480; lean_object* x_481; lean_object* x_482; uint8_t x_483; -x_443 = lean_ctor_get(x_442, 0); -lean_inc(x_443); -x_444 = lean_ctor_get(x_442, 1); -lean_inc(x_444); -lean_dec(x_442); -x_445 = lean_ctor_get(x_443, 1); -lean_inc(x_445); -lean_dec(x_443); -x_446 = lean_box(0); -lean_inc(x_8); -x_447 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_445, x_446, x_8, x_9, x_10, x_11, x_444); -x_448 = lean_ctor_get(x_447, 0); -lean_inc(x_448); -x_449 = lean_ctor_get(x_447, 1); -lean_inc(x_449); -lean_dec(x_447); -x_450 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_480 = lean_st_ref_get(x_11, x_449); -x_481 = lean_ctor_get(x_480, 0); -lean_inc(x_481); -x_482 = lean_ctor_get(x_481, 3); -lean_inc(x_482); -lean_dec(x_481); -x_483 = lean_ctor_get_uint8(x_482, sizeof(void*)*1); -lean_dec(x_482); -if (x_483 == 0) -{ -lean_object* x_484; uint8_t x_485; -x_484 = lean_ctor_get(x_480, 1); -lean_inc(x_484); -lean_dec(x_480); -x_485 = 0; -x_451 = x_485; -x_452 = x_484; -goto block_479; -} -else -{ -lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; uint8_t x_490; -x_486 = lean_ctor_get(x_480, 1); -lean_inc(x_486); -lean_dec(x_480); -x_487 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_450, x_8, x_9, x_10, x_11, x_486); -x_488 = lean_ctor_get(x_487, 0); -lean_inc(x_488); -x_489 = lean_ctor_get(x_487, 1); -lean_inc(x_489); -lean_dec(x_487); -x_490 = lean_unbox(x_488); -lean_dec(x_488); -x_451 = x_490; -x_452 = x_489; -goto block_479; -} -block_479: -{ -if (x_451 == 0) -{ -lean_object* x_453; lean_object* x_454; -x_453 = lean_box(0); -lean_inc(x_3); -x_454 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_448, x_3, x_450, x_1, x_433, x_453, x_8, x_9, x_10, x_11, x_452); -if (lean_obj_tag(x_454) == 0) -{ -lean_dec(x_3); -return x_454; -} -else -{ -uint8_t x_455; -x_455 = !lean_is_exclusive(x_454); -if (x_455 == 0) -{ -lean_object* x_456; -x_456 = lean_ctor_get(x_454, 0); -lean_dec(x_456); -lean_ctor_set_tag(x_454, 0); -lean_ctor_set(x_454, 0, x_3); -return x_454; -} -else -{ -lean_object* x_457; lean_object* x_458; -x_457 = lean_ctor_get(x_454, 1); -lean_inc(x_457); -lean_dec(x_454); -x_458 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_458, 0, x_3); -lean_ctor_set(x_458, 1, x_457); -return x_458; -} -} -} -else -{ -lean_object* x_459; lean_object* x_460; -x_459 = l_Lean_Expr_mvarId_x21(x_448); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -x_460 = l_Lean_Meta_ppGoal(x_459, x_8, x_9, x_10, x_11, x_452); -if (lean_obj_tag(x_460) == 0) -{ -lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; -x_461 = lean_ctor_get(x_460, 0); -lean_inc(x_461); -x_462 = lean_ctor_get(x_460, 1); -lean_inc(x_462); -lean_dec(x_460); -x_463 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_463, 0, x_461); -x_464 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_465 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_465, 0, x_464); -lean_ctor_set(x_465, 1, x_463); -x_466 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_466, 0, x_465); -lean_ctor_set(x_466, 1, x_464); -x_467 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_450, x_466, x_8, x_9, x_10, x_11, x_462); -x_468 = lean_ctor_get(x_467, 0); -lean_inc(x_468); -x_469 = lean_ctor_get(x_467, 1); -lean_inc(x_469); -lean_dec(x_467); -lean_inc(x_3); -x_470 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_448, x_3, x_450, x_1, x_433, x_468, x_8, x_9, x_10, x_11, x_469); -if (lean_obj_tag(x_470) == 0) -{ -lean_dec(x_3); -return x_470; -} -else -{ -uint8_t x_471; -x_471 = !lean_is_exclusive(x_470); -if (x_471 == 0) -{ -lean_object* x_472; -x_472 = lean_ctor_get(x_470, 0); -lean_dec(x_472); -lean_ctor_set_tag(x_470, 0); -lean_ctor_set(x_470, 0, x_3); -return x_470; -} -else -{ -lean_object* x_473; lean_object* x_474; -x_473 = lean_ctor_get(x_470, 1); -lean_inc(x_473); -lean_dec(x_470); -x_474 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_474, 0, x_3); -lean_ctor_set(x_474, 1, x_473); -return x_474; -} -} -} -else -{ -uint8_t x_475; -lean_dec(x_448); +lean_object* x_435; lean_object* x_436; lean_object* x_437; +x_435 = lean_ctor_get(x_433, 0); +lean_inc(x_435); lean_dec(x_433); +x_436 = lean_unsigned_to_nat(0u); +x_437 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_436); +if (lean_obj_tag(x_437) == 0) +{ +lean_object* x_438; +lean_dec(x_435); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_2); lean_dec(x_1); -x_475 = !lean_is_exclusive(x_460); -if (x_475 == 0) +x_438 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_438, 0, x_3); +lean_ctor_set(x_438, 1, x_12); +return x_438; +} +else { -lean_object* x_476; -x_476 = lean_ctor_get(x_460, 0); -lean_dec(x_476); +lean_object* x_439; lean_object* x_440; lean_object* x_441; uint8_t x_442; +x_439 = lean_ctor_get(x_437, 0); +lean_inc(x_439); +lean_dec(x_437); +x_440 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_435, x_8, x_9, x_10, x_11, x_12); +x_441 = lean_ctor_get(x_440, 0); +lean_inc(x_441); +x_442 = lean_unbox(x_441); +lean_dec(x_441); +if (x_442 == 0) +{ +uint8_t x_443; +lean_dec(x_439); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_443 = !lean_is_exclusive(x_440); +if (x_443 == 0) +{ +lean_object* x_444; +x_444 = lean_ctor_get(x_440, 0); +lean_dec(x_444); +lean_ctor_set(x_440, 0, x_3); +return x_440; +} +else +{ +lean_object* x_445; lean_object* x_446; +x_445 = lean_ctor_get(x_440, 1); +lean_inc(x_445); +lean_dec(x_440); +x_446 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_446, 0, x_3); +lean_ctor_set(x_446, 1, x_445); +return x_446; +} +} +else +{ +lean_object* x_447; lean_object* x_448; +x_447 = lean_ctor_get(x_440, 1); +lean_inc(x_447); +lean_dec(x_440); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_439); +lean_inc(x_1); +x_448 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_439, x_8, x_9, x_10, x_11, x_447); +if (lean_obj_tag(x_448) == 0) +{ +lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; uint8_t x_457; lean_object* x_458; lean_object* x_487; lean_object* x_488; lean_object* x_489; uint8_t x_490; +x_449 = lean_ctor_get(x_448, 0); +lean_inc(x_449); +x_450 = lean_ctor_get(x_448, 1); +lean_inc(x_450); +lean_dec(x_448); +x_451 = lean_ctor_get(x_449, 1); +lean_inc(x_451); +lean_dec(x_449); +x_452 = lean_box(0); +lean_inc(x_8); +x_453 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_451, x_452, x_8, x_9, x_10, x_11, x_450); +x_454 = lean_ctor_get(x_453, 0); +lean_inc(x_454); +x_455 = lean_ctor_get(x_453, 1); +lean_inc(x_455); +lean_dec(x_453); +x_456 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_487 = lean_st_ref_get(x_11, x_455); +x_488 = lean_ctor_get(x_487, 0); +lean_inc(x_488); +x_489 = lean_ctor_get(x_488, 3); +lean_inc(x_489); +lean_dec(x_488); +x_490 = lean_ctor_get_uint8(x_489, sizeof(void*)*1); +lean_dec(x_489); +if (x_490 == 0) +{ +lean_object* x_491; uint8_t x_492; +x_491 = lean_ctor_get(x_487, 1); +lean_inc(x_491); +lean_dec(x_487); +x_492 = 0; +x_457 = x_492; +x_458 = x_491; +goto block_486; +} +else +{ +lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; uint8_t x_497; +x_493 = lean_ctor_get(x_487, 1); +lean_inc(x_493); +lean_dec(x_487); +x_494 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_456, x_8, x_9, x_10, x_11, x_493); +x_495 = lean_ctor_get(x_494, 0); +lean_inc(x_495); +x_496 = lean_ctor_get(x_494, 1); +lean_inc(x_496); +lean_dec(x_494); +x_497 = lean_unbox(x_495); +lean_dec(x_495); +x_457 = x_497; +x_458 = x_496; +goto block_486; +} +block_486: +{ +if (x_457 == 0) +{ +lean_object* x_459; lean_object* x_460; +x_459 = lean_box(0); +lean_inc(x_3); +x_460 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_454, x_3, x_456, x_1, x_439, x_459, x_8, x_9, x_10, x_11, x_458); +if (lean_obj_tag(x_460) == 0) +{ +lean_dec(x_3); +return x_460; +} +else +{ +uint8_t x_461; +x_461 = !lean_is_exclusive(x_460); +if (x_461 == 0) +{ +lean_object* x_462; +x_462 = lean_ctor_get(x_460, 0); +lean_dec(x_462); lean_ctor_set_tag(x_460, 0); lean_ctor_set(x_460, 0, x_3); return x_460; } else { -lean_object* x_477; lean_object* x_478; -x_477 = lean_ctor_get(x_460, 1); -lean_inc(x_477); +lean_object* x_463; lean_object* x_464; +x_463 = lean_ctor_get(x_460, 1); +lean_inc(x_463); lean_dec(x_460); -x_478 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_478, 0, x_3); -lean_ctor_set(x_478, 1, x_477); -return x_478; +x_464 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_464, 0, x_3); +lean_ctor_set(x_464, 1, x_463); +return x_464; +} +} +} +else +{ +lean_object* x_465; uint8_t x_466; lean_object* x_467; +x_465 = l_Lean_Expr_mvarId_x21(x_454); +x_466 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_467 = l_Lean_Meta_ppGoal(x_465, x_466, x_8, x_9, x_10, x_11, x_458); +if (lean_obj_tag(x_467) == 0) +{ +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; +x_468 = lean_ctor_get(x_467, 0); +lean_inc(x_468); +x_469 = lean_ctor_get(x_467, 1); +lean_inc(x_469); +lean_dec(x_467); +x_470 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_470, 0, x_468); +x_471 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_472 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_472, 0, x_471); +lean_ctor_set(x_472, 1, x_470); +x_473 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_473, 0, x_472); +lean_ctor_set(x_473, 1, x_471); +x_474 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_456, x_473, x_8, x_9, x_10, x_11, x_469); +x_475 = lean_ctor_get(x_474, 0); +lean_inc(x_475); +x_476 = lean_ctor_get(x_474, 1); +lean_inc(x_476); +lean_dec(x_474); +lean_inc(x_3); +x_477 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_454, x_3, x_456, x_1, x_439, x_475, x_8, x_9, x_10, x_11, x_476); +if (lean_obj_tag(x_477) == 0) +{ +lean_dec(x_3); +return x_477; +} +else +{ +uint8_t x_478; +x_478 = !lean_is_exclusive(x_477); +if (x_478 == 0) +{ +lean_object* x_479; +x_479 = lean_ctor_get(x_477, 0); +lean_dec(x_479); +lean_ctor_set_tag(x_477, 0); +lean_ctor_set(x_477, 0, x_3); +return x_477; +} +else +{ +lean_object* x_480; lean_object* x_481; +x_480 = lean_ctor_get(x_477, 1); +lean_inc(x_480); +lean_dec(x_477); +x_481 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_481, 0, x_3); +lean_ctor_set(x_481, 1, x_480); +return x_481; +} +} +} +else +{ +uint8_t x_482; +lean_dec(x_454); +lean_dec(x_439); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_1); +x_482 = !lean_is_exclusive(x_467); +if (x_482 == 0) +{ +lean_object* x_483; +x_483 = lean_ctor_get(x_467, 0); +lean_dec(x_483); +lean_ctor_set_tag(x_467, 0); +lean_ctor_set(x_467, 0, x_3); +return x_467; +} +else +{ +lean_object* x_484; lean_object* x_485; +x_484 = lean_ctor_get(x_467, 1); +lean_inc(x_484); +lean_dec(x_467); +x_485 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_485, 0, x_3); +lean_ctor_set(x_485, 1, x_484); +return x_485; } } } @@ -20967,31 +20974,31 @@ return x_478; } else { -uint8_t x_491; -lean_dec(x_433); +uint8_t x_498; +lean_dec(x_439); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_491 = !lean_is_exclusive(x_442); -if (x_491 == 0) +x_498 = !lean_is_exclusive(x_448); +if (x_498 == 0) { -return x_442; +return x_448; } else { -lean_object* x_492; lean_object* x_493; lean_object* x_494; -x_492 = lean_ctor_get(x_442, 0); -x_493 = lean_ctor_get(x_442, 1); -lean_inc(x_493); -lean_inc(x_492); -lean_dec(x_442); -x_494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_494, 0, x_492); -lean_ctor_set(x_494, 1, x_493); -return x_494; +lean_object* x_499; lean_object* x_500; lean_object* x_501; +x_499 = lean_ctor_get(x_448, 0); +x_500 = lean_ctor_get(x_448, 1); +lean_inc(x_500); +lean_inc(x_499); +lean_dec(x_448); +x_501 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_501, 0, x_499); +lean_ctor_set(x_501, 1, x_500); +return x_501; } } } @@ -21000,326 +21007,327 @@ return x_494; } case 8: { -lean_object* x_495; +lean_object* x_502; lean_dec(x_7); lean_dec(x_6); -x_495 = l_Lean_Expr_constName_x3f(x_5); +x_502 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_495) == 0) +if (lean_obj_tag(x_502) == 0) { -lean_object* x_496; +lean_object* x_503; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_496 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_496, 0, x_3); -lean_ctor_set(x_496, 1, x_12); -return x_496; +x_503 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_503, 0, x_3); +lean_ctor_set(x_503, 1, x_12); +return x_503; } else { -lean_object* x_497; lean_object* x_498; lean_object* x_499; -x_497 = lean_ctor_get(x_495, 0); -lean_inc(x_497); -lean_dec(x_495); -x_498 = lean_unsigned_to_nat(0u); -x_499 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_498); -if (lean_obj_tag(x_499) == 0) +lean_object* x_504; lean_object* x_505; lean_object* x_506; +x_504 = lean_ctor_get(x_502, 0); +lean_inc(x_504); +lean_dec(x_502); +x_505 = lean_unsigned_to_nat(0u); +x_506 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_505); +if (lean_obj_tag(x_506) == 0) { -lean_object* x_500; -lean_dec(x_497); +lean_object* x_507; +lean_dec(x_504); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_500 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_500, 0, x_3); -lean_ctor_set(x_500, 1, x_12); -return x_500; +x_507 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_507, 0, x_3); +lean_ctor_set(x_507, 1, x_12); +return x_507; } else { -lean_object* x_501; lean_object* x_502; lean_object* x_503; uint8_t x_504; -x_501 = lean_ctor_get(x_499, 0); -lean_inc(x_501); -lean_dec(x_499); -x_502 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_497, x_8, x_9, x_10, x_11, x_12); -x_503 = lean_ctor_get(x_502, 0); -lean_inc(x_503); -x_504 = lean_unbox(x_503); -lean_dec(x_503); -if (x_504 == 0) -{ -uint8_t x_505; -lean_dec(x_501); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_505 = !lean_is_exclusive(x_502); -if (x_505 == 0) -{ -lean_object* x_506; -x_506 = lean_ctor_get(x_502, 0); +lean_object* x_508; lean_object* x_509; lean_object* x_510; uint8_t x_511; +x_508 = lean_ctor_get(x_506, 0); +lean_inc(x_508); lean_dec(x_506); -lean_ctor_set(x_502, 0, x_3); -return x_502; -} -else -{ -lean_object* x_507; lean_object* x_508; -x_507 = lean_ctor_get(x_502, 1); -lean_inc(x_507); -lean_dec(x_502); -x_508 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_508, 0, x_3); -lean_ctor_set(x_508, 1, x_507); -return x_508; -} -} -else -{ -lean_object* x_509; lean_object* x_510; -x_509 = lean_ctor_get(x_502, 1); -lean_inc(x_509); -lean_dec(x_502); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_501); -lean_inc(x_1); -x_510 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_501, x_8, x_9, x_10, x_11, x_509); -if (lean_obj_tag(x_510) == 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; lean_object* x_518; uint8_t x_519; lean_object* x_520; lean_object* x_548; lean_object* x_549; lean_object* x_550; uint8_t x_551; -x_511 = lean_ctor_get(x_510, 0); -lean_inc(x_511); -x_512 = lean_ctor_get(x_510, 1); -lean_inc(x_512); +x_509 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_504, x_8, x_9, x_10, x_11, x_12); +x_510 = lean_ctor_get(x_509, 0); +lean_inc(x_510); +x_511 = lean_unbox(x_510); lean_dec(x_510); -x_513 = lean_ctor_get(x_511, 1); -lean_inc(x_513); -lean_dec(x_511); -x_514 = lean_box(0); -lean_inc(x_8); -x_515 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_513, x_514, x_8, x_9, x_10, x_11, x_512); -x_516 = lean_ctor_get(x_515, 0); +if (x_511 == 0) +{ +uint8_t x_512; +lean_dec(x_508); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_512 = !lean_is_exclusive(x_509); +if (x_512 == 0) +{ +lean_object* x_513; +x_513 = lean_ctor_get(x_509, 0); +lean_dec(x_513); +lean_ctor_set(x_509, 0, x_3); +return x_509; +} +else +{ +lean_object* x_514; lean_object* x_515; +x_514 = lean_ctor_get(x_509, 1); +lean_inc(x_514); +lean_dec(x_509); +x_515 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_515, 0, x_3); +lean_ctor_set(x_515, 1, x_514); +return x_515; +} +} +else +{ +lean_object* x_516; lean_object* x_517; +x_516 = lean_ctor_get(x_509, 1); lean_inc(x_516); -x_517 = lean_ctor_get(x_515, 1); -lean_inc(x_517); -lean_dec(x_515); -x_518 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_548 = lean_st_ref_get(x_11, x_517); -x_549 = lean_ctor_get(x_548, 0); -lean_inc(x_549); -x_550 = lean_ctor_get(x_549, 3); -lean_inc(x_550); -lean_dec(x_549); -x_551 = lean_ctor_get_uint8(x_550, sizeof(void*)*1); -lean_dec(x_550); -if (x_551 == 0) -{ -lean_object* x_552; uint8_t x_553; -x_552 = lean_ctor_get(x_548, 1); -lean_inc(x_552); -lean_dec(x_548); -x_553 = 0; -x_519 = x_553; -x_520 = x_552; -goto block_547; -} -else -{ -lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; uint8_t x_558; -x_554 = lean_ctor_get(x_548, 1); -lean_inc(x_554); -lean_dec(x_548); -x_555 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_518, x_8, x_9, x_10, x_11, x_554); -x_556 = lean_ctor_get(x_555, 0); -lean_inc(x_556); -x_557 = lean_ctor_get(x_555, 1); -lean_inc(x_557); -lean_dec(x_555); -x_558 = lean_unbox(x_556); -lean_dec(x_556); -x_519 = x_558; -x_520 = x_557; -goto block_547; -} -block_547: -{ -if (x_519 == 0) -{ -lean_object* x_521; lean_object* x_522; -x_521 = lean_box(0); -lean_inc(x_3); -x_522 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_516, x_3, x_518, x_1, x_501, x_521, x_8, x_9, x_10, x_11, x_520); -if (lean_obj_tag(x_522) == 0) -{ -lean_dec(x_3); -return x_522; -} -else -{ -uint8_t x_523; -x_523 = !lean_is_exclusive(x_522); -if (x_523 == 0) -{ -lean_object* x_524; -x_524 = lean_ctor_get(x_522, 0); -lean_dec(x_524); -lean_ctor_set_tag(x_522, 0); -lean_ctor_set(x_522, 0, x_3); -return x_522; -} -else -{ -lean_object* x_525; lean_object* x_526; -x_525 = lean_ctor_get(x_522, 1); -lean_inc(x_525); -lean_dec(x_522); -x_526 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_526, 0, x_3); -lean_ctor_set(x_526, 1, x_525); -return x_526; -} -} -} -else -{ -lean_object* x_527; lean_object* x_528; -x_527 = l_Lean_Expr_mvarId_x21(x_516); +lean_dec(x_509); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_528 = l_Lean_Meta_ppGoal(x_527, x_8, x_9, x_10, x_11, x_520); -if (lean_obj_tag(x_528) == 0) +lean_inc(x_508); +lean_inc(x_1); +x_517 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_508, x_8, x_9, x_10, x_11, x_516); +if (lean_obj_tag(x_517) == 0) { -lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; -x_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 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_531, 0, x_529); -x_532 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_533 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_533, 0, x_532); -lean_ctor_set(x_533, 1, x_531); -x_534 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_534, 0, x_533); -lean_ctor_set(x_534, 1, x_532); -x_535 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_518, x_534, x_8, x_9, x_10, x_11, x_530); -x_536 = lean_ctor_get(x_535, 0); -lean_inc(x_536); -x_537 = lean_ctor_get(x_535, 1); -lean_inc(x_537); -lean_dec(x_535); -lean_inc(x_3); -x_538 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_516, x_3, x_518, x_1, x_501, x_536, x_8, x_9, x_10, x_11, x_537); -if (lean_obj_tag(x_538) == 0) -{ -lean_dec(x_3); -return x_538; -} -else -{ -uint8_t x_539; -x_539 = !lean_is_exclusive(x_538); -if (x_539 == 0) -{ -lean_object* x_540; -x_540 = lean_ctor_get(x_538, 0); -lean_dec(x_540); -lean_ctor_set_tag(x_538, 0); -lean_ctor_set(x_538, 0, x_3); -return x_538; -} -else -{ -lean_object* x_541; lean_object* x_542; -x_541 = lean_ctor_get(x_538, 1); -lean_inc(x_541); -lean_dec(x_538); -x_542 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_542, 0, x_3); -lean_ctor_set(x_542, 1, x_541); -return x_542; -} -} -} -else -{ -uint8_t x_543; -lean_dec(x_516); -lean_dec(x_501); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_1); -x_543 = !lean_is_exclusive(x_528); -if (x_543 == 0) -{ -lean_object* x_544; -x_544 = lean_ctor_get(x_528, 0); -lean_dec(x_544); -lean_ctor_set_tag(x_528, 0); -lean_ctor_set(x_528, 0, x_3); -return x_528; -} -else -{ -lean_object* x_545; lean_object* x_546; -x_545 = lean_ctor_get(x_528, 1); -lean_inc(x_545); -lean_dec(x_528); -x_546 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_546, 0, x_3); -lean_ctor_set(x_546, 1, x_545); -return x_546; -} -} -} -} -} -else -{ -uint8_t x_559; -lean_dec(x_501); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_1); -x_559 = !lean_is_exclusive(x_510); +lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; uint8_t x_526; lean_object* x_527; lean_object* x_556; lean_object* x_557; lean_object* x_558; uint8_t x_559; +x_518 = lean_ctor_get(x_517, 0); +lean_inc(x_518); +x_519 = lean_ctor_get(x_517, 1); +lean_inc(x_519); +lean_dec(x_517); +x_520 = lean_ctor_get(x_518, 1); +lean_inc(x_520); +lean_dec(x_518); +x_521 = lean_box(0); +lean_inc(x_8); +x_522 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_520, x_521, x_8, x_9, x_10, x_11, x_519); +x_523 = lean_ctor_get(x_522, 0); +lean_inc(x_523); +x_524 = lean_ctor_get(x_522, 1); +lean_inc(x_524); +lean_dec(x_522); +x_525 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_556 = lean_st_ref_get(x_11, x_524); +x_557 = lean_ctor_get(x_556, 0); +lean_inc(x_557); +x_558 = lean_ctor_get(x_557, 3); +lean_inc(x_558); +lean_dec(x_557); +x_559 = lean_ctor_get_uint8(x_558, sizeof(void*)*1); +lean_dec(x_558); if (x_559 == 0) { -return x_510; +lean_object* x_560; uint8_t x_561; +x_560 = lean_ctor_get(x_556, 1); +lean_inc(x_560); +lean_dec(x_556); +x_561 = 0; +x_526 = x_561; +x_527 = x_560; +goto block_555; } else { -lean_object* x_560; lean_object* x_561; lean_object* x_562; -x_560 = lean_ctor_get(x_510, 0); -x_561 = lean_ctor_get(x_510, 1); -lean_inc(x_561); -lean_inc(x_560); -lean_dec(x_510); -x_562 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_562, 0, x_560); -lean_ctor_set(x_562, 1, x_561); -return x_562; +lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; uint8_t x_566; +x_562 = lean_ctor_get(x_556, 1); +lean_inc(x_562); +lean_dec(x_556); +x_563 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_525, x_8, x_9, x_10, x_11, x_562); +x_564 = lean_ctor_get(x_563, 0); +lean_inc(x_564); +x_565 = lean_ctor_get(x_563, 1); +lean_inc(x_565); +lean_dec(x_563); +x_566 = lean_unbox(x_564); +lean_dec(x_564); +x_526 = x_566; +x_527 = x_565; +goto block_555; +} +block_555: +{ +if (x_526 == 0) +{ +lean_object* x_528; lean_object* x_529; +x_528 = lean_box(0); +lean_inc(x_3); +x_529 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_523, x_3, x_525, x_1, x_508, x_528, x_8, x_9, x_10, x_11, x_527); +if (lean_obj_tag(x_529) == 0) +{ +lean_dec(x_3); +return x_529; +} +else +{ +uint8_t x_530; +x_530 = !lean_is_exclusive(x_529); +if (x_530 == 0) +{ +lean_object* x_531; +x_531 = lean_ctor_get(x_529, 0); +lean_dec(x_531); +lean_ctor_set_tag(x_529, 0); +lean_ctor_set(x_529, 0, x_3); +return x_529; +} +else +{ +lean_object* x_532; lean_object* x_533; +x_532 = lean_ctor_get(x_529, 1); +lean_inc(x_532); +lean_dec(x_529); +x_533 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_533, 0, x_3); +lean_ctor_set(x_533, 1, x_532); +return x_533; +} +} +} +else +{ +lean_object* x_534; uint8_t x_535; lean_object* x_536; +x_534 = l_Lean_Expr_mvarId_x21(x_523); +x_535 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_536 = l_Lean_Meta_ppGoal(x_534, x_535, x_8, x_9, x_10, x_11, x_527); +if (lean_obj_tag(x_536) == 0) +{ +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; +x_537 = lean_ctor_get(x_536, 0); +lean_inc(x_537); +x_538 = lean_ctor_get(x_536, 1); +lean_inc(x_538); +lean_dec(x_536); +x_539 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_539, 0, x_537); +x_540 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_541 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_541, 0, x_540); +lean_ctor_set(x_541, 1, x_539); +x_542 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_542, 0, x_541); +lean_ctor_set(x_542, 1, x_540); +x_543 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_525, x_542, x_8, x_9, x_10, x_11, x_538); +x_544 = lean_ctor_get(x_543, 0); +lean_inc(x_544); +x_545 = lean_ctor_get(x_543, 1); +lean_inc(x_545); +lean_dec(x_543); +lean_inc(x_3); +x_546 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_523, x_3, x_525, x_1, x_508, x_544, x_8, x_9, x_10, x_11, x_545); +if (lean_obj_tag(x_546) == 0) +{ +lean_dec(x_3); +return x_546; +} +else +{ +uint8_t x_547; +x_547 = !lean_is_exclusive(x_546); +if (x_547 == 0) +{ +lean_object* x_548; +x_548 = lean_ctor_get(x_546, 0); +lean_dec(x_548); +lean_ctor_set_tag(x_546, 0); +lean_ctor_set(x_546, 0, x_3); +return x_546; +} +else +{ +lean_object* x_549; lean_object* x_550; +x_549 = lean_ctor_get(x_546, 1); +lean_inc(x_549); +lean_dec(x_546); +x_550 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_550, 0, x_3); +lean_ctor_set(x_550, 1, x_549); +return x_550; +} +} +} +else +{ +uint8_t x_551; +lean_dec(x_523); +lean_dec(x_508); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_1); +x_551 = !lean_is_exclusive(x_536); +if (x_551 == 0) +{ +lean_object* x_552; +x_552 = lean_ctor_get(x_536, 0); +lean_dec(x_552); +lean_ctor_set_tag(x_536, 0); +lean_ctor_set(x_536, 0, x_3); +return x_536; +} +else +{ +lean_object* x_553; lean_object* x_554; +x_553 = lean_ctor_get(x_536, 1); +lean_inc(x_553); +lean_dec(x_536); +x_554 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_554, 0, x_3); +lean_ctor_set(x_554, 1, x_553); +return x_554; +} +} +} +} +} +else +{ +uint8_t x_567; +lean_dec(x_508); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +x_567 = !lean_is_exclusive(x_517); +if (x_567 == 0) +{ +return x_517; +} +else +{ +lean_object* x_568; lean_object* x_569; lean_object* x_570; +x_568 = lean_ctor_get(x_517, 0); +x_569 = lean_ctor_get(x_517, 1); +lean_inc(x_569); +lean_inc(x_568); +lean_dec(x_517); +x_570 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_570, 0, x_568); +lean_ctor_set(x_570, 1, x_569); +return x_570; } } } @@ -21328,326 +21336,327 @@ return x_562; } case 9: { -lean_object* x_563; +lean_object* x_571; lean_dec(x_7); lean_dec(x_6); -x_563 = l_Lean_Expr_constName_x3f(x_5); +x_571 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_563) == 0) +if (lean_obj_tag(x_571) == 0) { -lean_object* x_564; +lean_object* x_572; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_564 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_564, 0, x_3); -lean_ctor_set(x_564, 1, x_12); -return x_564; +x_572 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_572, 0, x_3); +lean_ctor_set(x_572, 1, x_12); +return x_572; } else { -lean_object* x_565; lean_object* x_566; lean_object* x_567; -x_565 = lean_ctor_get(x_563, 0); -lean_inc(x_565); -lean_dec(x_563); -x_566 = lean_unsigned_to_nat(0u); -x_567 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_566); -if (lean_obj_tag(x_567) == 0) -{ -lean_object* x_568; -lean_dec(x_565); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_568 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_568, 0, x_3); -lean_ctor_set(x_568, 1, x_12); -return x_568; -} -else -{ -lean_object* x_569; lean_object* x_570; lean_object* x_571; uint8_t x_572; -x_569 = lean_ctor_get(x_567, 0); -lean_inc(x_569); -lean_dec(x_567); -x_570 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_565, x_8, x_9, x_10, x_11, x_12); -x_571 = lean_ctor_get(x_570, 0); -lean_inc(x_571); -x_572 = lean_unbox(x_571); +lean_object* x_573; lean_object* x_574; lean_object* x_575; +x_573 = lean_ctor_get(x_571, 0); +lean_inc(x_573); lean_dec(x_571); -if (x_572 == 0) +x_574 = lean_unsigned_to_nat(0u); +x_575 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_574); +if (lean_obj_tag(x_575) == 0) { -uint8_t x_573; -lean_dec(x_569); +lean_object* x_576; +lean_dec(x_573); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_573 = !lean_is_exclusive(x_570); -if (x_573 == 0) -{ -lean_object* x_574; -x_574 = lean_ctor_get(x_570, 0); -lean_dec(x_574); -lean_ctor_set(x_570, 0, x_3); -return x_570; -} -else -{ -lean_object* x_575; lean_object* x_576; -x_575 = lean_ctor_get(x_570, 1); -lean_inc(x_575); -lean_dec(x_570); x_576 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_576, 0, x_3); -lean_ctor_set(x_576, 1, x_575); +lean_ctor_set(x_576, 1, x_12); return x_576; } -} else { -lean_object* x_577; lean_object* x_578; -x_577 = lean_ctor_get(x_570, 1); +lean_object* x_577; lean_object* x_578; lean_object* x_579; uint8_t x_580; +x_577 = lean_ctor_get(x_575, 0); lean_inc(x_577); -lean_dec(x_570); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_569); -lean_inc(x_1); -x_578 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_569, x_8, x_9, x_10, x_11, x_577); -if (lean_obj_tag(x_578) == 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; uint8_t x_587; lean_object* x_588; lean_object* x_616; lean_object* x_617; lean_object* x_618; uint8_t x_619; +lean_dec(x_575); +x_578 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_573, x_8, x_9, x_10, x_11, x_12); 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 = lean_ctor_get(x_579, 1); -lean_inc(x_581); +x_580 = lean_unbox(x_579); lean_dec(x_579); -x_582 = lean_box(0); -lean_inc(x_8); -x_583 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_581, x_582, x_8, x_9, x_10, x_11, x_580); -x_584 = lean_ctor_get(x_583, 0); -lean_inc(x_584); -x_585 = lean_ctor_get(x_583, 1); -lean_inc(x_585); -lean_dec(x_583); -x_586 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_616 = lean_st_ref_get(x_11, x_585); -x_617 = lean_ctor_get(x_616, 0); -lean_inc(x_617); -x_618 = lean_ctor_get(x_617, 3); -lean_inc(x_618); -lean_dec(x_617); -x_619 = lean_ctor_get_uint8(x_618, sizeof(void*)*1); -lean_dec(x_618); -if (x_619 == 0) +if (x_580 == 0) { -lean_object* x_620; uint8_t x_621; -x_620 = lean_ctor_get(x_616, 1); -lean_inc(x_620); -lean_dec(x_616); -x_621 = 0; -x_587 = x_621; -x_588 = x_620; -goto block_615; -} -else -{ -lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; uint8_t x_626; -x_622 = lean_ctor_get(x_616, 1); -lean_inc(x_622); -lean_dec(x_616); -x_623 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_586, x_8, x_9, x_10, x_11, x_622); -x_624 = lean_ctor_get(x_623, 0); -lean_inc(x_624); -x_625 = lean_ctor_get(x_623, 1); -lean_inc(x_625); -lean_dec(x_623); -x_626 = lean_unbox(x_624); -lean_dec(x_624); -x_587 = x_626; -x_588 = x_625; -goto block_615; -} -block_615: -{ -if (x_587 == 0) -{ -lean_object* x_589; lean_object* x_590; -x_589 = lean_box(0); -lean_inc(x_3); -x_590 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_584, x_3, x_586, x_1, x_569, x_589, x_8, x_9, x_10, x_11, x_588); -if (lean_obj_tag(x_590) == 0) -{ -lean_dec(x_3); -return x_590; -} -else -{ -uint8_t x_591; -x_591 = !lean_is_exclusive(x_590); -if (x_591 == 0) -{ -lean_object* x_592; -x_592 = lean_ctor_get(x_590, 0); -lean_dec(x_592); -lean_ctor_set_tag(x_590, 0); -lean_ctor_set(x_590, 0, x_3); -return x_590; -} -else -{ -lean_object* x_593; lean_object* x_594; -x_593 = lean_ctor_get(x_590, 1); -lean_inc(x_593); -lean_dec(x_590); -x_594 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_594, 0, x_3); -lean_ctor_set(x_594, 1, x_593); -return x_594; -} -} -} -else -{ -lean_object* x_595; lean_object* x_596; -x_595 = l_Lean_Expr_mvarId_x21(x_584); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -x_596 = l_Lean_Meta_ppGoal(x_595, x_8, x_9, x_10, x_11, x_588); -if (lean_obj_tag(x_596) == 0) -{ -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_597 = lean_ctor_get(x_596, 0); -lean_inc(x_597); -x_598 = lean_ctor_get(x_596, 1); -lean_inc(x_598); -lean_dec(x_596); -x_599 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_599, 0, x_597); -x_600 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_601 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_601, 0, x_600); -lean_ctor_set(x_601, 1, x_599); -x_602 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_602, 0, x_601); -lean_ctor_set(x_602, 1, x_600); -x_603 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_586, x_602, x_8, x_9, x_10, x_11, x_598); -x_604 = lean_ctor_get(x_603, 0); -lean_inc(x_604); -x_605 = lean_ctor_get(x_603, 1); -lean_inc(x_605); -lean_dec(x_603); -lean_inc(x_3); -x_606 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_584, x_3, x_586, x_1, x_569, x_604, x_8, x_9, x_10, x_11, x_605); -if (lean_obj_tag(x_606) == 0) -{ -lean_dec(x_3); -return x_606; -} -else -{ -uint8_t x_607; -x_607 = !lean_is_exclusive(x_606); -if (x_607 == 0) -{ -lean_object* x_608; -x_608 = lean_ctor_get(x_606, 0); -lean_dec(x_608); -lean_ctor_set_tag(x_606, 0); -lean_ctor_set(x_606, 0, x_3); -return x_606; -} -else -{ -lean_object* x_609; lean_object* x_610; -x_609 = lean_ctor_get(x_606, 1); -lean_inc(x_609); -lean_dec(x_606); -x_610 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_610, 0, x_3); -lean_ctor_set(x_610, 1, x_609); -return x_610; -} -} -} -else -{ -uint8_t x_611; -lean_dec(x_584); -lean_dec(x_569); +uint8_t x_581; +lean_dec(x_577); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_2); lean_dec(x_1); -x_611 = !lean_is_exclusive(x_596); -if (x_611 == 0) -{ -lean_object* x_612; -x_612 = lean_ctor_get(x_596, 0); -lean_dec(x_612); -lean_ctor_set_tag(x_596, 0); -lean_ctor_set(x_596, 0, x_3); -return x_596; -} -else -{ -lean_object* x_613; lean_object* x_614; -x_613 = lean_ctor_get(x_596, 1); -lean_inc(x_613); -lean_dec(x_596); -x_614 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_614, 0, x_3); -lean_ctor_set(x_614, 1, x_613); -return x_614; -} -} -} -} -} -else -{ -uint8_t x_627; -lean_dec(x_569); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_1); -x_627 = !lean_is_exclusive(x_578); -if (x_627 == 0) +x_581 = !lean_is_exclusive(x_578); +if (x_581 == 0) { +lean_object* x_582; +x_582 = lean_ctor_get(x_578, 0); +lean_dec(x_582); +lean_ctor_set(x_578, 0, x_3); return x_578; } else { -lean_object* x_628; lean_object* x_629; lean_object* x_630; -x_628 = lean_ctor_get(x_578, 0); -x_629 = lean_ctor_get(x_578, 1); -lean_inc(x_629); -lean_inc(x_628); +lean_object* x_583; lean_object* x_584; +x_583 = lean_ctor_get(x_578, 1); +lean_inc(x_583); lean_dec(x_578); -x_630 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_630, 0, x_628); -lean_ctor_set(x_630, 1, x_629); -return x_630; +x_584 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_584, 0, x_3); +lean_ctor_set(x_584, 1, x_583); +return x_584; +} +} +else +{ +lean_object* x_585; lean_object* x_586; +x_585 = lean_ctor_get(x_578, 1); +lean_inc(x_585); +lean_dec(x_578); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_577); +lean_inc(x_1); +x_586 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_577, x_8, x_9, x_10, x_11, x_585); +if (lean_obj_tag(x_586) == 0) +{ +lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; uint8_t x_595; lean_object* x_596; lean_object* x_625; lean_object* x_626; lean_object* x_627; uint8_t x_628; +x_587 = lean_ctor_get(x_586, 0); +lean_inc(x_587); +x_588 = lean_ctor_get(x_586, 1); +lean_inc(x_588); +lean_dec(x_586); +x_589 = lean_ctor_get(x_587, 1); +lean_inc(x_589); +lean_dec(x_587); +x_590 = lean_box(0); +lean_inc(x_8); +x_591 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_589, x_590, x_8, x_9, x_10, x_11, x_588); +x_592 = lean_ctor_get(x_591, 0); +lean_inc(x_592); +x_593 = lean_ctor_get(x_591, 1); +lean_inc(x_593); +lean_dec(x_591); +x_594 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_625 = lean_st_ref_get(x_11, x_593); +x_626 = lean_ctor_get(x_625, 0); +lean_inc(x_626); +x_627 = lean_ctor_get(x_626, 3); +lean_inc(x_627); +lean_dec(x_626); +x_628 = lean_ctor_get_uint8(x_627, sizeof(void*)*1); +lean_dec(x_627); +if (x_628 == 0) +{ +lean_object* x_629; uint8_t x_630; +x_629 = lean_ctor_get(x_625, 1); +lean_inc(x_629); +lean_dec(x_625); +x_630 = 0; +x_595 = x_630; +x_596 = x_629; +goto block_624; +} +else +{ +lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; uint8_t x_635; +x_631 = lean_ctor_get(x_625, 1); +lean_inc(x_631); +lean_dec(x_625); +x_632 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_594, x_8, x_9, x_10, x_11, x_631); +x_633 = lean_ctor_get(x_632, 0); +lean_inc(x_633); +x_634 = lean_ctor_get(x_632, 1); +lean_inc(x_634); +lean_dec(x_632); +x_635 = lean_unbox(x_633); +lean_dec(x_633); +x_595 = x_635; +x_596 = x_634; +goto block_624; +} +block_624: +{ +if (x_595 == 0) +{ +lean_object* x_597; lean_object* x_598; +x_597 = lean_box(0); +lean_inc(x_3); +x_598 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_592, x_3, x_594, x_1, x_577, x_597, x_8, x_9, x_10, x_11, x_596); +if (lean_obj_tag(x_598) == 0) +{ +lean_dec(x_3); +return x_598; +} +else +{ +uint8_t x_599; +x_599 = !lean_is_exclusive(x_598); +if (x_599 == 0) +{ +lean_object* x_600; +x_600 = lean_ctor_get(x_598, 0); +lean_dec(x_600); +lean_ctor_set_tag(x_598, 0); +lean_ctor_set(x_598, 0, x_3); +return x_598; +} +else +{ +lean_object* x_601; lean_object* x_602; +x_601 = lean_ctor_get(x_598, 1); +lean_inc(x_601); +lean_dec(x_598); +x_602 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_602, 0, x_3); +lean_ctor_set(x_602, 1, x_601); +return x_602; +} +} +} +else +{ +lean_object* x_603; uint8_t x_604; lean_object* x_605; +x_603 = l_Lean_Expr_mvarId_x21(x_592); +x_604 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_605 = l_Lean_Meta_ppGoal(x_603, x_604, x_8, x_9, x_10, x_11, x_596); +if (lean_obj_tag(x_605) == 0) +{ +lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; +x_606 = lean_ctor_get(x_605, 0); +lean_inc(x_606); +x_607 = lean_ctor_get(x_605, 1); +lean_inc(x_607); +lean_dec(x_605); +x_608 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_608, 0, x_606); +x_609 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_610 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_610, 0, x_609); +lean_ctor_set(x_610, 1, x_608); +x_611 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_611, 0, x_610); +lean_ctor_set(x_611, 1, x_609); +x_612 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_594, x_611, x_8, x_9, x_10, x_11, x_607); +x_613 = lean_ctor_get(x_612, 0); +lean_inc(x_613); +x_614 = lean_ctor_get(x_612, 1); +lean_inc(x_614); +lean_dec(x_612); +lean_inc(x_3); +x_615 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_592, x_3, x_594, x_1, x_577, x_613, x_8, x_9, x_10, x_11, x_614); +if (lean_obj_tag(x_615) == 0) +{ +lean_dec(x_3); +return x_615; +} +else +{ +uint8_t x_616; +x_616 = !lean_is_exclusive(x_615); +if (x_616 == 0) +{ +lean_object* x_617; +x_617 = lean_ctor_get(x_615, 0); +lean_dec(x_617); +lean_ctor_set_tag(x_615, 0); +lean_ctor_set(x_615, 0, x_3); +return x_615; +} +else +{ +lean_object* x_618; lean_object* x_619; +x_618 = lean_ctor_get(x_615, 1); +lean_inc(x_618); +lean_dec(x_615); +x_619 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_619, 0, x_3); +lean_ctor_set(x_619, 1, x_618); +return x_619; +} +} +} +else +{ +uint8_t x_620; +lean_dec(x_592); +lean_dec(x_577); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_1); +x_620 = !lean_is_exclusive(x_605); +if (x_620 == 0) +{ +lean_object* x_621; +x_621 = lean_ctor_get(x_605, 0); +lean_dec(x_621); +lean_ctor_set_tag(x_605, 0); +lean_ctor_set(x_605, 0, x_3); +return x_605; +} +else +{ +lean_object* x_622; lean_object* x_623; +x_622 = lean_ctor_get(x_605, 1); +lean_inc(x_622); +lean_dec(x_605); +x_623 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_623, 0, x_3); +lean_ctor_set(x_623, 1, x_622); +return x_623; +} +} +} +} +} +else +{ +uint8_t x_636; +lean_dec(x_577); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +x_636 = !lean_is_exclusive(x_586); +if (x_636 == 0) +{ +return x_586; +} +else +{ +lean_object* x_637; lean_object* x_638; lean_object* x_639; +x_637 = lean_ctor_get(x_586, 0); +x_638 = lean_ctor_get(x_586, 1); +lean_inc(x_638); +lean_inc(x_637); +lean_dec(x_586); +x_639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_639, 0, x_637); +lean_ctor_set(x_639, 1, x_638); +return x_639; } } } @@ -21656,294 +21665,295 @@ return x_630; } case 10: { -lean_object* x_631; +lean_object* x_640; lean_dec(x_7); lean_dec(x_6); -x_631 = l_Lean_Expr_constName_x3f(x_5); +x_640 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_631) == 0) +if (lean_obj_tag(x_640) == 0) { -lean_object* x_632; +lean_object* x_641; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_632 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_632, 0, x_3); -lean_ctor_set(x_632, 1, x_12); -return x_632; +x_641 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_641, 0, x_3); +lean_ctor_set(x_641, 1, x_12); +return x_641; } else { -lean_object* x_633; lean_object* x_634; lean_object* x_635; -x_633 = lean_ctor_get(x_631, 0); -lean_inc(x_633); -lean_dec(x_631); -x_634 = lean_unsigned_to_nat(0u); -x_635 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_634); -if (lean_obj_tag(x_635) == 0) +lean_object* x_642; lean_object* x_643; lean_object* x_644; +x_642 = lean_ctor_get(x_640, 0); +lean_inc(x_642); +lean_dec(x_640); +x_643 = lean_unsigned_to_nat(0u); +x_644 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_643); +if (lean_obj_tag(x_644) == 0) { -lean_object* x_636; -lean_dec(x_633); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_636 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_636, 0, x_3); -lean_ctor_set(x_636, 1, x_12); -return x_636; -} -else -{ -lean_object* x_637; lean_object* x_638; lean_object* x_639; uint8_t x_640; -x_637 = lean_ctor_get(x_635, 0); -lean_inc(x_637); -lean_dec(x_635); -x_638 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_633, x_8, x_9, x_10, x_11, x_12); -x_639 = lean_ctor_get(x_638, 0); -lean_inc(x_639); -x_640 = lean_unbox(x_639); -lean_dec(x_639); -if (x_640 == 0) -{ -uint8_t x_641; -lean_dec(x_637); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_641 = !lean_is_exclusive(x_638); -if (x_641 == 0) -{ -lean_object* x_642; -x_642 = lean_ctor_get(x_638, 0); +lean_object* x_645; lean_dec(x_642); -lean_ctor_set(x_638, 0, x_3); -return x_638; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_645 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_645, 0, x_3); +lean_ctor_set(x_645, 1, x_12); +return x_645; } else { -lean_object* x_643; lean_object* x_644; -x_643 = lean_ctor_get(x_638, 1); -lean_inc(x_643); -lean_dec(x_638); -x_644 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_644, 0, x_3); -lean_ctor_set(x_644, 1, x_643); -return x_644; +lean_object* x_646; lean_object* x_647; lean_object* x_648; uint8_t x_649; +x_646 = lean_ctor_get(x_644, 0); +lean_inc(x_646); +lean_dec(x_644); +x_647 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_642, x_8, x_9, x_10, x_11, x_12); +x_648 = lean_ctor_get(x_647, 0); +lean_inc(x_648); +x_649 = lean_unbox(x_648); +lean_dec(x_648); +if (x_649 == 0) +{ +uint8_t x_650; +lean_dec(x_646); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_650 = !lean_is_exclusive(x_647); +if (x_650 == 0) +{ +lean_object* x_651; +x_651 = lean_ctor_get(x_647, 0); +lean_dec(x_651); +lean_ctor_set(x_647, 0, x_3); +return x_647; +} +else +{ +lean_object* x_652; lean_object* x_653; +x_652 = lean_ctor_get(x_647, 1); +lean_inc(x_652); +lean_dec(x_647); +x_653 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_653, 0, x_3); +lean_ctor_set(x_653, 1, x_652); +return x_653; } } else { -lean_object* x_645; lean_object* x_646; -x_645 = lean_ctor_get(x_638, 1); -lean_inc(x_645); -lean_dec(x_638); +lean_object* x_654; lean_object* x_655; +x_654 = lean_ctor_get(x_647, 1); +lean_inc(x_654); +lean_dec(x_647); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_637); +lean_inc(x_646); lean_inc(x_1); -x_646 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_637, x_8, x_9, x_10, x_11, x_645); -if (lean_obj_tag(x_646) == 0) +x_655 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_646, x_8, x_9, x_10, x_11, x_654); +if (lean_obj_tag(x_655) == 0) { -lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; uint8_t x_655; lean_object* x_656; lean_object* x_684; lean_object* x_685; lean_object* x_686; uint8_t x_687; -x_647 = lean_ctor_get(x_646, 0); -lean_inc(x_647); -x_648 = lean_ctor_get(x_646, 1); -lean_inc(x_648); -lean_dec(x_646); -x_649 = lean_ctor_get(x_647, 1); -lean_inc(x_649); -lean_dec(x_647); -x_650 = lean_box(0); +lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; uint8_t x_664; lean_object* x_665; lean_object* x_694; lean_object* x_695; lean_object* x_696; uint8_t x_697; +x_656 = lean_ctor_get(x_655, 0); +lean_inc(x_656); +x_657 = lean_ctor_get(x_655, 1); +lean_inc(x_657); +lean_dec(x_655); +x_658 = lean_ctor_get(x_656, 1); +lean_inc(x_658); +lean_dec(x_656); +x_659 = lean_box(0); lean_inc(x_8); -x_651 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_649, x_650, x_8, x_9, x_10, x_11, x_648); -x_652 = lean_ctor_get(x_651, 0); -lean_inc(x_652); -x_653 = lean_ctor_get(x_651, 1); -lean_inc(x_653); -lean_dec(x_651); -x_654 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_684 = lean_st_ref_get(x_11, x_653); -x_685 = lean_ctor_get(x_684, 0); -lean_inc(x_685); -x_686 = lean_ctor_get(x_685, 3); -lean_inc(x_686); -lean_dec(x_685); -x_687 = lean_ctor_get_uint8(x_686, sizeof(void*)*1); -lean_dec(x_686); -if (x_687 == 0) +x_660 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_658, x_659, x_8, x_9, x_10, x_11, x_657); +x_661 = lean_ctor_get(x_660, 0); +lean_inc(x_661); +x_662 = lean_ctor_get(x_660, 1); +lean_inc(x_662); +lean_dec(x_660); +x_663 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_694 = lean_st_ref_get(x_11, x_662); +x_695 = lean_ctor_get(x_694, 0); +lean_inc(x_695); +x_696 = lean_ctor_get(x_695, 3); +lean_inc(x_696); +lean_dec(x_695); +x_697 = lean_ctor_get_uint8(x_696, sizeof(void*)*1); +lean_dec(x_696); +if (x_697 == 0) { -lean_object* x_688; uint8_t x_689; -x_688 = lean_ctor_get(x_684, 1); -lean_inc(x_688); -lean_dec(x_684); -x_689 = 0; -x_655 = x_689; -x_656 = x_688; -goto block_683; +lean_object* x_698; uint8_t x_699; +x_698 = lean_ctor_get(x_694, 1); +lean_inc(x_698); +lean_dec(x_694); +x_699 = 0; +x_664 = x_699; +x_665 = x_698; +goto block_693; } else { -lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; uint8_t x_694; -x_690 = lean_ctor_get(x_684, 1); -lean_inc(x_690); -lean_dec(x_684); -x_691 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_654, x_8, x_9, x_10, x_11, x_690); -x_692 = lean_ctor_get(x_691, 0); -lean_inc(x_692); -x_693 = lean_ctor_get(x_691, 1); -lean_inc(x_693); -lean_dec(x_691); -x_694 = lean_unbox(x_692); -lean_dec(x_692); -x_655 = x_694; -x_656 = x_693; -goto block_683; +lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; uint8_t x_704; +x_700 = lean_ctor_get(x_694, 1); +lean_inc(x_700); +lean_dec(x_694); +x_701 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_663, x_8, x_9, x_10, x_11, x_700); +x_702 = lean_ctor_get(x_701, 0); +lean_inc(x_702); +x_703 = lean_ctor_get(x_701, 1); +lean_inc(x_703); +lean_dec(x_701); +x_704 = lean_unbox(x_702); +lean_dec(x_702); +x_664 = x_704; +x_665 = x_703; +goto block_693; } -block_683: +block_693: { -if (x_655 == 0) +if (x_664 == 0) { -lean_object* x_657; lean_object* x_658; -x_657 = lean_box(0); +lean_object* x_666; lean_object* x_667; +x_666 = lean_box(0); lean_inc(x_3); -x_658 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_652, x_3, x_654, x_1, x_637, x_657, x_8, x_9, x_10, x_11, x_656); -if (lean_obj_tag(x_658) == 0) +x_667 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_661, x_3, x_663, x_1, x_646, x_666, x_8, x_9, x_10, x_11, x_665); +if (lean_obj_tag(x_667) == 0) { lean_dec(x_3); -return x_658; +return x_667; } else { -uint8_t x_659; -x_659 = !lean_is_exclusive(x_658); -if (x_659 == 0) +uint8_t x_668; +x_668 = !lean_is_exclusive(x_667); +if (x_668 == 0) { -lean_object* x_660; -x_660 = lean_ctor_get(x_658, 0); -lean_dec(x_660); -lean_ctor_set_tag(x_658, 0); -lean_ctor_set(x_658, 0, x_3); -return x_658; +lean_object* x_669; +x_669 = lean_ctor_get(x_667, 0); +lean_dec(x_669); +lean_ctor_set_tag(x_667, 0); +lean_ctor_set(x_667, 0, x_3); +return x_667; } else { -lean_object* x_661; lean_object* x_662; -x_661 = lean_ctor_get(x_658, 1); -lean_inc(x_661); -lean_dec(x_658); -x_662 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_662, 0, x_3); -lean_ctor_set(x_662, 1, x_661); -return x_662; +lean_object* x_670; lean_object* x_671; +x_670 = lean_ctor_get(x_667, 1); +lean_inc(x_670); +lean_dec(x_667); +x_671 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_671, 0, x_3); +lean_ctor_set(x_671, 1, x_670); +return x_671; } } } else { -lean_object* x_663; lean_object* x_664; -x_663 = l_Lean_Expr_mvarId_x21(x_652); +lean_object* x_672; uint8_t x_673; lean_object* x_674; +x_672 = l_Lean_Expr_mvarId_x21(x_661); +x_673 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_664 = l_Lean_Meta_ppGoal(x_663, x_8, x_9, x_10, x_11, x_656); -if (lean_obj_tag(x_664) == 0) -{ -lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; -x_665 = lean_ctor_get(x_664, 0); -lean_inc(x_665); -x_666 = lean_ctor_get(x_664, 1); -lean_inc(x_666); -lean_dec(x_664); -x_667 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_667, 0, x_665); -x_668 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_669 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_669, 0, x_668); -lean_ctor_set(x_669, 1, x_667); -x_670 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_670, 0, x_669); -lean_ctor_set(x_670, 1, x_668); -x_671 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_654, x_670, x_8, x_9, x_10, x_11, x_666); -x_672 = lean_ctor_get(x_671, 0); -lean_inc(x_672); -x_673 = lean_ctor_get(x_671, 1); -lean_inc(x_673); -lean_dec(x_671); -lean_inc(x_3); -x_674 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_652, x_3, x_654, x_1, x_637, x_672, x_8, x_9, x_10, x_11, x_673); +x_674 = l_Lean_Meta_ppGoal(x_672, x_673, x_8, x_9, x_10, x_11, x_665); if (lean_obj_tag(x_674) == 0) { +lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; +x_675 = lean_ctor_get(x_674, 0); +lean_inc(x_675); +x_676 = lean_ctor_get(x_674, 1); +lean_inc(x_676); +lean_dec(x_674); +x_677 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_677, 0, x_675); +x_678 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_679 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_679, 0, x_678); +lean_ctor_set(x_679, 1, x_677); +x_680 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_680, 0, x_679); +lean_ctor_set(x_680, 1, x_678); +x_681 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_663, x_680, x_8, x_9, x_10, x_11, x_676); +x_682 = lean_ctor_get(x_681, 0); +lean_inc(x_682); +x_683 = lean_ctor_get(x_681, 1); +lean_inc(x_683); +lean_dec(x_681); +lean_inc(x_3); +x_684 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_661, x_3, x_663, x_1, x_646, x_682, x_8, x_9, x_10, x_11, x_683); +if (lean_obj_tag(x_684) == 0) +{ lean_dec(x_3); -return x_674; +return x_684; } else { -uint8_t x_675; -x_675 = !lean_is_exclusive(x_674); -if (x_675 == 0) +uint8_t x_685; +x_685 = !lean_is_exclusive(x_684); +if (x_685 == 0) { -lean_object* x_676; -x_676 = lean_ctor_get(x_674, 0); -lean_dec(x_676); +lean_object* x_686; +x_686 = lean_ctor_get(x_684, 0); +lean_dec(x_686); +lean_ctor_set_tag(x_684, 0); +lean_ctor_set(x_684, 0, x_3); +return x_684; +} +else +{ +lean_object* x_687; lean_object* x_688; +x_687 = lean_ctor_get(x_684, 1); +lean_inc(x_687); +lean_dec(x_684); +x_688 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_688, 0, x_3); +lean_ctor_set(x_688, 1, x_687); +return x_688; +} +} +} +else +{ +uint8_t x_689; +lean_dec(x_661); +lean_dec(x_646); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_1); +x_689 = !lean_is_exclusive(x_674); +if (x_689 == 0) +{ +lean_object* x_690; +x_690 = lean_ctor_get(x_674, 0); +lean_dec(x_690); lean_ctor_set_tag(x_674, 0); lean_ctor_set(x_674, 0, x_3); return x_674; } else { -lean_object* x_677; lean_object* x_678; -x_677 = lean_ctor_get(x_674, 1); -lean_inc(x_677); +lean_object* x_691; lean_object* x_692; +x_691 = lean_ctor_get(x_674, 1); +lean_inc(x_691); lean_dec(x_674); -x_678 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_678, 0, x_3); -lean_ctor_set(x_678, 1, x_677); -return x_678; -} -} -} -else -{ -uint8_t x_679; -lean_dec(x_652); -lean_dec(x_637); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_1); -x_679 = !lean_is_exclusive(x_664); -if (x_679 == 0) -{ -lean_object* x_680; -x_680 = lean_ctor_get(x_664, 0); -lean_dec(x_680); -lean_ctor_set_tag(x_664, 0); -lean_ctor_set(x_664, 0, x_3); -return x_664; -} -else -{ -lean_object* x_681; lean_object* x_682; -x_681 = lean_ctor_get(x_664, 1); -lean_inc(x_681); -lean_dec(x_664); -x_682 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_682, 0, x_3); -lean_ctor_set(x_682, 1, x_681); -return x_682; +x_692 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_692, 0, x_3); +lean_ctor_set(x_692, 1, x_691); +return x_692; } } } @@ -21951,31 +21961,31 @@ return x_682; } else { -uint8_t x_695; -lean_dec(x_637); +uint8_t x_705; +lean_dec(x_646); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_3); lean_dec(x_1); -x_695 = !lean_is_exclusive(x_646); -if (x_695 == 0) +x_705 = !lean_is_exclusive(x_655); +if (x_705 == 0) { -return x_646; +return x_655; } else { -lean_object* x_696; lean_object* x_697; lean_object* x_698; -x_696 = lean_ctor_get(x_646, 0); -x_697 = lean_ctor_get(x_646, 1); -lean_inc(x_697); -lean_inc(x_696); -lean_dec(x_646); -x_698 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_698, 0, x_696); -lean_ctor_set(x_698, 1, x_697); -return x_698; +lean_object* x_706; lean_object* x_707; lean_object* x_708; +x_706 = lean_ctor_get(x_655, 0); +x_707 = lean_ctor_get(x_655, 1); +lean_inc(x_707); +lean_inc(x_706); +lean_dec(x_655); +x_708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_708, 0, x_706); +lean_ctor_set(x_708, 1, x_707); +return x_708; } } } @@ -21984,326 +21994,327 @@ return x_698; } default: { -lean_object* x_699; +lean_object* x_709; lean_dec(x_7); lean_dec(x_6); -x_699 = l_Lean_Expr_constName_x3f(x_5); +x_709 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_699) == 0) -{ -lean_object* x_700; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_700 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_700, 0, x_3); -lean_ctor_set(x_700, 1, x_12); -return x_700; -} -else -{ -lean_object* x_701; lean_object* x_702; lean_object* x_703; -x_701 = lean_ctor_get(x_699, 0); -lean_inc(x_701); -lean_dec(x_699); -x_702 = lean_unsigned_to_nat(0u); -x_703 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_702); -if (lean_obj_tag(x_703) == 0) -{ -lean_object* x_704; -lean_dec(x_701); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_704 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_704, 0, x_3); -lean_ctor_set(x_704, 1, x_12); -return x_704; -} -else -{ -lean_object* x_705; lean_object* x_706; lean_object* x_707; uint8_t x_708; -x_705 = lean_ctor_get(x_703, 0); -lean_inc(x_705); -lean_dec(x_703); -x_706 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_701, x_8, x_9, x_10, x_11, x_12); -x_707 = lean_ctor_get(x_706, 0); -lean_inc(x_707); -x_708 = lean_unbox(x_707); -lean_dec(x_707); -if (x_708 == 0) -{ -uint8_t x_709; -lean_dec(x_705); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_709 = !lean_is_exclusive(x_706); -if (x_709 == 0) +if (lean_obj_tag(x_709) == 0) { lean_object* x_710; -x_710 = lean_ctor_get(x_706, 0); -lean_dec(x_710); -lean_ctor_set(x_706, 0, x_3); -return x_706; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_710 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_710, 0, x_3); +lean_ctor_set(x_710, 1, x_12); +return x_710; } else { -lean_object* x_711; lean_object* x_712; -x_711 = lean_ctor_get(x_706, 1); +lean_object* x_711; lean_object* x_712; lean_object* x_713; +x_711 = lean_ctor_get(x_709, 0); lean_inc(x_711); -lean_dec(x_706); -x_712 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_712, 0, x_3); -lean_ctor_set(x_712, 1, x_711); -return x_712; -} -} -else +lean_dec(x_709); +x_712 = lean_unsigned_to_nat(0u); +x_713 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_712); +if (lean_obj_tag(x_713) == 0) { -lean_object* x_713; lean_object* x_714; -x_713 = lean_ctor_get(x_706, 1); -lean_inc(x_713); -lean_dec(x_706); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_705); -lean_inc(x_1); -x_714 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_705, x_8, x_9, x_10, x_11, x_713); -if (lean_obj_tag(x_714) == 0) -{ -lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; uint8_t x_723; lean_object* x_724; lean_object* x_752; lean_object* x_753; lean_object* x_754; uint8_t x_755; -x_715 = lean_ctor_get(x_714, 0); -lean_inc(x_715); -x_716 = lean_ctor_get(x_714, 1); -lean_inc(x_716); -lean_dec(x_714); -x_717 = lean_ctor_get(x_715, 1); -lean_inc(x_717); -lean_dec(x_715); -x_718 = lean_box(0); -lean_inc(x_8); -x_719 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_717, x_718, x_8, x_9, x_10, x_11, x_716); -x_720 = lean_ctor_get(x_719, 0); -lean_inc(x_720); -x_721 = lean_ctor_get(x_719, 1); -lean_inc(x_721); -lean_dec(x_719); -x_722 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; -x_752 = lean_st_ref_get(x_11, x_721); -x_753 = lean_ctor_get(x_752, 0); -lean_inc(x_753); -x_754 = lean_ctor_get(x_753, 3); -lean_inc(x_754); -lean_dec(x_753); -x_755 = lean_ctor_get_uint8(x_754, sizeof(void*)*1); -lean_dec(x_754); -if (x_755 == 0) -{ -lean_object* x_756; uint8_t x_757; -x_756 = lean_ctor_get(x_752, 1); -lean_inc(x_756); -lean_dec(x_752); -x_757 = 0; -x_723 = x_757; -x_724 = x_756; -goto block_751; -} -else -{ -lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; uint8_t x_762; -x_758 = lean_ctor_get(x_752, 1); -lean_inc(x_758); -lean_dec(x_752); -x_759 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_722, x_8, x_9, x_10, x_11, x_758); -x_760 = lean_ctor_get(x_759, 0); -lean_inc(x_760); -x_761 = lean_ctor_get(x_759, 1); -lean_inc(x_761); -lean_dec(x_759); -x_762 = lean_unbox(x_760); -lean_dec(x_760); -x_723 = x_762; -x_724 = x_761; -goto block_751; -} -block_751: -{ -if (x_723 == 0) -{ -lean_object* x_725; lean_object* x_726; -x_725 = lean_box(0); -lean_inc(x_3); -x_726 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_720, x_3, x_722, x_1, x_705, x_725, x_8, x_9, x_10, x_11, x_724); -if (lean_obj_tag(x_726) == 0) -{ -lean_dec(x_3); -return x_726; -} -else -{ -uint8_t x_727; -x_727 = !lean_is_exclusive(x_726); -if (x_727 == 0) -{ -lean_object* x_728; -x_728 = lean_ctor_get(x_726, 0); -lean_dec(x_728); -lean_ctor_set_tag(x_726, 0); -lean_ctor_set(x_726, 0, x_3); -return x_726; -} -else -{ -lean_object* x_729; lean_object* x_730; -x_729 = lean_ctor_get(x_726, 1); -lean_inc(x_729); -lean_dec(x_726); -x_730 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_730, 0, x_3); -lean_ctor_set(x_730, 1, x_729); -return x_730; -} -} -} -else -{ -lean_object* x_731; lean_object* x_732; -x_731 = l_Lean_Expr_mvarId_x21(x_720); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -x_732 = l_Lean_Meta_ppGoal(x_731, x_8, x_9, x_10, x_11, x_724); -if (lean_obj_tag(x_732) == 0) -{ -lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; -x_733 = lean_ctor_get(x_732, 0); -lean_inc(x_733); -x_734 = lean_ctor_get(x_732, 1); -lean_inc(x_734); -lean_dec(x_732); -x_735 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_735, 0, x_733); -x_736 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; -x_737 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_737, 0, x_736); -lean_ctor_set(x_737, 1, x_735); -x_738 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_738, 0, x_737); -lean_ctor_set(x_738, 1, x_736); -x_739 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_722, x_738, x_8, x_9, x_10, x_11, x_734); -x_740 = lean_ctor_get(x_739, 0); -lean_inc(x_740); -x_741 = lean_ctor_get(x_739, 1); -lean_inc(x_741); -lean_dec(x_739); -lean_inc(x_3); -x_742 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_720, x_3, x_722, x_1, x_705, x_740, x_8, x_9, x_10, x_11, x_741); -if (lean_obj_tag(x_742) == 0) -{ -lean_dec(x_3); -return x_742; -} -else -{ -uint8_t x_743; -x_743 = !lean_is_exclusive(x_742); -if (x_743 == 0) -{ -lean_object* x_744; -x_744 = lean_ctor_get(x_742, 0); -lean_dec(x_744); -lean_ctor_set_tag(x_742, 0); -lean_ctor_set(x_742, 0, x_3); -return x_742; -} -else -{ -lean_object* x_745; lean_object* x_746; -x_745 = lean_ctor_get(x_742, 1); -lean_inc(x_745); -lean_dec(x_742); -x_746 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_746, 0, x_3); -lean_ctor_set(x_746, 1, x_745); -return x_746; -} -} -} -else -{ -uint8_t x_747; -lean_dec(x_720); -lean_dec(x_705); +lean_object* x_714; +lean_dec(x_711); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); +lean_dec(x_2); lean_dec(x_1); -x_747 = !lean_is_exclusive(x_732); -if (x_747 == 0) -{ -lean_object* x_748; -x_748 = lean_ctor_get(x_732, 0); -lean_dec(x_748); -lean_ctor_set_tag(x_732, 0); -lean_ctor_set(x_732, 0, x_3); -return x_732; -} -else -{ -lean_object* x_749; lean_object* x_750; -x_749 = lean_ctor_get(x_732, 1); -lean_inc(x_749); -lean_dec(x_732); -x_750 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_750, 0, x_3); -lean_ctor_set(x_750, 1, x_749); -return x_750; -} -} -} -} -} -else -{ -uint8_t x_763; -lean_dec(x_705); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_1); -x_763 = !lean_is_exclusive(x_714); -if (x_763 == 0) -{ +x_714 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_714, 0, x_3); +lean_ctor_set(x_714, 1, x_12); return x_714; } else { -lean_object* x_764; lean_object* x_765; lean_object* x_766; -x_764 = lean_ctor_get(x_714, 0); -x_765 = lean_ctor_get(x_714, 1); -lean_inc(x_765); +lean_object* x_715; lean_object* x_716; lean_object* x_717; uint8_t x_718; +x_715 = lean_ctor_get(x_713, 0); +lean_inc(x_715); +lean_dec(x_713); +x_716 = l_Lean_isInductivePredicate___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__1(x_711, x_8, x_9, x_10, x_11, x_12); +x_717 = lean_ctor_get(x_716, 0); +lean_inc(x_717); +x_718 = lean_unbox(x_717); +lean_dec(x_717); +if (x_718 == 0) +{ +uint8_t x_719; +lean_dec(x_715); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_719 = !lean_is_exclusive(x_716); +if (x_719 == 0) +{ +lean_object* x_720; +x_720 = lean_ctor_get(x_716, 0); +lean_dec(x_720); +lean_ctor_set(x_716, 0, x_3); +return x_716; +} +else +{ +lean_object* x_721; lean_object* x_722; +x_721 = lean_ctor_get(x_716, 1); +lean_inc(x_721); +lean_dec(x_716); +x_722 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_722, 0, x_3); +lean_ctor_set(x_722, 1, x_721); +return x_722; +} +} +else +{ +lean_object* x_723; lean_object* x_724; +x_723 = lean_ctor_get(x_716, 1); +lean_inc(x_723); +lean_dec(x_716); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_715); +lean_inc(x_1); +x_724 = l___private_Lean_Meta_IndPredBelow_0__Lean_Meta_IndPredBelow_belowType(x_2, x_1, x_715, x_8, x_9, x_10, x_11, x_723); +if (lean_obj_tag(x_724) == 0) +{ +lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; uint8_t x_733; lean_object* x_734; lean_object* x_763; lean_object* x_764; lean_object* x_765; uint8_t x_766; +x_725 = lean_ctor_get(x_724, 0); +lean_inc(x_725); +x_726 = lean_ctor_get(x_724, 1); +lean_inc(x_726); +lean_dec(x_724); +x_727 = lean_ctor_get(x_725, 1); +lean_inc(x_727); +lean_dec(x_725); +x_728 = lean_box(0); +lean_inc(x_8); +x_729 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_727, x_728, x_8, x_9, x_10, x_11, x_726); +x_730 = lean_ctor_get(x_729, 0); +lean_inc(x_730); +x_731 = lean_ctor_get(x_729, 1); +lean_inc(x_731); +lean_dec(x_729); +x_732 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; +x_763 = lean_st_ref_get(x_11, x_731); +x_764 = lean_ctor_get(x_763, 0); lean_inc(x_764); -lean_dec(x_714); -x_766 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_766, 0, x_764); -lean_ctor_set(x_766, 1, x_765); -return x_766; +x_765 = lean_ctor_get(x_764, 3); +lean_inc(x_765); +lean_dec(x_764); +x_766 = lean_ctor_get_uint8(x_765, sizeof(void*)*1); +lean_dec(x_765); +if (x_766 == 0) +{ +lean_object* x_767; uint8_t x_768; +x_767 = lean_ctor_get(x_763, 1); +lean_inc(x_767); +lean_dec(x_763); +x_768 = 0; +x_733 = x_768; +x_734 = x_767; +goto block_762; +} +else +{ +lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; uint8_t x_773; +x_769 = lean_ctor_get(x_763, 1); +lean_inc(x_769); +lean_dec(x_763); +x_770 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_mkCongrLemma___spec__8(x_732, x_8, x_9, x_10, x_11, x_769); +x_771 = lean_ctor_get(x_770, 0); +lean_inc(x_771); +x_772 = lean_ctor_get(x_770, 1); +lean_inc(x_772); +lean_dec(x_770); +x_773 = lean_unbox(x_771); +lean_dec(x_771); +x_733 = x_773; +x_734 = x_772; +goto block_762; +} +block_762: +{ +if (x_733 == 0) +{ +lean_object* x_735; lean_object* x_736; +x_735 = lean_box(0); +lean_inc(x_3); +x_736 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_730, x_3, x_732, x_1, x_715, x_735, x_8, x_9, x_10, x_11, x_734); +if (lean_obj_tag(x_736) == 0) +{ +lean_dec(x_3); +return x_736; +} +else +{ +uint8_t x_737; +x_737 = !lean_is_exclusive(x_736); +if (x_737 == 0) +{ +lean_object* x_738; +x_738 = lean_ctor_get(x_736, 0); +lean_dec(x_738); +lean_ctor_set_tag(x_736, 0); +lean_ctor_set(x_736, 0, x_3); +return x_736; +} +else +{ +lean_object* x_739; lean_object* x_740; +x_739 = lean_ctor_get(x_736, 1); +lean_inc(x_739); +lean_dec(x_736); +x_740 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_740, 0, x_3); +lean_ctor_set(x_740, 1, x_739); +return x_740; +} +} +} +else +{ +lean_object* x_741; uint8_t x_742; lean_object* x_743; +x_741 = l_Lean_Expr_mvarId_x21(x_730); +x_742 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_743 = l_Lean_Meta_ppGoal(x_741, x_742, x_8, x_9, x_10, x_11, x_734); +if (lean_obj_tag(x_743) == 0) +{ +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; +x_744 = lean_ctor_get(x_743, 0); +lean_inc(x_744); +x_745 = lean_ctor_get(x_743, 1); +lean_inc(x_745); +lean_dec(x_743); +x_746 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_746, 0, x_744); +x_747 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___spec__3___closed__3; +x_748 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_748, 0, x_747); +lean_ctor_set(x_748, 1, x_746); +x_749 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_749, 0, x_748); +lean_ctor_set(x_749, 1, x_747); +x_750 = l_Lean_addTrace___at_Lean_Meta_mkCongrLemma___spec__7(x_732, x_749, x_8, x_9, x_10, x_11, x_745); +x_751 = lean_ctor_get(x_750, 0); +lean_inc(x_751); +x_752 = lean_ctor_get(x_750, 1); +lean_inc(x_752); +lean_dec(x_750); +lean_inc(x_3); +x_753 = l_Lean_Expr_withAppAux___at_Lean_Meta_IndPredBelow_findBelowIdx___spec__3___lambda__2(x_730, x_3, x_732, x_1, x_715, x_751, x_8, x_9, x_10, x_11, x_752); +if (lean_obj_tag(x_753) == 0) +{ +lean_dec(x_3); +return x_753; +} +else +{ +uint8_t x_754; +x_754 = !lean_is_exclusive(x_753); +if (x_754 == 0) +{ +lean_object* x_755; +x_755 = lean_ctor_get(x_753, 0); +lean_dec(x_755); +lean_ctor_set_tag(x_753, 0); +lean_ctor_set(x_753, 0, x_3); +return x_753; +} +else +{ +lean_object* x_756; lean_object* x_757; +x_756 = lean_ctor_get(x_753, 1); +lean_inc(x_756); +lean_dec(x_753); +x_757 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_757, 0, x_3); +lean_ctor_set(x_757, 1, x_756); +return x_757; +} +} +} +else +{ +uint8_t x_758; +lean_dec(x_730); +lean_dec(x_715); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_1); +x_758 = !lean_is_exclusive(x_743); +if (x_758 == 0) +{ +lean_object* x_759; +x_759 = lean_ctor_get(x_743, 0); +lean_dec(x_759); +lean_ctor_set_tag(x_743, 0); +lean_ctor_set(x_743, 0, x_3); +return x_743; +} +else +{ +lean_object* x_760; lean_object* x_761; +x_760 = lean_ctor_get(x_743, 1); +lean_inc(x_760); +lean_dec(x_743); +x_761 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_761, 0, x_3); +lean_ctor_set(x_761, 1, x_760); +return x_761; +} +} +} +} +} +else +{ +uint8_t x_774; +lean_dec(x_715); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +x_774 = !lean_is_exclusive(x_724); +if (x_774 == 0) +{ +return x_724; +} +else +{ +lean_object* x_775; lean_object* x_776; lean_object* x_777; +x_775 = lean_ctor_get(x_724, 0); +x_776 = lean_ctor_get(x_724, 1); +lean_inc(x_776); +lean_inc(x_775); +lean_dec(x_724); +x_777 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_777, 0, x_775); +lean_ctor_set(x_777, 1, x_776); +return x_777; } } } diff --git a/stage0/stdlib/Lean/Meta/PPGoal.c b/stage0/stdlib/Lean/Meta/PPGoal.c index ab5f8262c9..040d0b33c7 100644 --- a/stage0/stdlib/Lean/Meta/PPGoal.c +++ b/stage0/stdlib/Lean/Meta/PPGoal.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.PPGoal -// Imports: Init Lean.Meta.InferType +// Imports: Init Lean.Meta.InferType Lean.Meta.MatchUtil #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -55,7 +55,6 @@ lean_object* l_Lean_Meta_ppGoal_ppVars___boxed(lean_object*, lean_object*, lean_ uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__33(lean_object*, lean_object*, size_t, size_t); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Meta_ToHide_visitVisibleExpr_visit___spec__1(lean_object*, lean_object*); uint8_t l_Std_PersistentArray_anyMAux___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__11(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_ppGoal___lambda__1___closed__5; lean_object* l_Lean_Meta_pp_inaccessibleNames; lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at_Lean_Meta_ToHide_hasVisibleDep___spec__36(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_ToHide_isMarked___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -70,6 +69,7 @@ lean_object* l_Lean_Meta_ToHide_State_hiddenInaccessible___default; lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_sub(size_t, size_t); lean_object* l_Lean_Meta_ppExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal_match__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_Meta_ppGoal___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); @@ -88,7 +88,7 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__35(le lean_object* l_Lean_Meta_ToHide_collect_match__1___rarg(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__17___boxed(lean_object*, lean_object*); lean_object* l_Std_mkHashMap___at_Lean_Meta_ToHide_visitVisibleExpr___spec__1___boxed(lean_object*); -lean_object* l_Lean_Meta_ppGoal_match__3___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__17(lean_object*, lean_object*); lean_object* l_Lean_Meta_withPPInaccessibleNames___rarg___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -115,7 +115,7 @@ lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_de lean_object* l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__3___boxed(lean_object*, lean_object*); uint8_t l_Std_PersistentArray_anyMAux___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__4(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_Meta_ppGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_ppGoal_pushPending___closed__4; lean_object* l_Lean_Meta_ToHide_moveToHiddeProp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_PersistentArray_anyMAux___at_Lean_Meta_ToHide_hasVisibleDep___spec__11(lean_object*, lean_object*); @@ -172,12 +172,12 @@ static lean_object* l_Lean_Meta_ppGoal___lambda__1___closed__1; lean_object* l_Std_RBNode_appendTrees___rarg(lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__28(lean_object*, lean_object*, size_t, size_t); lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_ppGoal___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_balRight___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_RBNode_isBlack___rarg(lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__31(lean_object*, lean_object*); uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); -lean_object* l_Lean_Meta_ppGoal_match__4___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal_match__4___rarg(lean_object*, lean_object*); uint8_t l_Lean_Option_get___at_Lean_ppExpr___spec__1(lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_Meta_ppGoal___spec__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_Meta_ppGoal___spec__11(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -194,7 +194,6 @@ lean_object* l_Lean_Meta_ppGoal_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_ToHide_fixpointStep_match__1(lean_object*); extern lean_object* l_Lean_Expr_instHashableExpr; uint64_t l_Lean_Expr_hash(lean_object*); -static lean_object* l_Lean_Meta_ppGoal___lambda__1___closed__6; uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__26(lean_object*, lean_object*, size_t, size_t); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_PPGoal___hyg_4____closed__6; uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__27(lean_object*, lean_object*, size_t, size_t); @@ -231,7 +230,7 @@ extern lean_object* l_Lean_NameSet_empty; lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visitMain___at_Lean_Meta_ToHide_hasVisibleDep___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_ppGoal___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_ppGoal___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__3___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visitMain___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); @@ -241,6 +240,7 @@ size_t l_USize_land(size_t, size_t); lean_object* l_Lean_LocalDecl_fvarId(lean_object*); lean_object* l_Lean_Meta_ToHide_visitVisibleExpr_visit_match__1(lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__21(lean_object*, lean_object*, size_t, size_t); +lean_object* l_Lean_Meta_matchEq_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__10(lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visitMain___at_Lean_Meta_ToHide_hasVisibleDep___spec__16(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_ppGoal_ppVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -273,6 +273,7 @@ lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_de lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); +static lean_object* l_Lean_Meta_ppGoal___lambda__2___closed__2; lean_object* l_Lean_Meta_withPPInaccessibleNamesImp(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_ppGoal___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__38___boxed(lean_object*, lean_object*); @@ -287,16 +288,20 @@ lean_object* l_Std_PersistentArray_foldlM___at_Lean_Meta_ppGoal___spec__2___boxe lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withPPInaccessibleNamesImp___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_ppGoal___spec__13___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*); +static lean_object* l_Lean_Meta_ppGoal___lambda__2___closed__1; lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__38(lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visitMain___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__29(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_ToHide_fixpointStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_PPGoal___hyg_4____closed__2; +lean_object* l_Lean_Meta_ppGoal___lambda__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__41(lean_object*, lean_object*, size_t, size_t); uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__12(lean_object*, lean_object*, size_t, size_t); lean_object* l_Std_PersistentArray_anyMAux___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__4___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal_match__5(lean_object*); lean_object* l_Lean_LocalContext_foldlM___at_Lean_Meta_ppGoal___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Option_setIfNotSet___at_Lean_Meta_withPPInaccessibleNamesImp___spec__1(lean_object*, lean_object*, uint8_t); lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_672____at_Lean_Meta_ppGoal_ppVars___spec__1___boxed(lean_object*, lean_object*); @@ -331,6 +336,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_ToHide_fixpointStep___spec lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Option_set___at_Lean_Meta_withPPInaccessibleNamesImp___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withPPInaccessibleNames(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_instBEqExpr; @@ -14340,6 +14346,46 @@ _start: { if (lean_obj_tag(x_1) == 0) { +lean_object* x_4; +lean_dec(x_2); +x_4 = lean_apply_1(x_3, x_1); +return x_4; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_dec(x_3); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec(x_1); +x_6 = lean_ctor_get(x_5, 1); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +lean_dec(x_5); +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_9); +lean_dec(x_6); +x_10 = lean_apply_3(x_2, x_7, x_8, x_9); +return x_10; +} +} +} +lean_object* l_Lean_Meta_ppGoal_match__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal_match__2___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Meta_ppGoal_match__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ lean_object* x_4; lean_object* x_5; lean_dec(x_3); x_4 = lean_box(0); @@ -14355,15 +14401,15 @@ return x_6; } } } -lean_object* l_Lean_Meta_ppGoal_match__2(lean_object* x_1) { +lean_object* l_Lean_Meta_ppGoal_match__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal_match__2___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal_match__3___rarg), 3, 0); return x_2; } } -lean_object* l_Lean_Meta_ppGoal_match__3___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Meta_ppGoal_match__4___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -14376,15 +14422,15 @@ x_5 = lean_apply_2(x_2, x_3, x_4); return x_5; } } -lean_object* l_Lean_Meta_ppGoal_match__3(lean_object* x_1) { +lean_object* l_Lean_Meta_ppGoal_match__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal_match__3___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal_match__4___rarg), 2, 0); return x_2; } } -lean_object* l_Lean_Meta_ppGoal_match__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Meta_ppGoal_match__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -14407,11 +14453,11 @@ return x_7; } } } -lean_object* l_Lean_Meta_ppGoal_match__4(lean_object* x_1) { +lean_object* l_Lean_Meta_ppGoal_match__5(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal_match__4___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal_match__5___rarg), 3, 0); return x_2; } } @@ -20454,32 +20500,26 @@ return x_2; static lean_object* _init_l_Lean_Meta_ppGoal___lambda__1___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = lean_box(0); -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; +lean_object* x_1; +x_1 = lean_mk_string("⊢ "); +return x_1; } } static lean_object* _init_l_Lean_Meta_ppGoal___lambda__1___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Meta_ppGoal___lambda__1___closed__1; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_ppGoal___lambda__1___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_Meta_ppGoal___lambda__1___closed__3() { _start: { lean_object* x_1; -x_1 = lean_mk_string("⊢ "); +x_1 = lean_mk_string("case "); return x_1; } } @@ -20493,309 +20533,441 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_ppGoal___lambda__1___closed__5() { +lean_object* l_Lean_Meta_ppGoal___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_1; -x_1 = lean_mk_string("case "); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_ppGoal___lambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_ppGoal___lambda__1___closed__5; -x_2 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -lean_object* l_Lean_Meta_ppGoal___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_1); -x_11 = l_Lean_Meta_ToHide_collect(x_1, x_6, x_7, x_8, x_9, x_10); -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; lean_object* x_17; lean_object* x_18; -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec(x_11); -x_14 = lean_ctor_get(x_12, 0); +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_Meta_ppGoal___lambda__1___closed__2; +x_11 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_10); +x_12 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_4); +x_13 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = lean_ctor_get(x_3, 0); lean_inc(x_14); -x_15 = lean_ctor_get(x_12, 1); -lean_inc(x_15); -lean_dec(x_12); -x_16 = l_Lean_Meta_ppGoal___lambda__1___closed__2; -x_17 = lean_unsigned_to_nat(0u); +lean_dec(x_3); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_9); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_16 = lean_erase_macro_scopes(x_14); +x_17 = 1; +x_18 = l_Lean_Name_toString(x_16, x_17); +x_19 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = l_Lean_Meta_ppGoal___lambda__1___closed__4; +x_21 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +x_22 = lean_box(1); +x_23 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_13); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_9); +return x_25; +} +} +} +static lean_object* _init_l_Lean_Meta_ppGoal___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_box(0); +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_Meta_ppGoal___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_ppGoal___lambda__2___closed__1; +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; +} +} +lean_object* l_Lean_Meta_ppGoal___lambda__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_2); -x_18 = l_Lean_LocalContext_foldlM___at_Lean_Meta_ppGoal___spec__1(x_2, x_3, x_14, x_15, x_4, x_16, x_17, x_6, x_7, x_8, x_9, x_13); -lean_dec(x_15); -lean_dec(x_14); -if (lean_obj_tag(x_18) == 0) +lean_inc(x_1); +x_12 = l_Lean_Meta_ToHide_collect(x_1, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_19, 1); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_17 = l_Lean_Meta_ppGoal___lambda__2___closed__2; +x_18 = lean_unsigned_to_nat(0u); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_2); +x_19 = l_Lean_LocalContext_foldlM___at_Lean_Meta_ppGoal___spec__1(x_2, x_3, x_15, x_16, x_4, x_17, x_18, x_7, x_8, x_9, x_10, x_14); +lean_dec(x_16); +lean_dec(x_15); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); -x_21 = lean_ctor_get(x_18, 1); +x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); -lean_dec(x_18); -x_22 = lean_ctor_get(x_19, 0); +x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); x_23 = lean_ctor_get(x_20, 0); lean_inc(x_23); -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); lean_dec(x_20); +x_24 = lean_ctor_get(x_21, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_21, 1); +lean_inc(x_25); +lean_dec(x_21); lean_inc(x_2); -x_25 = l_Lean_Meta_ppGoal_pushPending(x_2, x_22, x_23, x_24, x_6, x_7, x_8, x_9, x_21); -if (lean_obj_tag(x_25) == 0) +x_26 = l_Lean_Meta_ppGoal_pushPending(x_2, x_23, x_24, x_25, x_7, x_8, x_9, x_10, x_22); +if (lean_obj_tag(x_26) == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_25, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_25); -x_28 = l___private_Lean_Meta_PPGoal_0__Lean_Meta_addLine(x_26); -x_29 = l_Lean_Meta_ppExpr(x_1, x_6, x_7, x_8, x_9, x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l___private_Lean_Meta_PPGoal_0__Lean_Meta_addLine(x_27); +if (x_6 == 0) +{ +lean_object* x_30; +x_30 = l_Lean_Meta_ppExpr(x_1, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +lean_dec(x_30); +x_33 = l_Lean_Meta_ppGoal___lambda__1(x_29, x_2, x_5, x_31, x_7, x_8, x_9, x_10, x_32); +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -if (lean_obj_tag(x_29) == 0) +return x_33; +} +else { -uint8_t x_30; -x_30 = !lean_is_exclusive(x_29); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_31 = lean_ctor_get(x_29, 0); -x_32 = l_Lean_Meta_ppGoal___lambda__1___closed__4; -x_33 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_33, 0, x_28); -lean_ctor_set(x_33, 1, x_32); -x_34 = lean_alloc_ctor(3, 2, 0); -lean_ctor_set(x_34, 0, x_2); -lean_ctor_set(x_34, 1, x_31); -x_35 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -x_36 = lean_ctor_get(x_5, 0); -lean_inc(x_36); +uint8_t x_34; +lean_dec(x_29); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); lean_dec(x_5); -if (lean_obj_tag(x_36) == 0) +lean_dec(x_2); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) { -lean_ctor_set(x_29, 0, x_35); -return x_29; +return x_30; } else { -lean_object* 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; -x_37 = lean_erase_macro_scopes(x_36); -x_38 = 1; -x_39 = l_Lean_Name_toString(x_37, x_38); -x_40 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_40, 0, x_39); -x_41 = l_Lean_Meta_ppGoal___lambda__1___closed__6; -x_42 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_40); -x_43 = lean_box(1); -x_44 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -x_45 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_35); -lean_ctor_set(x_29, 0, x_45); -return x_29; +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_30, 0); +x_36 = lean_ctor_get(x_30, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_30); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} } } else { -lean_object* x_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_46 = lean_ctor_get(x_29, 0); -x_47 = lean_ctor_get(x_29, 1); +lean_object* x_38; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_38 = l_Lean_Meta_matchEq_x3f(x_1, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +lean_dec(x_38); +x_41 = l_Lean_Meta_ppExpr(x_1, x_7, x_8, x_9, x_10, x_40); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); +lean_inc(x_43); +lean_dec(x_41); +x_44 = l_Lean_Meta_ppGoal___lambda__1(x_29, x_2, x_5, x_42, x_7, x_8, x_9, x_10, x_43); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +return x_44; +} +else +{ +uint8_t x_45; +lean_dec(x_29); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_2); +x_45 = !lean_is_exclusive(x_41); +if (x_45 == 0) +{ +return x_41; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_41, 0); +x_47 = lean_ctor_get(x_41, 1); lean_inc(x_47); lean_inc(x_46); -lean_dec(x_29); -x_48 = l_Lean_Meta_ppGoal___lambda__1___closed__4; -x_49 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_49, 0, x_28); -lean_ctor_set(x_49, 1, x_48); -x_50 = lean_alloc_ctor(3, 2, 0); -lean_ctor_set(x_50, 0, x_2); -lean_ctor_set(x_50, 1, x_46); -x_51 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_51, 0, x_49); -lean_ctor_set(x_51, 1, x_50); -x_52 = lean_ctor_get(x_5, 0); -lean_inc(x_52); -lean_dec(x_5); -if (lean_obj_tag(x_52) == 0) +lean_dec(x_41); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; +} +} +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +lean_dec(x_1); +x_49 = lean_ctor_get(x_39, 0); +lean_inc(x_49); +lean_dec(x_39); +x_50 = lean_ctor_get(x_49, 1); +lean_inc(x_50); +lean_dec(x_49); +x_51 = lean_ctor_get(x_38, 1); +lean_inc(x_51); +lean_dec(x_38); +x_52 = lean_ctor_get(x_50, 0); +lean_inc(x_52); +lean_dec(x_50); +x_53 = l_Lean_Meta_ppExpr(x_52, x_7, x_8, x_9, x_10, x_51); +if (lean_obj_tag(x_53) == 0) +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_53, 1); +lean_inc(x_55); +lean_dec(x_53); +x_56 = l_Lean_Meta_ppGoal___lambda__1(x_29, x_2, x_5, x_54, x_7, x_8, x_9, x_10, x_55); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +return x_56; +} +else +{ +uint8_t x_57; +lean_dec(x_29); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_2); +x_57 = !lean_is_exclusive(x_53); +if (x_57 == 0) { -lean_object* x_53; -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_47); return x_53; } else { -lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_54 = lean_erase_macro_scopes(x_52); -x_55 = 1; -x_56 = l_Lean_Name_toString(x_54, x_55); -x_57 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_57, 0, x_56); -x_58 = l_Lean_Meta_ppGoal___lambda__1___closed__6; -x_59 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_57); -x_60 = lean_box(1); -x_61 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -x_62 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_51); -x_63 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_47); -return x_63; +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_53, 0); +x_59 = lean_ctor_get(x_53, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_53); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); +return x_60; +} } } } else { -uint8_t x_64; -lean_dec(x_28); -lean_dec(x_5); -lean_dec(x_2); -x_64 = !lean_is_exclusive(x_29); -if (x_64 == 0) -{ -return x_29; -} -else -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_29, 0); -x_66 = lean_ctor_get(x_29, 1); -lean_inc(x_66); -lean_inc(x_65); +uint8_t x_61; lean_dec(x_29); -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; -} -} -} -else -{ -uint8_t x_68; +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); -x_68 = !lean_is_exclusive(x_25); -if (x_68 == 0) +x_61 = !lean_is_exclusive(x_38); +if (x_61 == 0) { -return x_25; +return x_38; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_25, 0); -x_70 = lean_ctor_get(x_25, 1); +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_38, 0); +x_63 = lean_ctor_get(x_38, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_38); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; +} +} +} +} +else +{ +uint8_t x_65; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_65 = !lean_is_exclusive(x_26); +if (x_65 == 0) +{ +return x_26; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_26, 0); +x_67 = lean_ctor_get(x_26, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_26); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_67); +return x_68; +} +} +} +else +{ +uint8_t x_69; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +x_69 = !lean_is_exclusive(x_19); +if (x_69 == 0) +{ +return x_19; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_70 = lean_ctor_get(x_19, 0); +x_71 = lean_ctor_get(x_19, 1); +lean_inc(x_71); lean_inc(x_70); -lean_inc(x_69); -lean_dec(x_25); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -return x_71; +lean_dec(x_19); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +return x_72; } } } else { -uint8_t x_72; +uint8_t x_73; +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_72 = !lean_is_exclusive(x_18); -if (x_72 == 0) -{ -return x_18; -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_18, 0); -x_74 = lean_ctor_get(x_18, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_18); -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; -} -} -} -else -{ -uint8_t x_76; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_76 = !lean_is_exclusive(x_11); -if (x_76 == 0) +x_73 = !lean_is_exclusive(x_12); +if (x_73 == 0) { -return x_11; +return x_12; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_11, 0); -x_78 = lean_ctor_get(x_11, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_11); -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; +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_12, 0); +x_75 = lean_ctor_get(x_12, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_12); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +return x_76; } } } @@ -20827,136 +20999,140 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -lean_object* l_Lean_Meta_ppGoal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_Meta_ppGoal(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_7 = lean_st_ref_get(x_5, x_6); -x_8 = lean_ctor_get(x_7, 1); -lean_inc(x_8); -lean_dec(x_7); -x_9 = lean_st_ref_get(x_3, x_8); -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = lean_st_ref_get(x_6, x_7); +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_st_ref_get(x_4, x_9); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_ctor_get(x_9, 0); -x_12 = lean_ctor_get(x_9, 1); -x_13 = lean_ctor_get(x_11, 0); -lean_inc(x_13); -lean_dec(x_11); -x_14 = l_Lean_MetavarContext_findDecl_x3f(x_13, x_1); -if (lean_obj_tag(x_14) == 0) +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_MetavarContext_findDecl_x3f(x_14, x_1); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_15; +lean_object* x_16; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_15 = l_Lean_Meta_ppGoal___closed__2; -lean_ctor_set(x_9, 0, x_15); -return x_9; +x_16 = l_Lean_Meta_ppGoal___closed__2; +lean_ctor_set(x_10, 0, x_16); +return x_10; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_free_object(x_9); -x_16 = lean_ctor_get(x_14, 0); -lean_inc(x_16); -lean_dec(x_14); -x_17 = lean_ctor_get(x_4, 0); +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_free_object(x_10); +x_17 = lean_ctor_get(x_15, 0); lean_inc(x_17); -x_18 = l_Lean_Meta_pp_auxDecls; -x_19 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_17, x_18); -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -x_21 = lean_box(0); -x_22 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_22, 0, x_17); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_22, 2, x_21); -x_23 = l_Lean_LocalContext_sanitizeNames(x_20, x_22); -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -lean_dec(x_23); -x_25 = lean_ctor_get(x_16, 4); +lean_dec(x_15); +x_18 = lean_ctor_get(x_5, 0); +lean_inc(x_18); +x_19 = l_Lean_Meta_pp_auxDecls; +x_20 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_18, x_19); +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_23, 0, x_18); +lean_ctor_set(x_23, 1, x_22); +lean_ctor_set(x_23, 2, x_22); +x_24 = l_Lean_LocalContext_sanitizeNames(x_21, x_23); +x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); -x_26 = lean_ctor_get(x_16, 2); +lean_dec(x_24); +x_26 = lean_ctor_get(x_17, 4); lean_inc(x_26); -x_27 = l_Lean_Meta_ppGoal___closed__3; -x_28 = lean_box(x_19); -lean_inc(x_24); -x_29 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal___lambda__1___boxed), 10, 5); -lean_closure_set(x_29, 0, x_26); -lean_closure_set(x_29, 1, x_27); -lean_closure_set(x_29, 2, x_28); -lean_closure_set(x_29, 3, x_24); -lean_closure_set(x_29, 4, x_16); -x_30 = l_Lean_Meta_withLCtx___at_Lean_Meta_ppGoal___spec__15___rarg(x_24, x_25, x_29, x_2, x_3, x_4, x_5, x_12); -return x_30; +x_27 = lean_ctor_get(x_17, 2); +lean_inc(x_27); +x_28 = l_Lean_Meta_ppGoal___closed__3; +x_29 = lean_box(x_20); +x_30 = lean_box(x_2); +lean_inc(x_25); +x_31 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal___lambda__2___boxed), 11, 6); +lean_closure_set(x_31, 0, x_27); +lean_closure_set(x_31, 1, x_28); +lean_closure_set(x_31, 2, x_29); +lean_closure_set(x_31, 3, x_25); +lean_closure_set(x_31, 4, x_17); +lean_closure_set(x_31, 5, x_30); +x_32 = l_Lean_Meta_withLCtx___at_Lean_Meta_ppGoal___spec__15___rarg(x_25, x_26, x_31, x_3, x_4, x_5, x_6, x_13); +return x_32; } } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_31 = lean_ctor_get(x_9, 0); -x_32 = lean_ctor_get(x_9, 1); -lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_9); -x_33 = lean_ctor_get(x_31, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_10, 0); +x_34 = lean_ctor_get(x_10, 1); +lean_inc(x_34); lean_inc(x_33); -lean_dec(x_31); -x_34 = l_Lean_MetavarContext_findDecl_x3f(x_33, x_1); -if (lean_obj_tag(x_34) == 0) +lean_dec(x_10); +x_35 = lean_ctor_get(x_33, 0); +lean_inc(x_35); +lean_dec(x_33); +x_36 = l_Lean_MetavarContext_findDecl_x3f(x_35, x_1); +if (lean_obj_tag(x_36) == 0) { -lean_object* x_35; lean_object* x_36; +lean_object* x_37; lean_object* x_38; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_35 = l_Lean_Meta_ppGoal___closed__2; -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_32); -return x_36; +x_37 = l_Lean_Meta_ppGoal___closed__2; +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_34); +return x_38; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t 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; -x_37 = lean_ctor_get(x_34, 0); -lean_inc(x_37); -lean_dec(x_34); -x_38 = lean_ctor_get(x_4, 0); -lean_inc(x_38); -x_39 = l_Lean_Meta_pp_auxDecls; -x_40 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_38, x_39); -x_41 = lean_ctor_get(x_37, 1); -lean_inc(x_41); -x_42 = lean_box(0); -x_43 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_43, 0, x_38); -lean_ctor_set(x_43, 1, x_42); -lean_ctor_set(x_43, 2, x_42); -x_44 = l_Lean_LocalContext_sanitizeNames(x_41, x_43); -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -lean_dec(x_44); -x_46 = lean_ctor_get(x_37, 4); -lean_inc(x_46); -x_47 = lean_ctor_get(x_37, 2); +lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_39 = lean_ctor_get(x_36, 0); +lean_inc(x_39); +lean_dec(x_36); +x_40 = lean_ctor_get(x_5, 0); +lean_inc(x_40); +x_41 = l_Lean_Meta_pp_auxDecls; +x_42 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_40, x_41); +x_43 = lean_ctor_get(x_39, 1); +lean_inc(x_43); +x_44 = lean_box(0); +x_45 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_45, 0, x_40); +lean_ctor_set(x_45, 1, x_44); +lean_ctor_set(x_45, 2, x_44); +x_46 = l_Lean_LocalContext_sanitizeNames(x_43, x_45); +x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); -x_48 = l_Lean_Meta_ppGoal___closed__3; -x_49 = lean_box(x_40); -lean_inc(x_45); -x_50 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal___lambda__1___boxed), 10, 5); -lean_closure_set(x_50, 0, x_47); -lean_closure_set(x_50, 1, x_48); -lean_closure_set(x_50, 2, x_49); -lean_closure_set(x_50, 3, x_45); -lean_closure_set(x_50, 4, x_37); -x_51 = l_Lean_Meta_withLCtx___at_Lean_Meta_ppGoal___spec__15___rarg(x_45, x_46, x_50, x_2, x_3, x_4, x_5, x_32); -return x_51; +lean_dec(x_46); +x_48 = lean_ctor_get(x_39, 4); +lean_inc(x_48); +x_49 = lean_ctor_get(x_39, 2); +lean_inc(x_49); +x_50 = l_Lean_Meta_ppGoal___closed__3; +x_51 = lean_box(x_42); +x_52 = lean_box(x_2); +lean_inc(x_47); +x_53 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal___lambda__2___boxed), 11, 6); +lean_closure_set(x_53, 0, x_49); +lean_closure_set(x_53, 1, x_50); +lean_closure_set(x_53, 2, x_51); +lean_closure_set(x_53, 3, x_47); +lean_closure_set(x_53, 4, x_39); +lean_closure_set(x_53, 5, x_52); +x_54 = l_Lean_Meta_withLCtx___at_Lean_Meta_ppGoal___spec__15___rarg(x_47, x_48, x_53, x_3, x_4, x_5, x_6, x_34); +return x_54; } } } @@ -21179,18 +21355,43 @@ lean_dec(x_3); return x_14; } } -lean_object* l_Lean_Meta_ppGoal___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* l_Lean_Meta_ppGoal___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_3); +lean_object* x_10; +x_10 = l_Lean_Meta_ppGoal___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_10; +} +} +lean_object* l_Lean_Meta_ppGoal___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; uint8_t x_13; lean_object* x_14; +x_12 = lean_unbox(x_3); lean_dec(x_3); -x_12 = l_Lean_Meta_ppGoal___lambda__1(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; +x_13 = lean_unbox(x_6); +lean_dec(x_6); +x_14 = l_Lean_Meta_ppGoal___lambda__2(x_1, x_2, x_12, x_4, x_5, x_13, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} +lean_object* l_Lean_Meta_ppGoal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_2); +lean_dec(x_2); +x_9 = l_Lean_Meta_ppGoal(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; } } lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Meta_InferType(lean_object*); +lean_object* initialize_Lean_Meta_MatchUtil(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Meta_PPGoal(lean_object* w) { lean_object * res; @@ -21202,6 +21403,9 @@ lean_dec_ref(res); res = initialize_Lean_Meta_InferType(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_MatchUtil(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Meta_initFn____x40_Lean_Meta_PPGoal___hyg_4____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_PPGoal___hyg_4____closed__1(); lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_PPGoal___hyg_4____closed__1); l_Lean_Meta_initFn____x40_Lean_Meta_PPGoal___hyg_4____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_PPGoal___hyg_4____closed__2(); @@ -21273,10 +21477,10 @@ l_Lean_Meta_ppGoal___lambda__1___closed__3 = _init_l_Lean_Meta_ppGoal___lambda__ lean_mark_persistent(l_Lean_Meta_ppGoal___lambda__1___closed__3); l_Lean_Meta_ppGoal___lambda__1___closed__4 = _init_l_Lean_Meta_ppGoal___lambda__1___closed__4(); lean_mark_persistent(l_Lean_Meta_ppGoal___lambda__1___closed__4); -l_Lean_Meta_ppGoal___lambda__1___closed__5 = _init_l_Lean_Meta_ppGoal___lambda__1___closed__5(); -lean_mark_persistent(l_Lean_Meta_ppGoal___lambda__1___closed__5); -l_Lean_Meta_ppGoal___lambda__1___closed__6 = _init_l_Lean_Meta_ppGoal___lambda__1___closed__6(); -lean_mark_persistent(l_Lean_Meta_ppGoal___lambda__1___closed__6); +l_Lean_Meta_ppGoal___lambda__2___closed__1 = _init_l_Lean_Meta_ppGoal___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_ppGoal___lambda__2___closed__1); +l_Lean_Meta_ppGoal___lambda__2___closed__2 = _init_l_Lean_Meta_ppGoal___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_ppGoal___lambda__2___closed__2); l_Lean_Meta_ppGoal___closed__1 = _init_l_Lean_Meta_ppGoal___closed__1(); lean_mark_persistent(l_Lean_Meta_ppGoal___closed__1); l_Lean_Meta_ppGoal___closed__2 = _init_l_Lean_Meta_ppGoal___closed__2(); diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index be6ad8b1cd..23148a1d5b 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -139,6 +139,7 @@ lean_object* l_Lean_Parser_Term_proj_parenthesizer(lean_object*, lean_object*, l lean_object* l_Lean_Parser_Term_letRecDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_letrec_formatter___closed__9; static lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__22; lean_object* l___regBuiltin_Lean_Parser_Term_explicit_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_noindex___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_trailing__parser___elambda__1___closed__4; @@ -153,7 +154,6 @@ static lean_object* l_Lean_Parser_Term_optEllipsis___closed__1; static lean_object* l_Lean_Parser_Term_structInst___closed__10; static lean_object* l_Lean_Parser_Term_let__fun___elambda__1___closed__14; static lean_object* l_Lean_Parser_Term_fromTerm___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__21; static lean_object* l_Lean_Parser_Term_leading__parser___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__6; @@ -259,6 +259,7 @@ lean_object* l_Lean_Parser_Term_proj; static lean_object* l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__23; lean_object* l_Lean_Parser_Term_funImplicitBinder; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__15; static lean_object* l_Lean_Parser_Tactic_quotSeq___closed__6; static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter___closed__5; @@ -290,6 +291,7 @@ static lean_object* l_Lean_Parser_Term_trailing__parser___elambda__1___closed__8 static lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__4; lean_object* l_Lean_Parser_Term_binderType_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_optIdent___closed__5; static lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_show___elambda__1___closed__5; @@ -298,6 +300,7 @@ lean_object* l_Lean_Parser_Term_fun_formatter(lean_object*, lean_object*, lean_o static lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_letDecl___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Term_assert_formatter___closed__1; +static lean_object* l_Lean_Parser_Term_conv_quot___closed__3; lean_object* l_Lean_Parser_Term_letDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_explicitUniv_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_match_parenthesizer(lean_object*); @@ -314,6 +317,7 @@ static lean_object* l_Lean_Parser_Term_syntheticHole_formatter___closed__3; static lean_object* l_Lean_Parser_Term_argument___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_arrow___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__22; +static lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Term_inaccessible___closed__1; static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket_formatter___closed__3; static lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__6; @@ -369,6 +373,7 @@ static lean_object* l_Lean_Parser_Term_type___closed__3; lean_object* l_Lean_Parser_Term_attributes___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_fun_formatter___closed__3; static lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__7; +static lean_object* l_Lean_Parser_Term_conv_quot___closed__8; static lean_object* l_Lean_Parser_Term_matchDiscr_formatter___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_panic_formatter___closed__2; @@ -395,7 +400,6 @@ lean_object* l_Lean_Parser_Term_completion_parenthesizer(lean_object*, lean_obje lean_object* l_Lean_PrettyPrinter_Parenthesizer_lookahead_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_argument___closed__7; static lean_object* l_Lean_Parser_Term_inaccessible___closed__9; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__23; static lean_object* l_Lean_Parser_Term_char___closed__3; static lean_object* l_Lean_Parser_Term_strictImplicitRightBracket_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Term_pipeProj_parenthesizer___closed__2; @@ -448,6 +452,7 @@ static lean_object* l_Lean_Parser_Term_show___elambda__1___closed__8; lean_object* l_Lean_Parser_sepBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_completion_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_instBinder_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_match; lean_object* l_Lean_Parser_Term_depArrow; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__6; @@ -463,6 +468,7 @@ lean_object* l_Lean_Parser_Tactic_quot_parenthesizer(lean_object*, lean_object*, static lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__9; static lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__22; static lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__10; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__16; static lean_object* l_Lean_Parser_Term_have___closed__2; static lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__18; static lean_object* l_Lean_Parser_Term_funBinder_quot___closed__8; @@ -480,11 +486,13 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_panic_formatter___closed__1; static lean_object* l_Lean_Parser_Term_ident_parenthesizer___closed__1; lean_object* l_Lean_Parser_symbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_charLit; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__5; static lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Term_match___elambda__1___closed__21; static lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__15; static lean_object* l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_inaccessible___closed__4; +static lean_object* l_Lean_Parser_Term_conv_quot___closed__5; static lean_object* l_Lean_Parser_Term_trueVal___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_match_formatter___closed__3; static lean_object* l_Lean_Parser_Term_subst_parenthesizer___closed__2; @@ -493,7 +501,6 @@ lean_object* l_Lean_Parser_Term_funStrictImplicitBinder; static lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__14; static lean_object* l___regBuiltin_Lean_Parser_Term_scientific_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_show___elambda__1___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__33; static lean_object* l_Lean_Parser_Term_falseVal___elambda__1___closed__11; static lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_leading__parser; @@ -598,7 +605,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_subst_formatter(lean_object*); lean_object* l_Lean_Parser_Term_letPatDecl; lean_object* l_Lean_Parser_Term_assert; lean_object* l_Lean_Parser_Term_let__delayed_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__13; lean_object* l_Lean_Parser_Term_letrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__5; static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__2; @@ -659,11 +665,13 @@ static lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_letRecDecl_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__9; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__24; static lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Term_funStrictImplicitBinder_formatter___closed__2; extern lean_object* l_Lean_Parser_scientificLit; static lean_object* l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_completion___elambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__21; static lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__11; static lean_object* l___regBuiltin_Lean_Parser_Term_binop_formatter___closed__2; static lean_object* l_Lean_Parser_Term_type___closed__6; @@ -688,7 +696,6 @@ static lean_object* l_Lean_Parser_Term_cdot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_bracketedBinder_quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_anonymousCtor___closed__8; static lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter___closed__7; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__22; static lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_sort___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_ensureExpectedType_parenthesizer___closed__3; @@ -711,6 +718,7 @@ static lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_doubleQuotedName_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_conv_quot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_quotedName___closed__3; static lean_object* l_Lean_Parser_Term_pipeProj___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_subst___closed__6; @@ -818,6 +826,7 @@ lean_object* l_Lean_Parser_Term_nomatch_parenthesizer(lean_object*, lean_object* static lean_object* l_Lean_Parser_Term_ensureExpectedType___closed__8; lean_object* l_Lean_Parser_Term_optExprPrecedence_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_pipeProj_formatter___closed__3; +lean_object* l_Lean_Parser_Term_conv_quot; static lean_object* l_Lean_Parser_Term_scoped_formatter___closed__3; static lean_object* l_Lean_Parser_Term_structInst_formatter___closed__11; static lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__11; @@ -834,6 +843,7 @@ static lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed_ static lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__11; static lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_ellipsis___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__7; static lean_object* l_Lean_Parser_Term_inaccessible_formatter___closed__3; lean_object* l_Lean_Parser_Term_typeOf; static lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__9; @@ -843,6 +853,7 @@ static lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_strictImplicitRightBracket_parenthesizer___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withoutPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_let__delayed_parenthesizer(lean_object*); +static lean_object* l_Lean_Parser_Term_conv_quot___closed__1; lean_object* l_Lean_Parser_Term_attributes_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letRecDecls; @@ -992,6 +1003,7 @@ static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket_formatter___clo static lean_object* l_Lean_Parser_Term_nomatch___closed__7; static lean_object* l_Lean_Parser_Term_byTactic_formatter___closed__2; static lean_object* l_Lean_Parser_Term_forInMacro___closed__5; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__33; static lean_object* l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__17; static lean_object* l_Lean_Parser_Term_generalizingParam_parenthesizer___closed__6; @@ -1064,6 +1076,8 @@ static lean_object* l_Lean_Parser_Term_optExprPrecedence_formatter___closed__1; static lean_object* l_Lean_Parser_Term_sorry_formatter___closed__1; static lean_object* l_Lean_Parser_Term_forall_formatter___closed__12; lean_object* l_Lean_Parser_Term_binderType_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__23; +static lean_object* l_Lean_Parser_Term_conv_quot___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticSeq_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter___closed__1; lean_object* l_Lean_Parser_Term_pipeCompletion_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1108,7 +1122,6 @@ static lean_object* l_Lean_Parser_Term_anonymousCtor___closed__9; static lean_object* l_Lean_Parser_Term_sorry___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Term_noImplicitLambda_formatter___closed__1; static lean_object* l_Lean_Parser_Level_quot_formatter___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__16; static lean_object* l_Lean_Parser_Term_haveIdLhs_parenthesizer___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_fieldIdx_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_haveIdDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1151,9 +1164,9 @@ static lean_object* l_Lean_Parser_Term_matchDiscr_quot___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_paren; static lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_anonymousCtor___closed__1; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_matchDiscr_quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__7; lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_darrow_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_local___elambda__1___closed__12; @@ -1167,9 +1180,9 @@ static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_docComment___elambda__1___lambda__3___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__24; static lean_object* l_Lean_Parser_Term_bracketedBinder_quot_formatter___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Term_typeOf_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__13; static lean_object* l_Lean_Parser_Term_doubleQuotedName_formatter___closed__7; lean_object* l_Lean_Parser_Term_binderType(uint8_t); lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawCh_parenthesizer___boxed(lean_object*, lean_object*); @@ -1258,7 +1271,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_forall_parenthesizer___close static lean_object* l_Lean_Parser_Term_local___closed__1; static lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_paren___closed__7; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__29; static lean_object* l_Lean_Parser_Term_unreachable___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Term_app_formatter___closed__1; static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket___elambda__1___closed__1; @@ -1396,8 +1408,8 @@ lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer(lean_object*, lean_ob static lean_object* l_Lean_Parser_Term_haveIdDecl___closed__8; static lean_object* l_Lean_Parser_Term_structInstLVal___closed__5; lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__30; static lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__20; static lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1405,7 +1417,6 @@ static lean_object* l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__7 static lean_object* l_Lean_Parser_Term_depArrow___closed__8; static lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__15; static lean_object* l_Lean_Parser_Term_completion___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__18; lean_object* l___regBuiltinParser_Lean_Parser_Term_sorry(lean_object*); static lean_object* l_Lean_Parser_Term_nomatch___closed__4; static lean_object* l_Lean_Parser_Term_whereDecls___closed__2; @@ -1434,8 +1445,10 @@ static lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__12 static lean_object* l_Lean_Parser_Term_funBinder_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_explicitUniv_formatter___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Tactic_quot_formatter___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__32; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_quot(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_have_formatter___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__10; lean_object* l_Lean_Parser_Term_bracketedBinder_quot; static lean_object* l___regBuiltin_Lean_Parser_Term_let__delayed_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_trueVal___closed__1; @@ -1450,7 +1463,6 @@ static lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__27; static lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_letRecDecl___closed__6; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__15; static lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__6; static lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__18; static lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer___closed__2; @@ -1514,6 +1526,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1(lean_object*, static lean_object* l_Lean_Parser_Term_sufficesDecl___elambda__1___closed__6; static lean_object* l_Lean_Parser_Term_matchDiscr_quot_formatter___closed__5; static lean_object* l_Lean_Parser_Term_letDecl___closed__13; +lean_object* l_Lean_Parser_Term_conv_quot___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_noindex___closed__8; static lean_object* l_Lean_Parser_Term_matchDiscr_quot_formatter___closed__3; static lean_object* l_Lean_Parser_Term_dbgTrace___closed__9; @@ -1569,6 +1582,7 @@ static lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_num___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__5; static lean_object* l_Lean_Parser_Term_noImplicitLambda_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_argument_formatter___closed__5; @@ -1612,6 +1626,7 @@ static lean_object* l_Lean_Parser_Term_matchDiscr_formatter___closed__7; lean_object* l_Lean_Parser_Term_typeAscription; static lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__14; static lean_object* l_Lean_Parser_Term_simpleBinder___closed__4; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__4; static lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__2; static lean_object* l_Lean_Parser_Tactic_seq1_formatter___closed__1; @@ -1647,6 +1662,7 @@ static lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__23; static lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter___closed__2; static lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__21; static lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__12; +static lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Term_subst_formatter___closed__2; static lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_arrow; @@ -1664,7 +1680,6 @@ static lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_dbgTrace; static lean_object* l_Lean_Parser_Term_dynamicQuot_formatter___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_formatter___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__3; static lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__15; static lean_object* l_Lean_Parser_Term_attributes___closed__3; @@ -1681,6 +1696,7 @@ static lean_object* l_Lean_Parser_Term_scientific___closed__3; lean_object* l_Lean_Parser_Term_noImplicitLambda_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__18; static lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__26; lean_object* l___regBuiltin_Lean_Parser_Term_stateRefT_formatter(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_completion(lean_object*); lean_object* l_Lean_Parser_Term_falseVal_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1718,6 +1734,7 @@ static lean_object* l_Lean_Parser_Term_noindex___closed__4; static lean_object* l_Lean_Parser_Term_noindex_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__16; static lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__11; +lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_match_formatter___closed__8; static lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_funBinder___elambda__1___closed__2; @@ -1750,6 +1767,7 @@ lean_object* l_Lean_Parser_Term_pipeCompletion_formatter(lean_object*, lean_obje static lean_object* l_Lean_Parser_Term_assert___closed__1; static lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__11; static lean_object* l_Lean_Parser_Term_sufficesDecl___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_haveIdLhs___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_whereDecls___closed__8; @@ -1765,7 +1783,6 @@ static lean_object* l_Lean_Parser_Term_proj___closed__4; static lean_object* l_Lean_Parser_Term_char___closed__1; static lean_object* l_Lean_Parser_Term_stateRefT_formatter___closed__1; lean_object* l_Lean_Parser_Term_fun; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__28; static lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__4; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_structInst___closed__4; @@ -1829,7 +1846,6 @@ static lean_object* l_Lean_Parser_Term_doubleQuotedName_parenthesizer___closed__ lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__1; static lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_char_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__25; static lean_object* l_Lean_Parser_Term_binrel___closed__5; @@ -1861,6 +1877,7 @@ static lean_object* l_Lean_Parser_Term_quotedName_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_dynamicQuot_formatter___closed__3; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__12; static lean_object* l_Lean_Parser_Term_falseVal___closed__4; lean_object* l_Lean_Parser_Term_letDecl; lean_object* l_Lean_Parser_scientificLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1883,11 +1900,11 @@ static lean_object* l_Lean_Parser_Term_explicitUniv___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_ensureTypeOf(lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); static lean_object* l_Lean_Parser_Term_arrayRef___closed__7; +static lean_object* l_Lean_Parser_Term_conv_quot___closed__10; static lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__4; static lean_object* l_Lean_Parser_Term_typeOf_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_sort; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__14; lean_object* l_Lean_Parser_strLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; @@ -1895,6 +1912,7 @@ static lean_object* l_Lean_Parser_Term_scoped_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_strictImplicitBinder___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Term_bracketedBinder_quot___closed__3; +static lean_object* l_Lean_Parser_Term_conv_quot_formatter___closed__7; static lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_leading__parser_parenthesizer___closed__6; @@ -1925,13 +1943,13 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_49____clo static lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__6; static lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__35; static lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__16; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__20; static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__20; static lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_attrInstance___closed__8; static lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__15; static lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__7; 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*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__15; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1; lean_object* l_Lean_Parser_sepBy(lean_object*, lean_object*, lean_object*, uint8_t); @@ -1967,9 +1985,9 @@ static lean_object* l_Lean_Parser_Term_let___closed__6; static lean_object* l_Lean_Parser_Term_whereDecls___closed__5; static lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__6; static lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__45; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__18; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_whereDecls_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__32; static lean_object* l_Lean_Parser_Term_sorry___closed__3; static lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_explicitUniv_formatter___closed__6; @@ -2016,6 +2034,7 @@ static lean_object* l_Lean_Parser_Tactic_quotSeq_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_depArrow___closed__9; static lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__30; static lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__28; lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_funStrictImplicitBinder_parenthesizer___closed__1; @@ -2030,6 +2049,7 @@ static lean_object* l_Lean_Parser_Term_stateRefT___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Level_quot_formatter___closed__1; static lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__2; +lean_object* l___regBuiltinParser_Lean_Parser_Term_conv_quot(lean_object*); lean_object* l_Lean_Parser_Term_macroArg_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_explicit_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_let__delayed___elambda__1___closed__7; @@ -2042,8 +2062,8 @@ static lean_object* l_Lean_Parser_Term_generalizingParam_parenthesizer___closed_ static 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*); static lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__5; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__12; static lean_object* l___regBuiltin_Lean_Parser_Term_sort_formatter___closed__2; +static lean_object* l_Lean_Parser_convParser___closed__1; static lean_object* l_Lean_Parser_Term_forInMacro_formatter___closed__1; static lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__5; @@ -2052,7 +2072,6 @@ static lean_object* l_Lean_Parser_Term_explicitBinder___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_have_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_dynamicQuot___closed__12; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__10; static lean_object* l___regBuiltin_Lean_Parser_Term_binrel_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_trailing__parser(lean_object*); static lean_object* l_Lean_Parser_Term_structInst_formatter___closed__13; @@ -2193,12 +2212,14 @@ static lean_object* l_Lean_Parser_Term_matchDiscr___closed__7; static lean_object* l_Lean_Parser_Term_proj_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_scoped___closed__7; lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_convParser___closed__2; static lean_object* l_Lean_Parser_Term_haveIdLhs___closed__1; static lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_tupleTail_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Term_funImplicitBinder_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__16; extern lean_object* l_Lean_Parser_argPrec; static lean_object* l_Lean_Parser_Term_fromTerm_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__14; @@ -2314,7 +2335,6 @@ static lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Term_panic_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_scoped; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__26; static lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_fun___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__9; @@ -2369,6 +2389,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_ensureExpectedType_formatter static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__23; static lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_quotedName___elambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__3; static lean_object* l_Lean_Parser_Term_binop___closed__6; lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__3; @@ -2439,6 +2460,7 @@ static lean_object* l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__1 static lean_object* l_Lean_Parser_Term_local_formatter___closed__1; lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_argument___elambda__1___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__28; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_forInMacro___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_type_formatter___closed__2; @@ -2491,6 +2513,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_49____clo lean_object* l_Lean_Parser_attrParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_anonymousCtor(lean_object*); static lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__9; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__13; static lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_namedPattern_formatter___closed__2; @@ -2542,6 +2565,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_pipeProj_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Term_proj___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__5; lean_object* l_Lean_Parser_Term_funBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_haveEqnsDecl___closed__5; @@ -2552,6 +2576,7 @@ static lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_implicitBinder(uint8_t); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__14; static lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__16; lean_object* l___regBuiltin_Lean_Parser_Tactic_quot_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__1; @@ -2578,14 +2603,17 @@ static lean_object* l_Lean_Parser_Term_binderDefault_formatter___closed__2; static lean_object* l_Lean_Parser_Term_binop___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_binrel___elambda__1___closed__2; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_binop___elambda__1___closed__14; static lean_object* l_Lean_Parser_Term_trailing__parser_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_let__delayed___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_leading__parser___closed__9; lean_object* l_Lean_Parser_interpolatedStr(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__4; static lean_object* l_Lean_Parser_Term_letPatDecl___closed__7; static lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__1; +static lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__24; static lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_explicitBinder___boxed(lean_object*); @@ -2610,8 +2638,10 @@ lean_object* l_Lean_Parser_Term_let__fun___elambda__1(lean_object*, lean_object* static lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_formatter___closed__1; static lean_object* l_Lean_Parser_Term_sufficesDecl___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_argument___elambda__1___closed__2; +static lean_object* l_Lean_Parser_Term_conv_quot_formatter___closed__5; static lean_object* l_Lean_Parser_Term_letDecl___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__21; +static lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__2; static lean_object* l_Lean_Parser_Term_ellipsis___elambda__1___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSeq___closed__4; static lean_object* l_Lean_Parser_Term_funBinder_quot_parenthesizer___closed__4; @@ -2620,6 +2650,7 @@ static lean_object* l_Lean_Parser_Term_funBinder_formatter___closed__2; lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_doubleQuotedName_formatter___closed__1; static lean_object* l_Lean_Parser_Term_nomatch___closed__8; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__27; static lean_object* l_Lean_Parser_Term_stateRefT_formatter___closed__2; static lean_object* l_Lean_Parser_Term_str___closed__2; static lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__1; @@ -2630,6 +2661,7 @@ lean_object* l_Lean_Parser_tacticParser_parenthesizer(lean_object*, lean_object* static lean_object* l_Lean_Parser_Term_binderTactic___closed__1; static lean_object* l_Lean_Parser_Term_sufficesDecl___closed__9; lean_object* l_Lean_Parser_Command_commentBody___elambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__31; static lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_char_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2715,6 +2747,7 @@ static lean_object* l_Lean_Parser_Term_borrowed_formatter___closed__1; static lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__6; static lean_object* l_Lean_Parser_Term_noImplicitLambda___closed__5; static lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__2; +static lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__1; static lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__4; static lean_object* l_Lean_Parser_Term_optEllipsis___closed__5; @@ -2778,7 +2811,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_bracketedBinder_quot_formatt static lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__5; static lean_object* l_Lean_Parser_Term_bracketedBinder_quot___closed__2; lean_object* l_Lean_Parser_Term_letEqnsDecl; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__35; static lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_generalizingParam_formatter___closed__5; lean_object* l_Lean_Parser_rawCh(uint32_t, uint8_t); @@ -2913,6 +2945,7 @@ static lean_object* l_Lean_Parser_Term_pipeProj___closed__4; static lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_assert___closed__6; lean_object* l_Lean_Parser_Term_typeOf_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_convParser(lean_object*); static lean_object* l_Lean_Parser_Term_cdot___closed__6; static lean_object* l_Lean_Parser_Term_arrayRef___closed__6; static lean_object* l_Lean_Parser_Term_haveIdDecl_formatter___closed__2; @@ -2970,11 +3003,13 @@ static lean_object* l_Lean_Parser_Term_letIdLhs___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_withPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltinParser_Lean_Parser_Term_str___closed__1; static lean_object* l_Lean_Parser_Term_sort___closed__5; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__17; static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_funBinder_formatter___closed__4; static lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_structInst_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket___elambda__1___closed__3; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_sorry___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_matchDiscr_quot___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_unreachable_parenthesizer___closed__3; @@ -3084,6 +3119,7 @@ static lean_object* l_Lean_Parser_Term_attr_quot___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Term_basicFun_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_show___elambda__1___closed__10; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__8; static lean_object* l_Lean_Parser_Term_generalizingParam_formatter___closed__3; static lean_object* l_Lean_Parser_Term_haveEqnsDecl___closed__2; static lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__20; @@ -3118,6 +3154,7 @@ static lean_object* l_Lean_Parser_Term_letDecl___closed__1; static lean_object* l_Lean_Parser_Term_ensureExpectedType___closed__5; static lean_object* l_Lean_Parser_Term_forall_formatter___closed__11; static lean_object* l___regBuiltin_Lean_Parser_Term_explicit_formatter___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__9; static lean_object* l_Lean_Parser_Term_argument_formatter___closed__1; static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket___elambda__1___closed__5; static lean_object* l_Lean_Parser_Term_structInst_formatter___closed__22; @@ -3145,6 +3182,7 @@ static lean_object* l_Lean_Parser_Term_haveIdDecl_formatter___closed__4; static lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__19; static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__20; static lean_object* l_Lean_Parser_Term_local___elambda__1___closed__13; +static lean_object* l_Lean_Parser_Term_conv_quot_formatter___closed__6; static lean_object* l_Lean_Parser_Tactic_seq1___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_namedArgument___closed__8; lean_object* l_Lean_Parser_Term_fromTerm_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3189,6 +3227,7 @@ static lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tupleTail; lean_object* l_Lean_Parser_Term_macroArg; static lean_object* l_Lean_Parser_Term_typeAscription___closed__5; +lean_object* l_Lean_Parser_convParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__15; static lean_object* l_Lean_Parser_Term_let__fun_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Term_strictImplicitBinder_parenthesizer___closed__3; @@ -3229,7 +3268,6 @@ static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__14; static lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__17; static lean_object* l___regBuiltin_Lean_Parser_Term_pipeCompletion_formatter___closed__1; static lean_object* l_Lean_Parser_Term_panic___closed__6; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__31; lean_object* l_Lean_PrettyPrinter_Formatter_parserOfStack_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__5; static lean_object* l_Lean_Parser_Term_optExprPrecedence___closed__1; @@ -3255,11 +3293,11 @@ static lean_object* l_Lean_Parser_Term_funBinder_quot___closed__7; static lean_object* l_Lean_Parser_Term_binderTactic___closed__8; static lean_object* l_Lean_Parser_Term_ensureTypeOf_formatter___closed__4; static lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__21; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_match_formatter___closed__2; static lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__6; static lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket___closed__5; lean_object* l_Lean_Parser_Term_simpleBinder; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__9; static lean_object* l_Lean_Parser_Term_let__delayed___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_funStrictImplicitBinder___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_letrec___closed__3; @@ -3268,7 +3306,6 @@ static lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_simpleBinderWithoutType_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Term_sort_formatter___closed__1; static lean_object* l_Lean_Parser_Term_leading__parser_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__27; static lean_object* l_Lean_Parser_Term_generalizingParam___closed__5; static lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Term_let__fun_formatter___closed__6; @@ -3298,6 +3335,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_sort_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__14; static lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__11; +static lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_sufficesDecl___elambda__1___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Term_typeOf_formatter___closed__1; static lean_object* l_Lean_Parser_Term_falseVal_formatter___closed__2; @@ -3311,7 +3349,6 @@ static lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__18; static lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_explicit_formatter___closed__4; static lean_object* l_Lean_Parser_Term_syntheticHole___closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__4; static lean_object* l_Lean_Parser_Tactic_quotSeq___closed__3; static lean_object* l_Lean_Parser_Term_scoped___closed__5; static lean_object* l_Lean_Parser_Term_instBinder___closed__1; @@ -3344,6 +3381,7 @@ static lean_object* l_Lean_Parser_Term_syntheticHole___closed__8; static lean_object* l_Lean_Parser_Term_panic___closed__1; static lean_object* l_Lean_Parser_Term_attrKind___closed__2; static lean_object* l_Lean_Parser_Term_structInstLVal___closed__4; +static lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__1; lean_object* l_Lean_Parser_Term_macroArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlt(lean_object*); lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3429,6 +3467,7 @@ static lean_object* l_Lean_Parser_Term_structInstFieldAbbrev___elambda__1___clos static lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_suffices_formatter___closed__8; static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__8; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__35; static lean_object* l_Lean_Parser_Term_let__fun_formatter___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_subst(lean_object*); static lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__9; @@ -3487,13 +3526,13 @@ static lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__20; static lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__7; +lean_object* l_Lean_Parser_convParser_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_strictImplicitLeftBracket_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__3; static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__16; static lean_object* l_Lean_Parser_Term_let__fun___closed__10; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__17; static lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_ensureTypeOf_formatter___closed__1; @@ -3571,6 +3610,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_incQuotDepth_formatter(lean_object*, static lean_object* l_Lean_Parser_Term_binrel___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_noindex_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__15; +static lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_suffices_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__2; static lean_object* l_Lean_Parser_Term_falseVal___elambda__1___closed__1; @@ -3680,6 +3720,7 @@ static lean_object* l_Lean_Parser_Term_explicit_formatter___closed__1; static lean_object* l_Lean_Parser_Term_match___closed__9; static lean_object* l_Lean_Parser_Term_tupleTail___closed__5; lean_object* l_Lean_Parser_charLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Term_conv_quot___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_formatter___closed__1; static lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__6; static lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__8; @@ -3762,6 +3803,7 @@ static lean_object* l_Lean_Parser_Term_forall_formatter___closed__3; static lean_object* l_Lean_Parser_Term_structInst_formatter___closed__5; static lean_object* l_Lean_Parser_Term_letrec___closed__5; static lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__6; +static lean_object* l_Lean_Parser_Term_conv_quot___closed__4; static lean_object* l_Lean_Parser_Term_instBinder_formatter___closed__2; static lean_object* l_Lean_Parser_Term_let_formatter___closed__3; static lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__2; @@ -3805,6 +3847,7 @@ static lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___close static lean_object* l_Lean_Parser_Term_explicit_formatter___closed__2; static lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__20; static lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_Term_conv_quot_formatter___closed__3; static lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_match___closed__8; static lean_object* l_Lean_Parser_Command_docComment___elambda__1___lambda__3___closed__9; @@ -3953,6 +3996,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_arrow_formatter___closed__2; lean_object* l_Lean_Parser_levelParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_letRecDecls___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_syntheticHole___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__2; lean_object* l_Lean_Parser_darrow___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__9; static lean_object* l_Lean_Parser_Term_doubleQuotedName___closed__4; @@ -4005,6 +4049,7 @@ static lean_object* l_Lean_Parser_Term_macroDollarArg___closed__9; static lean_object* l_Lean_Parser_Term_dynamicQuot___closed__13; lean_object* l___regBuiltinParser_Lean_Parser_Term_scientific(lean_object*); static lean_object* l_Lean_Parser_Term_app___closed__1; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_have_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__1; static lean_object* l_Lean_Parser_Command_docComment___elambda__1___lambda__3___closed__1; @@ -4012,7 +4057,6 @@ static lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_let___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_unreachable_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_panic_formatter___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__34; lean_object* l_Lean_Parser_levelParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr_quot; @@ -4032,11 +4076,13 @@ lean_object* l_Lean_ppSpace_formatter___boxed(lean_object*, lean_object*, lean_o static lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__15; static lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_stateRefT_formatter___closed__5; +static lean_object* l_Lean_Parser_Term_conv_quot_formatter___closed__1; lean_object* l_Lean_Parser_Term_haveIdLhs___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_docComment_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrow_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_optSemicolon___elambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_structInstFieldAbbrev_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_letIdDecl___closed__1; static lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__5; @@ -4068,6 +4114,7 @@ static lean_object* l_Lean_Parser_Term_binrel_formatter___closed__3; static lean_object* l_Lean_Parser_Term_type_formatter___closed__3; static lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__2; lean_object* l_String_trim(lean_object*); +static lean_object* l_Lean_Parser_Term_conv_quot_formatter___closed__2; static lean_object* l_Lean_Parser_Term_ellipsis_formatter___closed__2; lean_object* l_Lean_Parser_Command_commentBody_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__5; @@ -4084,7 +4131,6 @@ static lean_object* l_Lean_Parser_Term_hole_parenthesizer___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_byTactic(lean_object*); lean_object* l_Lean_Parser_darrow___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__10; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__6; static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__19; static lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_let_formatter___closed__5; @@ -4117,6 +4163,7 @@ static lean_object* l_Lean_Parser_Term_panic___closed__3; static lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__25; static lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_nomatch_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Term_conv_quot_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Term_namedPattern_formatter___closed__1; static lean_object* l_Lean_Parser_Term_generalizingParam_formatter___closed__8; static lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__4; @@ -4159,7 +4206,6 @@ static lean_object* l_Lean_Parser_Term_panic___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__14; static lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_doubleQuotedName___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__19; static lean_object* l_Lean_Parser_Term_explicitBinder___closed__4; lean_object* l_Lean_Parser_Term_haveIdDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__1; @@ -4178,6 +4224,7 @@ static lean_object* l_Lean_Parser_Term_local___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_doubleQuotedName_parenthesizer___closed__3___boxed__const__1; static lean_object* l_Lean_Parser_Term_falseVal___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_ensureExpectedType_formatter(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__36; static lean_object* l_Lean_Parser_Term_let__delayed___closed__5; static lean_object* l_Lean_Parser_Term_borrowed___closed__6; static lean_object* l_Lean_Parser_Term_binop___closed__5; @@ -4219,6 +4266,7 @@ static lean_object* l_Lean_Parser_Term_letRecDecls___closed__4; static lean_object* l_Lean_Parser_Term_let__delayed___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__44; static lean_object* l_Lean_Parser_Term_binop___elambda__1___closed__2; +lean_object* l_Lean_Parser_convParser_formatter___boxed(lean_object*); static lean_object* l_Lean_Parser_Term_unreachable_formatter___closed__1; static lean_object* l_Lean_Parser_Term_matchAlt_formatter___closed__2; static lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__13; @@ -4271,6 +4319,7 @@ static lean_object* l_Lean_Parser_Term_trailing__parser___elambda__1___closed__1 static lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_match___elambda__1___closed__20; static lean_object* l_Lean_Parser_Term_binrel_parenthesizer___closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__25; static lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_attr_quot___closed__2; static lean_object* l_Lean_Parser_Term_binop___elambda__1___closed__8; @@ -4286,6 +4335,7 @@ static lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_noImplicitLambda___closed__1; static lean_object* l_Lean_Parser_Term_sufficesDecl_formatter___closed__5; +static lean_object* l_Lean_Parser_Term_conv_quot_formatter___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__24; static lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1(lean_object*, lean_object*); @@ -4338,7 +4388,6 @@ static lean_object* l_Lean_Parser_Term_scientific___closed__1; static lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Term_funStrictImplicitBinder_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__5; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__11; static lean_object* l_Lean_Parser_Term_dbgTrace___closed__10; static lean_object* l_Lean_Parser_Term_letRecDecls___closed__1; lean_object* l_Lean_Parser_Term_explicit; @@ -4346,6 +4395,7 @@ static lean_object* l_Lean_Parser_Term_leading__parser___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__22; lean_object* l_Lean_Parser_Tactic_tacticSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__13; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__29; static lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__6; static lean_object* l_Lean_Parser_Term_fun_formatter___closed__1; @@ -4473,6 +4523,7 @@ static lean_object* l_Lean_Parser_Term_pipeProj_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_attr_quot___closed__9; static lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__6; static lean_object* l_Lean_Parser_Term_namedPattern___closed__2; +static lean_object* l_Lean_Parser_Term_conv_quot___closed__2; static lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__6; static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_funStrictImplicitBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4482,7 +4533,6 @@ static lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_generalizingParam_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Term_proj___closed__6; static lean_object* l_Lean_Parser_Term_type___closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__2; static lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__37; static lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__12; static lean_object* l_Lean_Parser_Term_fun_formatter___closed__2; @@ -4506,6 +4556,7 @@ static lean_object* l_Lean_Parser_Term_fun___closed__2; static lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Tactic_quotSeq_parenthesizer___closed__2; +static lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_letPatDecl___closed__11; static lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__8; static lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__8; @@ -4550,6 +4601,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_str_formatter(lean_object*); lean_object* l_Lean_Parser_Term_subst_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funStrictImplicitBinder_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Term_conv_quot___closed__6; static lean_object* l_Lean_Parser_Term_app___closed__2; static lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Term_panic___closed__7; @@ -4578,6 +4630,7 @@ static lean_object* l_Lean_Parser_Term_trueVal_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_scientific___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__1; static lean_object* l_Lean_Parser_Term_attr_quot___closed__8; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__6; static lean_object* l_Lean_Parser_Term_binrel_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__7; static lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__10; @@ -4680,6 +4733,7 @@ static lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_letDecl___closed__14; static lean_object* l_Lean_Parser_Term_structInstFieldAbbrev_formatter___closed__9; static lean_object* l_Lean_Parser_Term_attr_quot___elambda__1___closed__7; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__6; lean_object* l_Lean_Parser_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_generalizingParam_parenthesizer___closed__1; lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*, lean_object*); @@ -4698,7 +4752,6 @@ static lean_object* l_Lean_Parser_Term_dbgTrace___closed__3; lean_object* l_Lean_Parser_Term_local_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_fun_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_quotSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__1; static lean_object* l_Lean_Parser_Term_ident_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_generalizingParam_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_quotedName_parenthesizer___closed__3; @@ -4750,6 +4803,7 @@ lean_object* l_Lean_Parser_Term_trailing__parser_formatter(lean_object*, lean_ob static lean_object* l_Lean_Parser_Command_docComment_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Term_letDecl___closed__15; static lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__8; +lean_object* l_Lean_Parser_convParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_docComment___closed__6; static lean_object* l_Lean_Parser_Term_type___elambda__1___closed__29; @@ -4762,7 +4816,7 @@ static lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__14; static lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_trueVal___elambda__1___closed__6; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_49_(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409_(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440_(lean_object*); static lean_object* l_Lean_Parser_Term_parenSpecial_formatter___closed__3; static lean_object* l_Lean_Parser_Term_have___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_noindex___elambda__1___closed__5; @@ -4778,6 +4832,7 @@ static lean_object* l_Lean_Parser_Term_macroLastArg_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_ellipsis___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_haveIdDecl_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_depArrow_formatter___closed__5; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__34; static lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_formatter___closed__1; static lean_object* l_Lean_Parser_Term_simpleBinderWithoutType___closed__5; lean_object* l_Lean_Parser_Term_dbgTrace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4832,6 +4887,7 @@ static lean_object* l_Lean_Parser_Term_byTactic___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_subst_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_attrKind___closed__5; static lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__13; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__17; lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__5; static lean_object* l_Lean_Parser_Term_letDecl___closed__3; @@ -4842,7 +4898,6 @@ static lean_object* l_Lean_Parser_Term_letrec_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_binop_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_match___closed__10; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_49____closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__25; lean_object* l_Lean_Parser_symbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_forInMacro_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__4; @@ -4852,6 +4907,7 @@ static lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_attrInstance___closed__6; static lean_object* l_Lean_Parser_Term_let__delayed___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_generalizingParam; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__8; static lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_let__fun; static lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__8; @@ -4861,6 +4917,7 @@ static lean_object* l_Lean_Parser_Term_leading__parser___elambda__1___closed__14 static lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__10; static lean_object* l_Lean_Parser_Term_generalizingParam___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__1; static lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__11; static lean_object* l_Lean_Parser_Term_matchDiscr_quot___closed__3; static lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1___closed__13; @@ -4912,6 +4969,7 @@ static lean_object* l_Lean_Parser_Term_sort___closed__7; static lean_object* l_Lean_Parser_Term_structInstFieldAbbrev_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Term_forall_formatter___closed__2; static lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__10; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__19; static lean_object* l_Lean_Parser_Term_pipeProj___closed__1; static lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__6; static lean_object* l_Lean_Parser_Term_noImplicitLambda___closed__6; @@ -4946,7 +5004,6 @@ lean_object* l_Lean_Parser_Term_attrKind___elambda__1(lean_object*, lean_object* lean_object* l___regBuiltin_Lean_Parser_Term_num_formatter(lean_object*); static lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_ensureExpectedType_formatter___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__36; static lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__14; static lean_object* l_Lean_Parser_Term_sufficesDecl___closed__1; @@ -4981,6 +5038,7 @@ static lean_object* l_Lean_Parser_Term_trueVal_formatter___closed__1; static lean_object* l_Lean_Parser_Term_generalizingParam___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_leading__parser_formatter___closed__2; static lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__4; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__9; lean_object* l_Lean_Parser_many1(lean_object*); static lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_commentBody; @@ -5055,6 +5113,7 @@ static lean_object* l_Lean_Parser_Term_leading__parser_formatter___closed__4; lean_object* l_Lean_Parser_Term_letrec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_let__delayed_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__5; +static lean_object* l_Lean_Parser_Term_conv_quot___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_fromTerm_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_show_formatter(lean_object*); static lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer___closed__3; @@ -5074,7 +5133,6 @@ lean_object* l_Lean_ppDedent_formatter(lean_object*, lean_object*, lean_object*, lean_object* l_Lean_Parser_Term_ident; static lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_borrowed___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__8; lean_object* l_Lean_Parser_manyIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_suffices___closed__3; static lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__10; @@ -5113,6 +5171,7 @@ static lean_object* l_Lean_Parser_Term_matchDiscr_quot_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Term_bracketedBinder_quot_formatter___closed__2; static lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__5; static lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__11; static lean_object* l_Lean_Parser_Term_argument___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_binop_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_letrec_formatter___closed__8; @@ -6129,6 +6188,33 @@ x_3 = l_Lean_Parser_categoryParser(x_2, x_1); return x_3; } } +static lean_object* _init_l_Lean_Parser_convParser___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("conv"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_convParser___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_convParser___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_convParser(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Parser_convParser___closed__2; +x_3 = l_Lean_Parser_categoryParser(x_2, x_1); +return x_3; +} +} lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -66222,6 +66308,764 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_byTactic___elambda__1___closed__2; +x_2 = l_Lean_Parser_convParser___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__3; +x_2 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__3; +x_3 = 1; +x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("`(conv|"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__5; +x_2 = l_String_trim(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot___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_Term_conv_quot___elambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__7; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_tokenWithAntiquotFn), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_convParser___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Term_conv_quot___elambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__11; +x_2 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_addQuotDepthFn___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_Term_conv_quot___elambda__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__10; +x_2 = l_Lean_Parser_Term_paren___elambda__1___closed__17; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__8; +x_2 = l_Lean_Parser_Term_conv_quot___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_Term_conv_quot___elambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_conv_quot___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_Term_conv_quot___elambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__13; +x_2 = l_Lean_Parser_Command_docComment___elambda__1___closed__20; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_docComment___elambda__1___closed__18; +x_2 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__14; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_docComment___elambda__1___lambda__3___closed__6; +x_2 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__6; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__16; +x_2 = l_Lean_Parser_Command_docComment___elambda__1___lambda__3___closed__6; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_conv_quot___elambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__4; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_5 = l_Lean_Parser_tryAnti(x_1, x_2); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_dec(x_4); +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_checkPrecFn(x_6, x_1, x_2); +x_8 = lean_ctor_get(x_7, 4); +lean_inc(x_8); +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_672____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); +lean_dec(x_8); +if (x_10 == 0) +{ +lean_dec(x_1); +return x_7; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_25; +x_11 = lean_ctor_get(x_7, 0); +lean_inc(x_11); +x_12 = lean_array_get_size(x_11); +lean_dec(x_11); +x_13 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__6; +x_14 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__17; +lean_inc(x_1); +x_15 = l_Lean_Parser_symbolFnAux(x_13, x_14, x_1, x_7); +x_16 = lean_ctor_get(x_15, 4); +lean_inc(x_16); +x_17 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_672____at_Lean_Parser_ParserState_hasError___spec__1(x_16, x_9); +lean_dec(x_16); +if (x_17 == 0) +{ +x_25 = x_15; +goto block_43; +} +else +{ +lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_44 = lean_ctor_get(x_1, 4); +lean_inc(x_44); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_nat_dec_eq(x_44, x_45); +lean_dec(x_44); +if (x_46 == 0) +{ +lean_object* x_47; lean_object* x_48; +x_47 = lean_box(0); +lean_inc(x_1); +x_48 = l_Lean_Parser_Command_docComment___elambda__1___lambda__3(x_15, x_1, x_9, x_47); +x_25 = x_48; +goto block_43; +} +else +{ +x_25 = x_15; +goto block_43; +} +} +block_24: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_20 = l_Lean_Parser_ParserState_mkNode(x_18, x_19, x_12); +x_21 = lean_ctor_get(x_20, 4); +lean_inc(x_21); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_672____at_Lean_Parser_ParserState_hasError___spec__1(x_21, x_9); +lean_dec(x_21); +if (x_22 == 0) +{ +lean_dec(x_1); +return x_20; +} +else +{ +lean_object* x_23; +x_23 = l_Lean_Parser_setLhsPrecFn(x_6, x_1, x_20); +lean_dec(x_1); +return x_23; +} +} +block_43: +{ +lean_object* x_26; uint8_t x_27; +x_26 = lean_ctor_get(x_25, 4); +lean_inc(x_26); +x_27 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_672____at_Lean_Parser_ParserState_hasError___spec__1(x_26, x_9); +lean_dec(x_26); +if (x_27 == 0) +{ +x_18 = x_25; +goto block_24; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_28 = l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__11; +x_29 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__9; +lean_inc(x_1); +x_30 = l_Lean_Parser_addQuotDepthFn(x_28, x_29, x_1, x_25); +x_31 = lean_ctor_get(x_30, 4); +lean_inc(x_31); +x_32 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_672____at_Lean_Parser_ParserState_hasError___spec__1(x_31, x_9); +lean_dec(x_31); +if (x_32 == 0) +{ +x_18 = x_30; +goto block_24; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = l_Lean_Parser_Term_paren___elambda__1___closed__15; +x_34 = l_Lean_Parser_Term_paren___elambda__1___closed__26; +lean_inc(x_1); +x_35 = l_Lean_Parser_symbolFnAux(x_33, x_34, x_1, x_30); +x_36 = lean_ctor_get(x_35, 4); +lean_inc(x_36); +x_37 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_672____at_Lean_Parser_ParserState_hasError___spec__1(x_36, x_9); +lean_dec(x_36); +if (x_37 == 0) +{ +x_18 = x_35; +goto block_24; +} +else +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_38 = lean_ctor_get(x_1, 4); +lean_inc(x_38); +x_39 = lean_unsigned_to_nat(0u); +x_40 = lean_nat_dec_eq(x_38, x_39); +lean_dec(x_38); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_box(0); +lean_inc(x_1); +x_42 = l_Lean_Parser_Command_docComment___elambda__1___lambda__3(x_35, x_1, x_9, x_41); +x_18 = x_42; +goto block_24; +} +else +{ +x_18 = x_35; +goto block_24; +} +} +} +} +} +} +} +else +{ +lean_object* x_49; uint8_t x_50; lean_object* x_51; +x_49 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__15; +x_50 = 1; +x_51 = l_Lean_Parser_orelseFnCore(x_4, x_49, x_50, x_1, x_2); +return x_51; +} +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__6; +x_2 = l_Lean_Parser_symbolInfo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_convParser___closed__2; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Parser_categoryParser(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___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_conv_quot___closed__2; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Term_paren___closed__2; +x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___closed__1; +x_2 = l_Lean_Parser_Term_conv_quot___closed__3; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_conv_quot___closed__4; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___closed__5; +x_2 = l_Lean_Parser_epsilonInfo; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___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_Term_conv_quot___closed__6; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__4; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Term_conv_quot___closed__7; +x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_conv_quot___elambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___closed__8; +x_2 = l_Lean_Parser_Term_conv_quot___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_Term_conv_quot() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Term_conv_quot___closed__10; +return x_1; +} +} +lean_object* l___regBuiltinParser_Lean_Parser_Term_conv_quot(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___regBuiltinParser_Lean_Parser_Term_byTactic___closed__2; +x_3 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_4 = 1; +x_5 = l_Lean_Parser_Term_conv_quot; +x_6 = lean_unsigned_to_nat(1000u); +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_convParser_formatter___rarg(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_convParser___closed__2; +x_7 = l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* l_Lean_Parser_convParser_formatter(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_convParser_formatter___rarg), 5, 0); +return x_2; +} +} +lean_object* l_Lean_Parser_convParser_formatter___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Parser_convParser_formatter(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_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_funBinder_quot___elambda__1___closed__3; +x_2 = l_Lean_Parser_Term_conv_quot___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_Term_conv_quot_formatter___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_formatter___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_convParser_formatter___rarg), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_formatter___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot_formatter___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_incQuotDepth_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_formatter___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot_formatter___closed__4; +x_2 = l_Lean_Parser_Term_paren_formatter___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_formatter___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot_formatter___closed__2; +x_2 = l_Lean_Parser_Term_conv_quot_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_Term_conv_quot_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_Term_conv_quot___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_conv_quot_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_Term_conv_quot_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_Parser_Term_conv_quot_formatter___closed__1; +x_7 = l_Lean_Parser_Term_conv_quot_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_Term_conv_quot_formatter___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_2 = l___regBuiltin_Lean_Parser_Term_byTactic_formatter___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_conv_quot_formatter), 5, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_formatter(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l_Lean_PrettyPrinter_formatterAttribute; +x_3 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__1; +x_5 = l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__2; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} +lean_object* l_Lean_Parser_convParser_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l_Lean_Parser_convParser___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(x_7, x_1, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__3; +x_2 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__3; +x_3 = 1; +x_4 = lean_box(x_3); +x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___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_Term_conv_quot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_convParser_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_conv_quot_parenthesizer___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_incQuotDepth_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_paren_parenthesizer___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_conv_quot_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_Term_conv_quot_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_Term_conv_quot___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_conv_quot_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_Term_conv_quot_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_Parser_Term_conv_quot_parenthesizer___closed__1; +x_7 = l_Lean_Parser_Term_conv_quot_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_Term_conv_quot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_2 = l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_conv_quot_parenthesizer), 5, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_conv_quot___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__1; +x_5 = l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__2; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} static lean_object* _init_l_Lean_Parser_Term_panic___elambda__1___closed__1() { _start: { @@ -73502,7 +74346,7 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73512,7 +74356,7 @@ 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_2409____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -73522,7 +74366,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -73532,7 +74376,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -73542,7 +74386,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73552,7 +74396,7 @@ 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_2409____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -73562,7 +74406,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -73572,7 +74416,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -73582,7 +74426,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73592,7 +74436,7 @@ 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_2409____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -73602,7 +74446,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -73612,7 +74456,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -73622,7 +74466,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73632,7 +74476,7 @@ 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_2409____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -73642,7 +74486,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -73652,7 +74496,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -73662,7 +74506,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73672,7 +74516,7 @@ 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_2409____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -73682,7 +74526,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -73692,7 +74536,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -73702,7 +74546,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73712,7 +74556,7 @@ 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_2409____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -73722,7 +74566,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -73732,7 +74576,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -73742,7 +74586,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__25() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73752,7 +74596,7 @@ 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_2409____closed__26() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -73762,7 +74606,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__27() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -73772,7 +74616,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__28() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__28() { _start: { lean_object* x_1; lean_object* x_2; @@ -73782,7 +74626,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__29() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73792,7 +74636,7 @@ 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_2409____closed__30() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__30() { _start: { lean_object* x_1; lean_object* x_2; @@ -73802,7 +74646,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__31() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__31() { _start: { lean_object* x_1; lean_object* x_2; @@ -73812,7 +74656,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__32() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__32() { _start: { lean_object* x_1; lean_object* x_2; @@ -73822,7 +74666,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__33() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -73832,7 +74676,7 @@ 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_2409____closed__34() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__34() { _start: { lean_object* x_1; lean_object* x_2; @@ -73842,7 +74686,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__35() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__35() { _start: { lean_object* x_1; lean_object* x_2; @@ -73852,7 +74696,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__36() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__36() { _start: { lean_object* x_1; lean_object* x_2; @@ -73862,13 +74706,13 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409_(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440_(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_Term___hyg_2409____closed__1; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__2; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__1; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -73877,7 +74721,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__3; +x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__3; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -73886,7 +74730,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__4; +x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__4; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -73894,8 +74738,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_Term___hyg_2409____closed__5; -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__6; +x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__5; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__6; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -73903,7 +74747,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__7; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__7; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -73911,7 +74755,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__8; +x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__8; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -73919,8 +74763,8 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; 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_Term___hyg_2409____closed__9; -x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__10; +x_25 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__9; +x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__10; x_27 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_26, x_24); if (lean_obj_tag(x_27) == 0) { @@ -73928,7 +74772,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); lean_dec(x_27); -x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__11; +x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__11; x_30 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_29, x_28); if (lean_obj_tag(x_30) == 0) { @@ -73936,7 +74780,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); lean_dec(x_30); -x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__12; +x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__12; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_32, x_31); if (lean_obj_tag(x_33) == 0) { @@ -73944,8 +74788,8 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); -x_35 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__13; -x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__14; +x_35 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__13; +x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__14; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -73953,7 +74797,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__15; +x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__15; x_40 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_35, x_39, x_38); if (lean_obj_tag(x_40) == 0) { @@ -73961,7 +74805,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_ctor_get(x_40, 1); lean_inc(x_41); lean_dec(x_40); -x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__16; +x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__16; x_43 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_35, x_42, x_41); if (lean_obj_tag(x_43) == 0) { @@ -73969,8 +74813,8 @@ lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec(x_43); -x_45 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__17; -x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__18; +x_45 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__17; +x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__18; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_45, x_46, x_44); if (lean_obj_tag(x_47) == 0) { @@ -73978,7 +74822,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__19; +x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__19; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_45, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -73986,7 +74830,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__20; +x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__20; x_53 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_45, x_52, x_51); if (lean_obj_tag(x_53) == 0) { @@ -73994,8 +74838,8 @@ lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); lean_dec(x_53); -x_55 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__21; -x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__22; +x_55 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__21; +x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__22; x_57 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_55, x_56, x_54); if (lean_obj_tag(x_57) == 0) { @@ -74003,7 +74847,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec(x_57); -x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__23; +x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__23; x_60 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_55, x_59, x_58); if (lean_obj_tag(x_60) == 0) { @@ -74011,7 +74855,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__24; +x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__24; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_55, x_62, x_61); if (lean_obj_tag(x_63) == 0) { @@ -74019,8 +74863,8 @@ 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_2409____closed__25; -x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__26; +x_65 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__25; +x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__26; x_67 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_65, x_66, x_64); if (lean_obj_tag(x_67) == 0) { @@ -74028,7 +74872,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec(x_67); -x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__27; +x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__27; x_70 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_65, x_69, x_68); if (lean_obj_tag(x_70) == 0) { @@ -74036,7 +74880,7 @@ lean_object* x_71; lean_object* x_72; lean_object* x_73; x_71 = lean_ctor_get(x_70, 1); lean_inc(x_71); lean_dec(x_70); -x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__28; +x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__28; x_73 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_65, x_72, x_71); if (lean_obj_tag(x_73) == 0) { @@ -74044,8 +74888,8 @@ lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; x_74 = lean_ctor_get(x_73, 1); lean_inc(x_74); lean_dec(x_73); -x_75 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__29; -x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__30; +x_75 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__29; +x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__30; x_77 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_75, x_76, x_74); if (lean_obj_tag(x_77) == 0) { @@ -74053,7 +74897,7 @@ lean_object* x_78; lean_object* x_79; lean_object* x_80; x_78 = lean_ctor_get(x_77, 1); lean_inc(x_78); lean_dec(x_77); -x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__31; +x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__31; x_80 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_75, x_79, x_78); if (lean_obj_tag(x_80) == 0) { @@ -74061,7 +74905,7 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; x_81 = lean_ctor_get(x_80, 1); lean_inc(x_81); lean_dec(x_80); -x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__32; +x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__32; x_83 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_75, x_82, x_81); if (lean_obj_tag(x_83) == 0) { @@ -74069,8 +74913,8 @@ lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; x_84 = lean_ctor_get(x_83, 1); lean_inc(x_84); lean_dec(x_83); -x_85 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__33; -x_86 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__34; +x_85 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__33; +x_86 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__34; x_87 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_85, x_86, x_84); if (lean_obj_tag(x_87) == 0) { @@ -74078,7 +74922,7 @@ lean_object* x_88; lean_object* x_89; lean_object* x_90; x_88 = lean_ctor_get(x_87, 1); lean_inc(x_88); lean_dec(x_87); -x_89 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__35; +x_89 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__35; x_90 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_85, x_89, x_88); if (lean_obj_tag(x_90) == 0) { @@ -74086,7 +74930,7 @@ lean_object* x_91; lean_object* x_92; lean_object* x_93; x_91 = lean_ctor_get(x_90, 1); lean_inc(x_91); lean_dec(x_90); -x_92 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__36; +x_92 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__36; x_93 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_85, x_92, x_91); return x_93; } @@ -74827,6 +75671,10 @@ lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_49____cl res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_49_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_convParser___closed__1 = _init_l_Lean_Parser_convParser___closed__1(); +lean_mark_persistent(l_Lean_Parser_convParser___closed__1); +l_Lean_Parser_convParser___closed__2 = _init_l_Lean_Parser_convParser___closed__2(); +lean_mark_persistent(l_Lean_Parser_convParser___closed__2); l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__1); l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__2(); @@ -82840,6 +83688,107 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_attr_quot_parenthesizer___c res = l___regBuiltin_Lean_Parser_Term_attr_quot_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__1 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__1); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__2 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__2); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__3 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__3); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__4 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__4); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__5 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__5); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__6 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__6); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__7 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__7); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__8 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__8); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__9 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__9); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__10 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__10(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__10); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__11 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__11(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__11); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__12 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__12(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__12); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__13 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__13(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__13); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__14 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__14(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__14); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__15 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__15(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__15); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__16 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__16(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__16); +l_Lean_Parser_Term_conv_quot___elambda__1___closed__17 = _init_l_Lean_Parser_Term_conv_quot___elambda__1___closed__17(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___elambda__1___closed__17); +l_Lean_Parser_Term_conv_quot___closed__1 = _init_l_Lean_Parser_Term_conv_quot___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__1); +l_Lean_Parser_Term_conv_quot___closed__2 = _init_l_Lean_Parser_Term_conv_quot___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__2); +l_Lean_Parser_Term_conv_quot___closed__3 = _init_l_Lean_Parser_Term_conv_quot___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__3); +l_Lean_Parser_Term_conv_quot___closed__4 = _init_l_Lean_Parser_Term_conv_quot___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__4); +l_Lean_Parser_Term_conv_quot___closed__5 = _init_l_Lean_Parser_Term_conv_quot___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__5); +l_Lean_Parser_Term_conv_quot___closed__6 = _init_l_Lean_Parser_Term_conv_quot___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__6); +l_Lean_Parser_Term_conv_quot___closed__7 = _init_l_Lean_Parser_Term_conv_quot___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__7); +l_Lean_Parser_Term_conv_quot___closed__8 = _init_l_Lean_Parser_Term_conv_quot___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__8); +l_Lean_Parser_Term_conv_quot___closed__9 = _init_l_Lean_Parser_Term_conv_quot___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__9); +l_Lean_Parser_Term_conv_quot___closed__10 = _init_l_Lean_Parser_Term_conv_quot___closed__10(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot___closed__10); +l_Lean_Parser_Term_conv_quot = _init_l_Lean_Parser_Term_conv_quot(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot); +res = l___regBuiltinParser_Lean_Parser_Term_conv_quot(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Parser_Term_conv_quot_formatter___closed__1 = _init_l_Lean_Parser_Term_conv_quot_formatter___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_formatter___closed__1); +l_Lean_Parser_Term_conv_quot_formatter___closed__2 = _init_l_Lean_Parser_Term_conv_quot_formatter___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_formatter___closed__2); +l_Lean_Parser_Term_conv_quot_formatter___closed__3 = _init_l_Lean_Parser_Term_conv_quot_formatter___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_formatter___closed__3); +l_Lean_Parser_Term_conv_quot_formatter___closed__4 = _init_l_Lean_Parser_Term_conv_quot_formatter___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_formatter___closed__4); +l_Lean_Parser_Term_conv_quot_formatter___closed__5 = _init_l_Lean_Parser_Term_conv_quot_formatter___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_formatter___closed__5); +l_Lean_Parser_Term_conv_quot_formatter___closed__6 = _init_l_Lean_Parser_Term_conv_quot_formatter___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_formatter___closed__6); +l_Lean_Parser_Term_conv_quot_formatter___closed__7 = _init_l_Lean_Parser_Term_conv_quot_formatter___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_formatter___closed__7); +l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__1); +l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__2 = _init_l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_conv_quot_formatter___closed__2); +res = l___regBuiltin_Lean_Parser_Term_conv_quot_formatter(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Parser_Term_conv_quot_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_parenthesizer___closed__1); +l_Lean_Parser_Term_conv_quot_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_parenthesizer___closed__2); +l_Lean_Parser_Term_conv_quot_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_parenthesizer___closed__3); +l_Lean_Parser_Term_conv_quot_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_parenthesizer___closed__4); +l_Lean_Parser_Term_conv_quot_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_parenthesizer___closed__5); +l_Lean_Parser_Term_conv_quot_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_parenthesizer___closed__6); +l_Lean_Parser_Term_conv_quot_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_conv_quot_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_conv_quot_parenthesizer___closed__7); +l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__1); +l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__2 = _init_l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer___closed__2); +res = l___regBuiltin_Lean_Parser_Term_conv_quot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_panic___elambda__1___closed__1 = _init_l_Lean_Parser_Term_panic___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_panic___elambda__1___closed__1); l_Lean_Parser_Term_panic___elambda__1___closed__2 = _init_l_Lean_Parser_Term_panic___elambda__1___closed__2(); @@ -83755,79 +84704,79 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_quot_parenthesizer___close res = l___regBuiltin_Lean_Parser_Level_quot_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__24); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__25(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__25); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__26(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__26); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__27(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__27); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__28(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__28); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__29(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__29); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__30(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__30); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__31(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__31); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__32(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__32); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__33(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__33); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__34(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__34); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__35(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__35); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__36(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409____closed__36); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2409_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__24); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__25(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__25); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__26(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__26); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__27(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__27); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__28(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__28); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__29(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__29); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__30(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__30); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__31(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__31); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__32(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__32); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__33(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__33); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__34(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__34); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__35(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__35); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__36(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440____closed__36); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_2440_(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/PrettyPrinter.c b/stage0/stdlib/Lean/PrettyPrinter.c index 8a41d06a29..5a92750c45 100644 --- a/stage0/stdlib/Lean/PrettyPrinter.c +++ b/stage0/stdlib/Lean/PrettyPrinter.c @@ -44,7 +44,6 @@ static lean_object* l_Lean_PPContext_runMetaM___rarg___closed__4; uint8_t l_USize_decLt(size_t, size_t); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_PrettyPrinter_0__Lean_PrettyPrinter_noContext___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_Meta_ppGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_0__Lean_PrettyPrinter_withoutContext___rarg(lean_object*, lean_object*); static lean_object* l_Lean_PPContext_runMetaM___rarg___closed__9; extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; @@ -114,6 +113,7 @@ lean_object* l___private_Lean_PrettyPrinter_0__Lean_PrettyPrinter_withoutContext lean_object* l_Lean_Parser_Module_module_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_ppGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_registerParserCompiler___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_instBEqExpr; lean_object* l___private_Lean_PrettyPrinter_0__Lean_PrettyPrinter_withoutContext___at_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter___hyg_329____spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1910,13 +1910,16 @@ return x_6; lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter___hyg_329____lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal), 6, 1); -lean_closure_set(x_4, 0, x_2); -x_5 = lean_alloc_closure((void*)(l___private_Lean_PrettyPrinter_0__Lean_PrettyPrinter_withoutContext___at_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter___hyg_329____spec__1), 6, 1); -lean_closure_set(x_5, 0, x_4); -x_6 = l_Lean_PPContext_runMetaM___rarg(x_1, x_5, x_3); -return x_6; +uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_4 = 0; +x_5 = lean_box(x_4); +x_6 = lean_alloc_closure((void*)(l_Lean_Meta_ppGoal___boxed), 7, 2); +lean_closure_set(x_6, 0, x_2); +lean_closure_set(x_6, 1, x_5); +x_7 = lean_alloc_closure((void*)(l___private_Lean_PrettyPrinter_0__Lean_PrettyPrinter_withoutContext___at_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter___hyg_329____spec__1), 6, 1); +lean_closure_set(x_7, 0, x_6); +x_8 = l_Lean_PPContext_runMetaM___rarg(x_1, x_7, x_3); +return x_8; } } static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter___hyg_329____closed__1() { diff --git a/stage0/stdlib/Lean/Widget/InteractiveCode.c b/stage0/stdlib/Lean/Widget/InteractiveCode.c index a62fb0a528..3b0fa9e588 100644 --- a/stage0/stdlib/Lean/Widget/InteractiveCode.c +++ b/stage0/stdlib/Lean/Widget/InteractiveCode.c @@ -388,17 +388,19 @@ return x_3; static lean_object* _init_l_Lean_Widget_instInhabitedInfoWithCtx___closed__19() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = lean_box(0); x_2 = l_Lean_Widget_instInhabitedInfoWithCtx___closed__18; x_3 = l_Lean_Widget_instInhabitedInfoWithCtx___closed__12; -x_4 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_4, 0, x_2); -lean_ctor_set(x_4, 1, x_3); -lean_ctor_set(x_4, 2, x_1); -lean_ctor_set(x_4, 3, x_3); -lean_ctor_set(x_4, 4, x_1); -return x_4; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 5, 1); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_1); +lean_ctor_set(x_5, 3, x_3); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set_uint8(x_5, sizeof(void*)*5, x_4); +return x_5; } } static lean_object* _init_l_Lean_Widget_instInhabitedInfoWithCtx___closed__20() {